From fde59eecb7bcb1f0ea2e5d9efa4dab17f2a1a286 Mon Sep 17 00:00:00 2001 From: Joseph White Date: Fri, 5 May 2023 15:18:51 -0400 Subject: [PATCH 1/9] Fix job array display. The current code has incomplete support for job arrays - only the primary job identifier is shown. This change adds a new internal parameter called provider_job_id which contains the `job index` for non-array jobs and the `base_job_index[array_index]` for array jobs. There is a corresponding pull request for the xmdod-supremm module and for the xdmod-xsede module that should all be merged at the same time. --- classes/DataWarehouse/Query/Cloud/JobDataset.php | 2 +- classes/DataWarehouse/Query/Cloud/RawData.php | 2 +- classes/DataWarehouse/Query/Gateways/JobDataset.php | 3 ++- classes/DataWarehouse/Query/Gateways/RawData.php | 4 +++- classes/DataWarehouse/Query/Jobs/JobDataset.php | 3 ++- classes/DataWarehouse/Query/Jobs/RawData.php | 3 ++- .../Rest/Controllers/WarehouseControllerProvider.php | 11 ++++++----- 7 files changed, 17 insertions(+), 11 deletions(-) diff --git a/classes/DataWarehouse/Query/Cloud/JobDataset.php b/classes/DataWarehouse/Query/Cloud/JobDataset.php index 64fc590c1a..4eaf5de125 100644 --- a/classes/DataWarehouse/Query/Cloud/JobDataset.php +++ b/classes/DataWarehouse/Query/Cloud/JobDataset.php @@ -113,7 +113,7 @@ public function __construct( $this->joinTo($st, "systemaccount_id", "username", "username"); } else { - $this->addField(new TableField($factTable, "provider_identifier", "local_job_id")); + $this->addField(new TableField($factTable, "provider_identifier", "provider_job_id")); $this->addField(new TableField($factTable, "instance_id", "jobid")); $rt = new Table(new Schema("modw"), "resourcefact", "rf"); diff --git a/classes/DataWarehouse/Query/Cloud/RawData.php b/classes/DataWarehouse/Query/Cloud/RawData.php index 17a204ca41..c8984f4298 100644 --- a/classes/DataWarehouse/Query/Cloud/RawData.php +++ b/classes/DataWarehouse/Query/Cloud/RawData.php @@ -82,7 +82,7 @@ public function __construct( $this->addField(new TableField($resourcefactTable, "code", 'resource')); $this->addField(new TableField($personTable, "long_name", "name")); - $this->addField(new TableField($factTable, "provider_identifier", "local_job_id")); + $this->addField(new TableField($factTable, "provider_identifier", "provider_job_id")); $this->addField(new TableField($factTable, "instance_id", "jobid")); $this->addTable($factTable); diff --git a/classes/DataWarehouse/Query/Gateways/JobDataset.php b/classes/DataWarehouse/Query/Gateways/JobDataset.php index d1abafc720..faee1fe136 100644 --- a/classes/DataWarehouse/Query/Gateways/JobDataset.php +++ b/classes/DataWarehouse/Query/Gateways/JobDataset.php @@ -123,7 +123,8 @@ public function __construct( } } else { $this->addField(new TableField($factTable, "job_id", "jobid")); - $this->addField(new TableField($factTable, "local_jobid", "local_job_id")); + $fta = $factTable->getAlias(); + $this->addField(new FormulaField("CASE WHEN $fta.local_job_array_index = -1 THEN $fta.local_jobid ELSE CONCAT($fta.local_jobid, '[', $fta.local_job_array_index, ']') END", "provider_job_id")); $rt = new Table(new Schema("modw"), "resourcefact", "rf"); $this->joinTo($rt, "task_resource_id", "code", "resource"); diff --git a/classes/DataWarehouse/Query/Gateways/RawData.php b/classes/DataWarehouse/Query/Gateways/RawData.php index ae014c30c0..0706a930a3 100644 --- a/classes/DataWarehouse/Query/Gateways/RawData.php +++ b/classes/DataWarehouse/Query/Gateways/RawData.php @@ -81,10 +81,12 @@ public function __construct( $this->addField(new TableField($personTable, "long_name", "name")); $this->addField(new TableField($factTable, "job_id", "jobid")); - $this->addField(new TableField($factTable, "local_jobid", "local_job_id")); + $fta = $factTable->getAlias(); + $this->addField(new FormulaField("CASE WHEN $fta.local_job_array_index = -1 THEN $fta.local_jobid ELSE CONCAT($fta.local_jobid, '[', $fta.local_job_array_index, ']') END", "provider_job_id")); $this->addField(new TableField($factTable, 'start_time_ts')); $this->addField(new TableField($factTable, 'end_time_ts')); $this->addField(new FormulaField('-1', 'cpu_user')); + $this->addField(new FormulaField('COALESCE(LEAST(jt.wallduration / jt.timelimit, 1), -1)', 'walltime_accuracy')); // This is used by Integrations and not currently shown on the XDMoD interface $this->addField(new TableField($factTable, 'name', 'job_name')); diff --git a/classes/DataWarehouse/Query/Jobs/JobDataset.php b/classes/DataWarehouse/Query/Jobs/JobDataset.php index 4787c32686..f35b1caf3e 100644 --- a/classes/DataWarehouse/Query/Jobs/JobDataset.php +++ b/classes/DataWarehouse/Query/Jobs/JobDataset.php @@ -123,7 +123,8 @@ public function __construct( } } else { $this->addField(new TableField($factTable, "job_id", "jobid")); - $this->addField(new TableField($factTable, "local_jobid", "local_job_id")); + $fta = $factTable->getAlias(); + $this->addField(new FormulaField("CASE WHEN $fta.local_job_array_index = -1 THEN $fta.local_jobid ELSE CONCAT($fta.local_jobid, '[', $fta.local_job_array_index, ']') END", "provider_job_id")); $rt = new Table(new Schema("modw"), "resourcefact", "rf"); $this->joinTo($rt, "task_resource_id", "code", "resource"); diff --git a/classes/DataWarehouse/Query/Jobs/RawData.php b/classes/DataWarehouse/Query/Jobs/RawData.php index da076942c1..75c4451a1e 100644 --- a/classes/DataWarehouse/Query/Jobs/RawData.php +++ b/classes/DataWarehouse/Query/Jobs/RawData.php @@ -80,7 +80,8 @@ public function __construct( $this->addField(new TableField($personTable, "long_name", "name")); $this->addField(new TableField($factTable, "job_id", "jobid")); - $this->addField(new TableField($factTable, "local_jobid", "local_job_id")); + $fta = $factTable->getAlias(); + $this->addField(new FormulaField("CASE WHEN $fta.local_job_array_index = -1 THEN $fta.local_jobid ELSE CONCAT($fta.local_jobid, '[', $fta.local_job_array_index, ']') END", "provider_job_id")); $this->addField(new TableField($factTable, 'start_time_ts')); $this->addField(new TableField($factTable, 'end_time_ts')); $this->addField(new FormulaField('-1', 'cpu_user')); diff --git a/classes/Rest/Controllers/WarehouseControllerProvider.php b/classes/Rest/Controllers/WarehouseControllerProvider.php index 0385e1c15b..bc52e86b57 100644 --- a/classes/Rest/Controllers/WarehouseControllerProvider.php +++ b/classes/Rest/Controllers/WarehouseControllerProvider.php @@ -1328,7 +1328,7 @@ public function processJobSearch(Request $request, Application $app, XDUser $use $data = array(); foreach ($raw as $row) { $resource = $row['resource']; - $localJobId = $row['local_job_id']; + $localJobId = $row['provider_job_id']; $row['text'] = "$resource-$localJobId"; $row['dtype'] = 'jobid'; @@ -1477,7 +1477,7 @@ protected function getJobPeers(Application $app, XDUser $user, $realm, $jobId, $ 'ref' => array( 'realm' => $realm, 'jobid' => $jobId, - "text" => $thisjob['resource'] . '-' . $thisjob['local_job_id'] + "text" => $thisjob['resource'] . '-' . $thisjob['provider_job_id'] ) ) ); @@ -1492,11 +1492,11 @@ protected function getJobPeers(Application $app, XDUser $user, $realm, $jobId, $ 'ref' => array( 'realm' => $realm, 'jobid' => $jobpeer['jobid'], - 'local_job_id' => $jobpeer['local_job_id'], + 'local_job_id' => $jobpeer['provider_job_id'], 'resource' => $jobpeer['resource'] ) ); - $result['categories'][] = $jobpeer['resource'] . '-' . $jobpeer['local_job_id']; + $result['categories'][] = $jobpeer['resource'] . '-' . $jobpeer['provider_job_id']; } } @@ -2160,7 +2160,8 @@ private function getJobByPrimaryKey(Application $app, \XDUser $user, $realm, $se $results = array(); foreach ($dataSet->getResults() as $result) { - $result['text'] = $result['resource'] . "-" . $result['local_job_id']; + $result['text'] = $result['resource'] . "-" . $result['provider_job_id']; + $result['local_job_id'] = $result['provider_job_id']; $result['dtype'] = 'jobid'; array_push($results, $result); } From f85f3cfb01d2bdfb49008f179b06cec3bc7b47e9 Mon Sep 17 00:00:00 2001 From: "Joseph P. White" Date: Mon, 8 May 2023 11:23:35 -0400 Subject: [PATCH 2/9] Make the cloumn used to locate a database row configurable. --- .../Data/RawStatisticsConfiguration.php | 18 ++++++++++++++++++ .../DataWarehouse/Query/Jobs/JobDataset.php | 3 +-- configuration/rawstatistics.d/20_jobs.json | 3 ++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/classes/DataWarehouse/Data/RawStatisticsConfiguration.php b/classes/DataWarehouse/Data/RawStatisticsConfiguration.php index a1c9de8d70..59b36171cd 100644 --- a/classes/DataWarehouse/Data/RawStatisticsConfiguration.php +++ b/classes/DataWarehouse/Data/RawStatisticsConfiguration.php @@ -156,6 +156,24 @@ public function getQueryTableDefinitions($realm) return $realmConfig['tables']; } + /** + * Get the column name to use when looking up a record in the job viewer + * + * @param string $realm The name of a realm. + * @return string + */ + public function getRecordIdentifierColumn($realm) + { + $realmConfig = $this->getRealmConfiguration($realm); + if (!array_key_exists('record_identifier_column', $realmConfig)) { + throw new Exception(sprintf( + 'Record Identifier setting not found for realm "%s"', + $realm + )); + } + return $realmConfig['record_identifier_column']; + } + /** * Get the field definitions for generating a query. * diff --git a/classes/DataWarehouse/Query/Jobs/JobDataset.php b/classes/DataWarehouse/Query/Jobs/JobDataset.php index f35b1caf3e..f5d0cd8d3c 100644 --- a/classes/DataWarehouse/Query/Jobs/JobDataset.php +++ b/classes/DataWarehouse/Query/Jobs/JobDataset.php @@ -51,7 +51,6 @@ public function __construct( // This table is defined in the configuration file, but used in the section below. $factTable = $tables['jt']; - if (isset($parameters['primary_key'])) { $this->addPdoWhereCondition(new WhereCondition(new TableField($factTable, 'job_id'), "=", $parameters['primary_key'])); } elseif (isset($parameters['job_identifier'])) { @@ -62,7 +61,7 @@ public function __construct( $this->addPdoWhereCondition(new WhereCondition(new TableField($factTable, 'local_jobid'), '=', $matches[1])); $this->addPdoWhereCondition(new WhereCondition(new TableField($factTable, 'local_job_array_index'), '=', $matches[2])); } else { - $this->addPdoWhereCondition(new WhereCondition(new TableField($factTable, 'local_job_id_raw'), '=', $matches[1])); + $this->addPdoWhereCondition(new WhereCondition(new TableField($factTable, $config->getRecordIdentifierColumn('Jobs')), '=', $matches[1])); } } else { throw new Exception('invalid "job_identifier" query parameter'); diff --git a/configuration/rawstatistics.d/20_jobs.json b/configuration/rawstatistics.d/20_jobs.json index 3f016d8244..50d534ed62 100644 --- a/configuration/rawstatistics.d/20_jobs.json +++ b/configuration/rawstatistics.d/20_jobs.json @@ -376,6 +376,7 @@ "documentation": "${HIERARCHY_BOTTOM_LEVEL_INFO}", "batchExport": true } - ] + ], + "record_identifier_column": "local_jobid" } } From 49d0c7e89f2a4f009297337f3cbb4eb49bc39304 Mon Sep 17 00:00:00 2001 From: Joseph White Date: Mon, 15 May 2023 09:47:10 -0400 Subject: [PATCH 3/9] Add local job id raw to the batch export --- configuration/rawstatistics.d/20_jobs.json | 7 +++++++ .../rest/warehouse/export/output/get_realms.json | 4 ++-- .../integration/rest/warehouse/output/get_raw_data.json | 8 ++++---- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/configuration/rawstatistics.d/20_jobs.json b/configuration/rawstatistics.d/20_jobs.json index 50d534ed62..ca633da26b 100644 --- a/configuration/rawstatistics.d/20_jobs.json +++ b/configuration/rawstatistics.d/20_jobs.json @@ -116,6 +116,13 @@ "documentation": "The unique identifier assigned to the job by the job scheduler.", "batchExport": true }, + { + "name": "Local Job Id Raw", + "formula": "local_job_id_raw", + "group": "Administration", + "documentation": "A unique identifier assigned to the job by the job scheduler. This field will be identical to the Local Job Id field except for array jobs for the Slurm scheduler. In the case of Slurm array jobs this will be the internal identifier for the job.", + "batchExport": true + }, { "name": "Resource", "tableAlias": "rf", diff --git a/tests/artifacts/xdmod/integration/rest/warehouse/export/output/get_realms.json b/tests/artifacts/xdmod/integration/rest/warehouse/export/output/get_realms.json index 5d67b3003a..cfd53df401 100644 --- a/tests/artifacts/xdmod/integration/rest/warehouse/export/output/get_realms.json +++ b/tests/artifacts/xdmod/integration/rest/warehouse/export/output/get_realms.json @@ -48,8 +48,8 @@ "id": { "enum": [ "Jobs" ] }, "name": { "enum": [ "Jobs" ] }, "fields": { - "minItems": 28, - "maxItems": 28 + "minItems": 29, + "maxItems": 29 } } }, diff --git a/tests/artifacts/xdmod/integration/rest/warehouse/output/get_raw_data.json b/tests/artifacts/xdmod/integration/rest/warehouse/output/get_raw_data.json index 37b5612da3..89e8f91a74 100644 --- a/tests/artifacts/xdmod/integration/rest/warehouse/output/get_raw_data.json +++ b/tests/artifacts/xdmod/integration/rest/warehouse/output/get_raw_data.json @@ -133,13 +133,13 @@ { "properties": { "fields": { - "minItems": 28, - "maxItems": 28 + "minItems": 29, + "maxItems": 29 }, "data": { "items": { - "minItems": 28, - "maxItems": 28 + "minItems": 29, + "maxItems": 29 } } } From 43a4400e489c9d8dd16ae17d1916b52735ca805d Mon Sep 17 00:00:00 2001 From: "Joseph P. White" Date: Thu, 18 May 2023 18:02:19 -0400 Subject: [PATCH 4/9] Fixes for warnings generated with the supremm module tests The xdmod-supremm module build has been updated to check for errors/warnings. Needless to say I found some. The default value for the font size must be a numeric string - and not a text string. Add some checks for data validity and hoy out an execption if the checks fail. --- classes/DataWarehouse/Access/Common.php | 14 +++++++++++++- classes/DataWarehouse/Access/MetricExplorer.php | 5 +++++ .../lib/Controllers/UsageExplorerTest.php | 10 +++++++++- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/classes/DataWarehouse/Access/Common.php b/classes/DataWarehouse/Access/Common.php index 626deec97e..2f7d5edb85 100644 --- a/classes/DataWarehouse/Access/Common.php +++ b/classes/DataWarehouse/Access/Common.php @@ -45,6 +45,12 @@ public function __construct($request) { protected function checkDateParameters() { + if (!isset($this->request['start_date'])) { + throw new \DataWarehouse\Query\Exceptions\BadRequestException( + 'missing required start_date parameter' + ); + } + $start_date_parsed = date_parse_from_format( 'Y-m-d', $this->request['start_date'] @@ -56,6 +62,12 @@ protected function checkDateParameters() ); } + if (!isset($this->request['end_date'])) { + throw new \DataWarehouse\Query\Exceptions\BadRequestException( + 'missing required end_date parameter' + ); + } + $end_date_parsed = date_parse_from_format('Y-m-d', $this->request['end_date']); if ($end_date_parsed['error_count'] !== 0) { @@ -178,7 +190,7 @@ protected function getFontSize() return isset($this->request['font_size']) && $this->request['font_size'] != '' ? $this->request['font_size'] - : 'default'; + : '3'; } protected function getTitle() diff --git a/classes/DataWarehouse/Access/MetricExplorer.php b/classes/DataWarehouse/Access/MetricExplorer.php index 59b27bf4fc..158244efbd 100644 --- a/classes/DataWarehouse/Access/MetricExplorer.php +++ b/classes/DataWarehouse/Access/MetricExplorer.php @@ -14,6 +14,7 @@ use DataWarehouse\Query\Exceptions\AccessDeniedException; use DataWarehouse\Query\Exceptions\MissingFilterListTableException; use DataWarehouse\Query\Exceptions\UnknownGroupByException; +use DataWarehouse\Query\Exceptions\BadRequestException;; use FilterListHelper; use XDUser; @@ -411,6 +412,10 @@ private function getDataSeries() $jret = json_decode($ret); + if (!is_array($jret)) { + throw new BadRequestException('Invalid data_series specified'); + } + foreach ($jret as &$y) { // Set values of new attribs for backward compatibility. diff --git a/tests/integration/lib/Controllers/UsageExplorerTest.php b/tests/integration/lib/Controllers/UsageExplorerTest.php index 65d52e3635..c5362815eb 100644 --- a/tests/integration/lib/Controllers/UsageExplorerTest.php +++ b/tests/integration/lib/Controllers/UsageExplorerTest.php @@ -89,10 +89,18 @@ public function corruptDataProvider() "controller_module"=> "user_interface" ); + $view['start_date'] = null; + $tests[] = array($view, 'missing required start_date parameter'); + + $view['start_date'] = '2017-05-01'; $view['end_date'] = null; + $tests[] = array($view, 'missing required end_date parameter'); + + $view['end_date'] = 'Yesterday'; $tests[] = array($view, 'end_date param is not in the correct format of Y-m-d.'); - $view['start_date'] = null; + $view['start_date'] = 'Tomorrow'; + $view['end_date'] = '2017-05-01'; $tests[] = array($view, 'start_date param is not in the correct format of Y-m-d.'); $view['group_by'] = "elephants"; From a4c1450423c0faf7f76ea2e3c330e4bff4ccbc1c Mon Sep 17 00:00:00 2001 From: "Joseph P. White" Date: Fri, 19 May 2023 09:28:08 -0400 Subject: [PATCH 5/9] Remove spelling error (found by the linter) --- classes/DataWarehouse/Access/MetricExplorer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/DataWarehouse/Access/MetricExplorer.php b/classes/DataWarehouse/Access/MetricExplorer.php index 158244efbd..91cb33c26d 100644 --- a/classes/DataWarehouse/Access/MetricExplorer.php +++ b/classes/DataWarehouse/Access/MetricExplorer.php @@ -14,7 +14,7 @@ use DataWarehouse\Query\Exceptions\AccessDeniedException; use DataWarehouse\Query\Exceptions\MissingFilterListTableException; use DataWarehouse\Query\Exceptions\UnknownGroupByException; -use DataWarehouse\Query\Exceptions\BadRequestException;; +use DataWarehouse\Query\Exceptions\BadRequestException; use FilterListHelper; use XDUser; From baa51c7fa96e97bf8f80d3246f0cc60a7a84380f Mon Sep 17 00:00:00 2001 From: Joseph White Date: Fri, 19 May 2023 11:28:53 -0400 Subject: [PATCH 6/9] Found another one --- classes/Rest/Controllers/WarehouseControllerProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Rest/Controllers/WarehouseControllerProvider.php b/classes/Rest/Controllers/WarehouseControllerProvider.php index bc52e86b57..5b1bf76dd1 100644 --- a/classes/Rest/Controllers/WarehouseControllerProvider.php +++ b/classes/Rest/Controllers/WarehouseControllerProvider.php @@ -601,7 +601,7 @@ public function updateHistory(Request $request, Application $app, $id) array( 'success' => true, 'action' => $action, - 'total' => count($history), + 'total' => count($result), 'results' => $result ), 200 From df80be3d0102dc647e765ff7df399bd13b7b2cce Mon Sep 17 00:00:00 2001 From: Joseph White Date: Thu, 8 Feb 2024 16:27:28 -0500 Subject: [PATCH 7/9] Fix typo --- configuration/rawstatistics.d/20_jobs.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/rawstatistics.d/20_jobs.json b/configuration/rawstatistics.d/20_jobs.json index ca633da26b..b809695dbe 100644 --- a/configuration/rawstatistics.d/20_jobs.json +++ b/configuration/rawstatistics.d/20_jobs.json @@ -384,6 +384,6 @@ "batchExport": true } ], - "record_identifier_column": "local_jobid" + "record_identifier_column": "local_job_id_raw" } } From 4b7dd11b73c88a9c4b99d28a4cf59058e1ed5f5f Mon Sep 17 00:00:00 2001 From: Joseph White Date: Fri, 9 Feb 2024 11:44:29 -0500 Subject: [PATCH 8/9] update test aritfacts --- .../raw-data/jobs-fresh_install.json | 310037 ++++++++++++++- .../reference/raw-data/jobs-upgrade.json | 310037 ++++++++++++++- .../WarehouseExportControllerProviderTest.php | 2 +- 3 files changed, 620073 insertions(+), 3 deletions(-) diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json index f3ab7f6524..efa3125c00 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json +++ b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json @@ -1 +1,310036 @@ -{"success":true,"fields":["Local Job Id","Resource","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"],"data":[["6109029","Robertson","UTC","","Grey, Southern","Screwdriver","green-grape","1483088296","1483088296","1483088301","1483088296","1","1","0","-1","5","0","5","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Geosciences","Polar Programs","Polar Meteorology"],["6110613","Robertson","UTC","","Grey, Southern","Screwdriver","green-grape","1483119144","1483119144","1483119151","1483119144","1","1","0","-1","7","0","7","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Geosciences","Polar Programs","Polar Meteorology"],["6111540","Robertson","UTC","","Roller","Screwdriver","flapper","1483129488","1483129488","1483129510","1483129488","1","5","0","-1","22","0","110","0","1:0","FAILED","1","40000Mn","86400","pumpernickel","Geosciences","Earth Sciences","Geology and Paleontology"],["968193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056132","1483056132","1483056159","1483056132","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056227","1483056227","1483056256","1483056227","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056285","1483056285","1483056308","1483056285","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056366","1483056366","1483056390","1483056366","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056431","1483056431","1483056459","1483056431","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056504","1483056504","1483056533","1483056504","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056512","1483056512","1483056539","1483056512","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056579","1483056579","1483056604","1483056579","1","8","0","-1","25","0","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056682","1483056682","1483056704","1483056682","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056733","1483056733","1483056757","1483056733","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056790","1483056790","1483056819","1483056790","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056827","1483056827","1483056854","1483056827","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056855","1483056855","1483056878","1483056855","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056863","1483056863","1483056882","1483056863","1","8","0","-1","19","0","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056873","1483056873","1483056901","1483056873","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056908","1483056908","1483056935","1483056908","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056945","1483056945","1483056974","1483056945","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057048","1483057048","1483057077","1483057048","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057206","1483057206","1483057235","1483057206","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057226","1483057226","1483057251","1483057226","1","8","0","-1","25","0","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057236","1483057236","1483057257","1483057236","1","8","0","-1","21","0","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057297","1483057297","1483057321","1483057297","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057736","1483057736","1483057757","1483057736","1","8","0","-1","21","0","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057743","1483057743","1483057765","1483057743","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057857","1483057857","1483057879","1483057857","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057875","1483057875","1483057899","1483057875","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057880","1483057880","1483057903","1483057880","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057891","1483057891","1483057913","1483057891","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057900","1483057900","1483057918","1483057900","1","8","0","-1","18","0","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057904","1483057904","1483057929","1483057904","1","8","0","-1","25","0","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057914","1483057914","1483057938","1483057914","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057971","1483057971","1483057995","1483057971","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057972","1483057972","1483057994","1483057972","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057989","1483057989","1483058013","1483057989","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057994","1483057994","1483058018","1483057994","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058013","1483058013","1483058039","1483058013","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058039","1483058039","1483058068","1483058039","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058044","1483058044","1483058064","1483058044","1","8","0","-1","20","0","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058116","1483058116","1483058144","1483058116","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058148","1483058148","1483058176","1483058148","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058177","1483058177","1483058198","1483058177","1","8","0","-1","21","0","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058279","1483058279","1483058306","1483058279","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058283","1483058283","1483058309","1483058283","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058307","1483058307","1483058336","1483058307","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058310","1483058310","1483058336","1483058310","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058322","1483058322","1483058346","1483058322","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058335","1483058335","1483058363","1483058335","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058337","1483058337","1483058363","1483058337","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058474","1483058474","1483058503","1483058474","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058680","1483058680","1483058709","1483058680","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059986","1483059986","1483060013","1483059986","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060045","1483060045","1483060071","1483060045","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060288","1483060288","1483060317","1483060288","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060469","1483060469","1483060491","1483060469","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060639","1483060639","1483060658","1483060639","1","8","0","-1","19","0","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060688","1483060688","1483060713","1483060688","1","8","0","-1","25","0","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060802","1483060802","1483060829","1483060802","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060809","1483060809","1483060833","1483060809","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060814","1483060814","1483060841","1483060814","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060828","1483060828","1483060849","1483060828","1","8","0","-1","21","0","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060841","1483060841","1483060869","1483060841","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060954","1483060954","1483060980","1483060954","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061415","1483061415","1483061443","1483061415","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969751","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061756","1483061756","1483061779","1483061756","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061888","1483061888","1483061917","1483061888","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061974","1483061974","1483061999","1483061974","1","8","0","-1","25","0","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061986","1483061986","1483062010","1483061986","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062035","1483062035","1483062059","1483062035","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062102","1483062102","1483062131","1483062102","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062105","1483062105","1483062128","1483062105","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062169","1483062169","1483062198","1483062169","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062239","1483062239","1483062268","1483062239","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062269","1483062269","1483062298","1483062269","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969928","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062297","1483062297","1483062320","1483062297","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969932","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062309","1483062309","1483062328","1483062309","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062321","1483062321","1483062342","1483062321","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062406","1483062406","1483062435","1483062406","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970341","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064147","1483064147","1483064169","1483064147","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064151","1483064151","1483064173","1483064151","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064242","1483064242","1483064261","1483064242","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970386","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064297","1483064297","1483064318","1483064297","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970388","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064298","1483064298","1483064319","1483064298","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064371","1483064371","1483064398","1483064371","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064372","1483064372","1483064401","1483064372","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064399","1483064399","1483064418","1483064399","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064441","1483064441","1483064467","1483064441","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064559","1483064559","1483064579","1483064559","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064562","1483064562","1483064580","1483064562","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064575","1483064575","1483064597","1483064575","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064579","1483064579","1483064600","1483064579","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064581","1483064581","1483064609","1483064581","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064610","1483064610","1483064635","1483064610","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064656","1483064656","1483064685","1483064656","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064667","1483064667","1483064685","1483064667","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064801","1483064801","1483064824","1483064801","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064940","1483064940","1483064963","1483064940","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064956","1483064956","1483064977","1483064956","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064964","1483064964","1483064990","1483064964","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065035","1483065035","1483065061","1483065035","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065055","1483065055","1483065082","1483065055","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065153","1483065153","1483065181","1483065153","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065168","1483065168","1483065191","1483065168","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065169","1483065169","1483065189","1483065169","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065221","1483065221","1483065243","1483065221","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065226","1483065226","1483065249","1483065226","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065546","1483065546","1483065567","1483065546","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065566","1483065566","1483065586","1483065566","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970788","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065584","1483065584","1483065609","1483065584","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065610","1483065610","1483065632","1483065610","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065620","1483065620","1483065640","1483065620","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065624","1483065624","1483065650","1483065624","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970821","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065677","1483065677","1483065706","1483065677","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065723","1483065723","1483065745","1483065723","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065743","1483065743","1483065766","1483065743","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065832","1483065832","1483065853","1483065832","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065835","1483065835","1483065862","1483065835","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065863","1483065863","1483065882","1483065863","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065878","1483065878","1483065902","1483065878","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065959","1483065959","1483065983","1483065959","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066009","1483066009","1483066029","1483066009","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066021","1483066021","1483066049","1483066021","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066080","1483066080","1483066109","1483066080","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066190","1483066190","1483066215","1483066190","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066256","1483066256","1483066278","1483066256","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066393","1483066393","1483066421","1483066393","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066393","1483066393","1483066420","1483066393","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066576","1483066576","1483066603","1483066576","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067833","1483067833","1483067856","1483067833","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067854","1483067854","1483067876","1483067854","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067857","1483067857","1483067884","1483067857","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067991","1483067991","1483068017","1483067991","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067992","1483067992","1483068019","1483067992","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067993","1483067993","1483068011","1483067993","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068051","1483068051","1483068079","1483068051","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068097","1483068097","1483068125","1483068097","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068109","1483068109","1483068136","1483068109","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068119","1483068119","1483068136","1483068119","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068126","1483068126","1483068152","1483068126","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068129","1483068129","1483068156","1483068129","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068162","1483068162","1483068184","1483068162","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068172","1483068172","1483068198","1483068172","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971446","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068176","1483068176","1483068205","1483068176","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068198","1483068198","1483068227","1483068198","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068223","1483068223","1483068246","1483068223","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068317","1483068317","1483068336","1483068317","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971494","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068318","1483068318","1483068334","1483068318","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068324","1483068324","1483068346","1483068324","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068387","1483068387","1483068405","1483068387","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068391","1483068391","1483068410","1483068391","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068396","1483068396","1483068415","1483068396","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068402","1483068402","1483068422","1483068402","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068468","1483068468","1483068494","1483068468","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068489","1483068489","1483068509","1483068489","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068494","1483068494","1483068522","1483068494","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068509","1483068509","1483068534","1483068509","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068577","1483068577","1483068599","1483068577","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068698","1483068698","1483068718","1483068698","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068779","1483068779","1483068801","1483068779","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068826","1483068826","1483068854","1483068826","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068978","1483068978","1483069005","1483068978","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069039","1483069039","1483069057","1483069039","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069041","1483069041","1483069064","1483069041","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069094","1483069094","1483069119","1483069094","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971765","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069120","1483069120","1483069136","1483069120","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069131","1483069131","1483069146","1483069131","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069137","1483069137","1483069162","1483069137","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069175","1483069175","1483069194","1483069175","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069194","1483069194","1483069221","1483069194","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069589","1483069589","1483069608","1483069589","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069596","1483069596","1483069611","1483069596","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069612","1483069612","1483069634","1483069612","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069623","1483069623","1483069641","1483069623","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069633","1483069633","1483069651","1483069633","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069636","1483069636","1483069654","1483069636","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069642","1483069642","1483069659","1483069642","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069647","1483069647","1483069666","1483069647","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069711","1483069711","1483069728","1483069711","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069714","1483069714","1483069730","1483069714","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069715","1483069715","1483069735","1483069715","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069729","1483069729","1483069750","1483069729","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069758","1483069758","1483069785","1483069758","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069758","1483069758","1483069787","1483069758","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069830","1483069830","1483069851","1483069830","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069844","1483069844","1483069869","1483069844","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069850","1483069850","1483069878","1483069850","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069879","1483069879","1483069898","1483069879","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069895","1483069895","1483069914","1483069895","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069899","1483069899","1483069924","1483069899","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069902","1483069902","1483069919","1483069902","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069922","1483069922","1483069949","1483069922","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069925","1483069925","1483069944","1483069925","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069933","1483069933","1483069951","1483069933","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069944","1483069944","1483069962","1483069944","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069984","1483069984","1483070006","1483069984","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069991","1483069991","1483070004","1483069991","1","8","0","-1","13","0","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070003","1483070003","1483070023","1483070003","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070022","1483070022","1483070036","1483070022","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070054","1483070054","1483070070","1483070054","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070074","1483070074","1483070088","1483070074","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070088","1483070088","1483070111","1483070088","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070106","1483070106","1483070122","1483070106","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070109","1483070109","1483070125","1483070109","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070112","1483070112","1483070129","1483070112","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070119","1483070119","1483070133","1483070119","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070153","1483070153","1483070175","1483070153","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070163","1483070163","1483070183","1483070163","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070184","1483070184","1483070209","1483070184","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070201","1483070201","1483070221","1483070201","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070255","1483070255","1483070275","1483070255","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070260","1483070260","1483070283","1483070260","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070270","1483070270","1483070295","1483070270","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070276","1483070276","1483070295","1483070276","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070282","1483070282","1483070301","1483070282","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070295","1483070295","1483070318","1483070295","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070319","1483070319","1483070337","1483070319","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070367","1483070367","1483070388","1483070367","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070389","1483070389","1483070407","1483070389","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070406","1483070406","1483070425","1483070406","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070422","1483070422","1483070443","1483070422","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070472","1483070472","1483070491","1483070472","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070479","1483070479","1483070499","1483070479","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070492","1483070492","1483070509","1483070492","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070500","1483070500","1483070523","1483070500","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070506","1483070506","1483070530","1483070506","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070519","1483070519","1483070541","1483070519","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070531","1483070531","1483070549","1483070531","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070537","1483070537","1483070555","1483070537","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070590","1483070590","1483070612","1483070590","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070749","1483070749","1483070767","1483070749","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070800","1483070800","1483070817","1483070800","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070805","1483070805","1483070820","1483070805","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070821","1483070821","1483070846","1483070821","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070847","1483070847","1483070865","1483070847","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070854","1483070854","1483070872","1483070854","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070866","1483070866","1483070883","1483070866","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070872","1483070872","1483070887","1483070872","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070879","1483070879","1483070900","1483070879","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070884","1483070884","1483070904","1483070884","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070887","1483070887","1483070904","1483070887","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070898","1483070898","1483070915","1483070898","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070905","1483070905","1483070930","1483070905","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070930","1483070930","1483070959","1483070930","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071010","1483071010","1483071023","1483071010","1","8","0","-1","13","0","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071028","1483071028","1483071054","1483071028","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071054","1483071054","1483071072","1483071054","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071084","1483071084","1483071103","1483071084","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071115","1483071115","1483071131","1483071115","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071123","1483071123","1483071151","1483071123","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071130","1483071130","1483071159","1483071130","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071183","1483071183","1483071206","1483071183","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071194","1483071194","1483071214","1483071194","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071200","1483071200","1483071216","1483071200","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071207","1483071207","1483071223","1483071207","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071446","1483071446","1483071475","1483071446","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071476","1483071476","1483071503","1483071476","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071526","1483071526","1483071552","1483071526","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972689","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071550","1483071550","1483071579","1483071550","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071567","1483071567","1483071592","1483071567","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071579","1483071579","1483071608","1483071579","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972703","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071582","1483071582","1483071604","1483071582","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972705","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071592","1483071592","1483071616","1483071592","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072249","1483072249","1483072277","1483072249","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072249","1483072249","1483072278","1483072249","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072286","1483072286","1483072312","1483072286","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072293","1483072293","1483072320","1483072293","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972910","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072390","1483072390","1483072414","1483072390","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972912","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072397","1483072397","1483072426","1483072397","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972928","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072450","1483072450","1483072471","1483072450","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072524","1483072524","1483072553","1483072524","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072588","1483072588","1483072608","1483072588","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973000","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072664","1483072664","1483072692","1483072664","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072668","1483072668","1483072692","1483072668","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072692","1483072692","1483072720","1483072692","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072715","1483072715","1483072737","1483072715","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072802","1483072802","1483072829","1483072802","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072830","1483072830","1483072854","1483072830","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072834","1483072834","1483072862","1483072834","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072894","1483072894","1483072915","1483072894","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072952","1483072952","1483072973","1483072952","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073002","1483073002","1483073031","1483073002","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073039","1483073039","1483073058","1483073039","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973131","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073092","1483073092","1483073116","1483073092","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073108","1483073108","1483073134","1483073108","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973135","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073115","1483073115","1483073137","1483073115","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073137","1483073137","1483073163","1483073137","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073228","1483073228","1483073256","1483073228","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073288","1483073288","1483073317","1483073288","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073366","1483073366","1483073393","1483073366","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073379","1483073379","1483073406","1483073379","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073394","1483073394","1483073421","1483073394","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073406","1483073406","1483073433","1483073406","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973321","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073708","1483073708","1483073730","1483073708","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973341","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073770","1483073770","1483073799","1483073770","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973412","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074050","1483074050","1483074075","1483074050","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973424","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074100","1483074100","1483074124","1483074100","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074196","1483074196","1483074218","1483074196","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074204","1483074204","1483074225","1483074204","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074218","1483074218","1483074235","1483074218","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074374","1483074374","1483074392","1483074374","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074445","1483074445","1483074470","1483074445","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074467","1483074467","1483074489","1483074467","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074471","1483074471","1483074496","1483074471","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074471","1483074471","1483074490","1483074471","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074574","1483074574","1483074598","1483074574","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074589","1483074589","1483074611","1483074589","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074688","1483074688","1483074715","1483074688","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973649","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074736","1483074736","1483074764","1483074736","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074748","1483074748","1483074774","1483074748","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074763","1483074763","1483074789","1483074763","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075098","1483075098","1483075127","1483075098","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076155","1483076155","1483076182","1483076155","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076155","1483076155","1483076180","1483076155","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076309","1483076309","1483076330","1483076309","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076473","1483076473","1483076499","1483076473","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076574","1483076574","1483076595","1483076574","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076587","1483076587","1483076610","1483076587","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076639","1483076639","1483076664","1483076639","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076639","1483076639","1483076665","1483076639","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974147","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076777","1483076777","1483076802","1483076777","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974149","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076781","1483076781","1483076805","1483076781","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076931","1483076931","1483076954","1483076931","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076936","1483076936","1483076959","1483076936","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076937","1483076937","1483076958","1483076937","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076941","1483076941","1483076958","1483076941","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077067","1483077067","1483077094","1483077067","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077072","1483077072","1483077096","1483077072","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077414","1483077414","1483077443","1483077414","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078008","1483078008","1483078033","1483078008","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078064","1483078064","1483078090","1483078064","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078067","1483078067","1483078089","1483078067","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078153","1483078153","1483078177","1483078153","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078164","1483078164","1483078186","1483078164","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078213","1483078213","1483078230","1483078213","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078309","1483078309","1483078337","1483078309","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078396","1483078396","1483078417","1483078396","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974685","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078530","1483078530","1483078558","1483078530","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078946","1483078946","1483078974","1483078946","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080089","1483080089","1483080109","1483080089","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080092","1483080092","1483080112","1483080092","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080096","1483080096","1483080119","1483080096","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080155","1483080155","1483080180","1483080155","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080172","1483080172","1483080201","1483080172","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080180","1483080180","1483080198","1483080180","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080202","1483080202","1483080228","1483080202","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080225","1483080225","1483080244","1483080225","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080229","1483080229","1483080249","1483080229","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080276","1483080276","1483080298","1483080276","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080366","1483080366","1483080387","1483080366","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080376","1483080376","1483080405","1483080376","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080432","1483080432","1483080461","1483080432","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080438","1483080438","1483080457","1483080438","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975155","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080464","1483080464","1483080491","1483080464","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080482","1483080482","1483080511","1483080482","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080488","1483080488","1483080509","1483080488","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080671","1483080671","1483080695","1483080671","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080694","1483080694","1483080708","1483080694","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080709","1483080709","1483080726","1483080709","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080726","1483080726","1483080742","1483080726","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080736","1483080736","1483080763","1483080736","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080743","1483080743","1483080771","1483080743","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080796","1483080796","1483080816","1483080796","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080843","1483080843","1483080867","1483080843","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080859","1483080859","1483080880","1483080859","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080911","1483080911","1483080940","1483080911","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080925","1483080925","1483080950","1483080925","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080949","1483080949","1483080976","1483080949","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081121","1483081121","1483081143","1483081121","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081188","1483081188","1483081217","1483081188","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081218","1483081218","1483081247","1483081218","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081246","1483081246","1483081269","1483081246","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081247","1483081247","1483081269","1483081247","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081270","1483081270","1483081292","1483081270","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081576","1483081576","1483081596","1483081576","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081583","1483081583","1483081605","1483081583","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081600","1483081600","1483081628","1483081600","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081648","1483081648","1483081673","1483081648","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081660","1483081660","1483081686","1483081660","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081672","1483081672","1483081699","1483081672","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081712","1483081712","1483081734","1483081712","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081850","1483081850","1483081866","1483081850","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081854","1483081854","1483081879","1483081854","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081861","1483081861","1483081885","1483081861","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081867","1483081867","1483081896","1483081867","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081926","1483081926","1483081942","1483081926","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081952","1483081952","1483081969","1483081952","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081999","1483081999","1483082026","1483081999","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082020","1483082020","1483082048","1483082020","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082060","1483082060","1483082087","1483082060","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082186","1483082186","1483082214","1483082186","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082232","1483082232","1483082256","1483082232","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082529","1483082529","1483082557","1483082529","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082541","1483082541","1483082570","1483082541","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976045","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083443","1483083443","1483083462","1483083443","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083462","1483083462","1483083483","1483083462","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083463","1483083463","1483083484","1483083463","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083465","1483083465","1483083482","1483083465","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083483","1483083483","1483083500","1483083483","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083512","1483083512","1483083536","1483083512","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976087","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083519","1483083519","1483083538","1483083519","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083620","1483083620","1483083637","1483083620","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083625","1483083625","1483083640","1483083625","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083633","1483083633","1483083653","1483083633","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083646","1483083646","1483083664","1483083646","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083654","1483083654","1483083671","1483083654","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083664","1483083664","1483083693","1483083664","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083709","1483083709","1483083725","1483083709","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083713","1483083713","1483083735","1483083713","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083757","1483083757","1483083783","1483083757","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083757","1483083757","1483083783","1483083757","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083784","1483083784","1483083798","1483083784","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083798","1483083798","1483083817","1483083798","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083798","1483083798","1483083816","1483083798","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083799","1483083799","1483083818","1483083799","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976218","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083807","1483083807","1483083826","1483083807","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976220","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083817","1483083817","1483083833","1483083817","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083834","1483083834","1483083856","1483083834","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083857","1483083857","1483083881","1483083857","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083879","1483083879","1483083899","1483083879","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083880","1483083880","1483083894","1483083880","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083894","1483083894","1483083907","1483083894","1","8","0","-1","13","0","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083895","1483083895","1483083909","1483083895","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083936","1483083936","1483083958","1483083936","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083999","1483083999","1483084027","1483083999","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084022","1483084022","1483084045","1483084022","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084043","1483084043","1483084063","1483084043","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084046","1483084046","1483084062","1483084046","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084054","1483084054","1483084072","1483084054","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084063","1483084063","1483084089","1483084063","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084105","1483084105","1483084125","1483084105","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084113","1483084113","1483084131","1483084113","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084158","1483084158","1483084187","1483084158","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084187","1483084187","1483084206","1483084187","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084344","1483084344","1483084363","1483084344","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084349","1483084349","1483084364","1483084349","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084364","1483084364","1483084380","1483084364","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084381","1483084381","1483084407","1483084381","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084404","1483084404","1483084432","1483084404","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976455","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084424","1483084424","1483084442","1483084424","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084429","1483084429","1483084445","1483084429","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084442","1483084442","1483084468","1483084442","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084457","1483084457","1483084483","1483084457","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084516","1483084516","1483084529","1483084516","1","8","0","-1","13","0","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084547","1483084547","1483084571","1483084547","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084555","1483084555","1483084570","1483084555","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084570","1483084570","1483084594","1483084570","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084869","1483084869","1483084891","1483084869","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084917","1483084917","1483084943","1483084917","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084918","1483084918","1483084940","1483084918","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084944","1483084944","1483084973","1483084944","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084993","1483084993","1483085015","1483084993","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085016","1483085016","1483085038","1483085016","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976637","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085016","1483085016","1483085038","1483085016","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085027","1483085027","1483085051","1483085027","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085039","1483085039","1483085062","1483085039","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085040","1483085040","1483085064","1483085040","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085045","1483085045","1483085066","1483085045","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085123","1483085123","1483085146","1483085123","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085139","1483085139","1483085162","1483085139","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085146","1483085146","1483085169","1483085146","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085158","1483085158","1483085180","1483085158","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085270","1483085270","1483085297","1483085270","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085358","1483085358","1483085379","1483085358","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085364","1483085364","1483085384","1483085364","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085379","1483085379","1483085397","1483085379","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085385","1483085385","1483085407","1483085385","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085398","1483085398","1483085420","1483085398","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976788","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085402","1483085402","1483085423","1483085402","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085408","1483085408","1483085425","1483085408","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085411","1483085411","1483085430","1483085411","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085421","1483085421","1483085440","1483085421","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085421","1483085421","1483085450","1483085421","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085424","1483085424","1483085452","1483085424","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085451","1483085451","1483085470","1483085451","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085482","1483085482","1483085500","1483085482","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085485","1483085485","1483085503","1483085485","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085496","1483085496","1483085512","1483085496","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085603","1483085603","1483085632","1483085603","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085673","1483085673","1483085699","1483085673","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085700","1483085700","1483085724","1483085700","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085768","1483085768","1483085792","1483085768","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085785","1483085785","1483085811","1483085785","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085795","1483085795","1483085822","1483085795","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085820","1483085820","1483085845","1483085820","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085946","1483085946","1483085971","1483085946","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977019","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085953","1483085953","1483085977","1483085953","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086252","1483086252","1483086271","1483086252","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977105","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086279","1483086279","1483086302","1483086279","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977107","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086288","1483086288","1483086309","1483086288","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086365","1483086365","1483086388","1483086365","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086392","1483086392","1483086413","1483086392","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086427","1483086427","1483086453","1483086427","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086438","1483086438","1483086458","1483086438","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086443","1483086443","1483086467","1483086443","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086449","1483086449","1483086477","1483086449","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086454","1483086454","1483086474","1483086454","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086468","1483086468","1483086491","1483086468","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086475","1483086475","1483086500","1483086475","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086487","1483086487","1483086514","1483086487","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086492","1483086492","1483086513","1483086492","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086552","1483086552","1483086571","1483086552","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086576","1483086576","1483086596","1483086576","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086648","1483086648","1483086670","1483086648","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086650","1483086650","1483086669","1483086650","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086658","1483086658","1483086675","1483086658","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086662","1483086662","1483086688","1483086662","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086670","1483086670","1483086691","1483086670","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086676","1483086676","1483086693","1483086676","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086692","1483086692","1483086718","1483086692","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086692","1483086692","1483086720","1483086692","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086693","1483086693","1483086721","1483086693","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086719","1483086719","1483086746","1483086719","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086740","1483086740","1483086767","1483086740","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086781","1483086781","1483086806","1483086781","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087044","1483087044","1483087073","1483087044","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087539","1483087539","1483087568","1483087539","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087795","1483087795","1483087820","1483087795","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087807","1483087807","1483087831","1483087807","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087821","1483087821","1483087845","1483087821","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087832","1483087832","1483087856","1483087832","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087846","1483087846","1483087871","1483087846","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087911","1483087911","1483087934","1483087911","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087911","1483087911","1483087936","1483087911","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087935","1483087935","1483087957","1483087935","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977689","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087950","1483087950","1483087975","1483087950","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087958","1483087958","1483087985","1483087958","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087965","1483087965","1483087992","1483087965","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087976","1483087976","1483088000","1483087976","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088018","1483088018","1483088040","1483088018","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088041","1483088041","1483088067","1483088041","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088043","1483088043","1483088068","1483088043","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088064","1483088064","1483088092","1483088064","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088069","1483088069","1483088091","1483088069","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088069","1483088069","1483088092","1483088069","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977765","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088138","1483088138","1483088167","1483088138","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088151","1483088151","1483088177","1483088151","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088195","1483088195","1483088221","1483088195","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088208","1483088208","1483088233","1483088208","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088296","1483088296","1483088315","1483088296","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088351","1483088351","1483088379","1483088351","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088412","1483088412","1483088433","1483088412","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088423","1483088423","1483088441","1483088423","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088430","1483088430","1483088446","1483088430","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088431","1483088431","1483088448","1483088431","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088470","1483088470","1483088495","1483088470","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088496","1483088496","1483088521","1483088496","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088522","1483088522","1483088550","1483088522","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088525","1483088525","1483088553","1483088525","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977924","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088541","1483088541","1483088570","1483088541","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088633","1483088633","1483088657","1483088633","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088657","1483088657","1483088685","1483088657","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088676","1483088676","1483088705","1483088676","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088682","1483088682","1483088705","1483088682","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977992","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088763","1483088763","1483088789","1483088763","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088820","1483088820","1483088849","1483088820","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089362","1483089362","1483089388","1483089362","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089458","1483089458","1483089478","1483089458","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089474","1483089474","1483089497","1483089474","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089474","1483089474","1483089500","1483089474","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089475","1483089475","1483089500","1483089475","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089481","1483089481","1483089503","1483089481","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089498","1483089498","1483089517","1483089498","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978220","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089541","1483089541","1483089568","1483089541","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089573","1483089573","1483089595","1483089573","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089590","1483089590","1483089619","1483089590","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089606","1483089606","1483089632","1483089606","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089619","1483089619","1483089644","1483089619","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089623","1483089623","1483089647","1483089623","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089631","1483089631","1483089658","1483089631","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089709","1483089709","1483089732","1483089709","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089728","1483089728","1483089748","1483089728","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089733","1483089733","1483089752","1483089733","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089734","1483089734","1483089751","1483089734","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089780","1483089780","1483089803","1483089780","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978319","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089797","1483089797","1483089816","1483089797","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978321","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089798","1483089798","1483089817","1483089798","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089804","1483089804","1483089827","1483089804","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089818","1483089818","1483089838","1483089818","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089825","1483089825","1483089843","1483089825","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089828","1483089828","1483089846","1483089828","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089903","1483089903","1483089932","1483089903","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089949","1483089949","1483089978","1483089949","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091179","1483091179","1483091200","1483091179","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091182","1483091182","1483091202","1483091182","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091182","1483091182","1483091204","1483091182","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091245","1483091245","1483091266","1483091245","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091316","1483091316","1483091342","1483091316","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091374","1483091374","1483091393","1483091374","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091470","1483091470","1483091499","1483091470","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091532","1483091532","1483091554","1483091532","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091555","1483091555","1483091574","1483091555","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091754","1483091754","1483091780","1483091754","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091762","1483091762","1483091789","1483091762","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091790","1483091790","1483091810","1483091790","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091797","1483091797","1483091822","1483091797","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091798","1483091798","1483091825","1483091798","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091823","1483091823","1483091840","1483091823","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091824","1483091824","1483091844","1483091824","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091898","1483091898","1483091918","1483091898","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092030","1483092030","1483092055","1483092030","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092093","1483092093","1483092114","1483092093","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092192","1483092192","1483092215","1483092192","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979057","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092216","1483092216","1483092242","1483092216","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979065","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092238","1483092238","1483092265","1483092238","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092606","1483092606","1483092630","1483092606","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092631","1483092631","1483092651","1483092631","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092812","1483092812","1483092830","1483092812","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092821","1483092821","1483092838","1483092821","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092937","1483092937","1483092954","1483092937","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092944","1483092944","1483092971","1483092944","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093042","1483093042","1483093059","1483093042","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093043","1483093043","1483093066","1483093043","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979349","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093060","1483093060","1483093087","1483093060","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093087","1483093087","1483093113","1483093087","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093091","1483093091","1483093120","1483093091","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093138","1483093138","1483093159","1483093138","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093142","1483093142","1483093161","1483093142","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093181","1483093181","1483093207","1483093181","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093222","1483093222","1483093245","1483093222","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093269","1483093269","1483093293","1483093269","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093292","1483093292","1483093317","1483093292","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094281","1483094281","1483094310","1483094281","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979867","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095055","1483095055","1483095081","1483095055","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095186","1483095186","1483095213","1483095186","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095188","1483095188","1483095214","1483095188","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095189","1483095189","1483095213","1483095189","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095255","1483095255","1483095279","1483095255","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095280","1483095280","1483095308","1483095280","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095292","1483095292","1483095315","1483095292","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980035","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095672","1483095672","1483095696","1483095672","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980037","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095696","1483095696","1483095724","1483095696","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096085","1483096085","1483096110","1483096085","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096338","1483096338","1483096361","1483096338","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096807","1483096807","1483096835","1483096807","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096821","1483096821","1483096849","1483096821","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096936","1483096936","1483096965","1483096936","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097456","1483097456","1483097485","1483097456","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097492","1483097492","1483097519","1483097492","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097601","1483097601","1483097628","1483097601","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097675","1483097675","1483097699","1483097675","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098316","1483098316","1483098344","1483098316","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098320","1483098320","1483098348","1483098320","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098853","1483098853","1483098882","1483098853","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098915","1483098915","1483098940","1483098915","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099000","1483099000","1483099029","1483099000","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099219","1483099219","1483099244","1483099219","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099245","1483099245","1483099270","1483099245","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099333","1483099333","1483099359","1483099333","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099333","1483099333","1483099359","1483099333","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101215","1483101215","1483101237","1483101215","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101332","1483101332","1483101357","1483101332","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101349","1483101349","1483101371","1483101349","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101409","1483101409","1483101426","1483101409","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101662","1483101662","1483101684","1483101662","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101768","1483101768","1483101790","1483101768","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101790","1483101790","1483101813","1483101790","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101793","1483101793","1483101818","1483101793","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101848","1483101848","1483101869","1483101848","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101870","1483101870","1483101898","1483101870","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101909","1483101909","1483101931","1483101909","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102139","1483102139","1483102163","1483102139","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102489","1483102489","1483102517","1483102489","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102501","1483102501","1483102527","1483102501","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102860","1483102860","1483102884","1483102860","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102910","1483102910","1483102934","1483102910","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102914","1483102914","1483102935","1483102914","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102924","1483102924","1483102950","1483102924","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103167","1483103167","1483103186","1483103167","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103177","1483103177","1483103197","1483103177","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103177","1483103177","1483103198","1483103177","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103239","1483103239","1483103263","1483103239","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103247","1483103247","1483103270","1483103247","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103252","1483103252","1483103272","1483103252","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103418","1483103418","1483103439","1483103418","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103440","1483103440","1483103468","1483103440","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982069","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103588","1483103588","1483103617","1483103588","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105243","1483105243","1483105272","1483105243","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105271","1483105271","1483105300","1483105271","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982490","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105502","1483105502","1483105530","1483105502","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105734","1483105734","1483105763","1483105734","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105758","1483105758","1483105786","1483105758","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105904","1483105904","1483105933","1483105904","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107523","1483107523","1483107550","1483107523","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107524","1483107524","1483107550","1483107524","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107671","1483107671","1483107700","1483107671","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107676","1483107676","1483107704","1483107676","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107682","1483107682","1483107711","1483107682","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107794","1483107794","1483107817","1483107794","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107994","1483107994","1483108020","1483107994","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983097","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108102","1483108102","1483108125","1483108102","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983111","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108145","1483108145","1483108174","1483108145","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108156","1483108156","1483108178","1483108156","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108622","1483108622","1483108649","1483108622","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108792","1483108792","1483108820","1483108792","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108821","1483108821","1483108850","1483108821","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109586","1483109586","1483109613","1483109586","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109606","1483109606","1483109633","1483109606","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109611","1483109611","1483109639","1483109611","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109740","1483109740","1483109769","1483109740","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109752","1483109752","1483109777","1483109752","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109806","1483109806","1483109827","1483109806","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109819","1483109819","1483109842","1483109819","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109883","1483109883","1483109911","1483109883","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109940","1483109940","1483109964","1483109940","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109945","1483109945","1483109967","1483109945","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110079","1483110079","1483110108","1483110079","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111872","1483111872","1483111900","1483111872","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111908","1483111908","1483111936","1483111908","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111922","1483111922","1483111943","1483111922","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111930","1483111930","1483111954","1483111930","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111982","1483111982","1483112003","1483111982","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984045","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112055","1483112055","1483112080","1483112055","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984061","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112117","1483112117","1483112144","1483112117","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984063","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112120","1483112120","1483112141","1483112120","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984087","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112193","1483112193","1483112212","1483112193","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112241","1483112241","1483112263","1483112241","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984135","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112354","1483112354","1483112380","1483112354","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984139","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112371","1483112371","1483112395","1483112371","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112425","1483112425","1483112442","1483112425","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112433","1483112433","1483112458","1483112433","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112443","1483112443","1483112466","1483112443","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112467","1483112467","1483112496","1483112467","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112476","1483112476","1483112503","1483112476","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112666","1483112666","1483112688","1483112666","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112689","1483112689","1483112711","1483112689","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112771","1483112771","1483112797","1483112771","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112775","1483112775","1483112798","1483112775","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112875","1483112875","1483112897","1483112875","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113074","1483113074","1483113097","1483113074","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113157","1483113157","1483113177","1483113157","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113159","1483113159","1483113177","1483113159","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113229","1483113229","1483113249","1483113229","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113343","1483113343","1483113363","1483113343","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113829","1483113829","1483113850","1483113829","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113838","1483113838","1483113864","1483113838","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113884","1483113884","1483113912","1483113884","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113893","1483113893","1483113917","1483113893","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113901","1483113901","1483113930","1483113901","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113904","1483113904","1483113929","1483113904","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113969","1483113969","1483113996","1483113969","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113981","1483113981","1483114006","1483113981","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114033","1483114033","1483114062","1483114033","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114046","1483114046","1483114067","1483114046","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114169","1483114169","1483114198","1483114169","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114175","1483114175","1483114203","1483114175","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114198","1483114198","1483114220","1483114198","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114204","1483114204","1483114231","1483114204","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114278","1483114278","1483114307","1483114278","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114287","1483114287","1483114311","1483114287","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114300","1483114300","1483114322","1483114300","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114326","1483114326","1483114353","1483114326","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114361","1483114361","1483114379","1483114361","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114380","1483114380","1483114403","1483114380","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114403","1483114403","1483114426","1483114403","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114427","1483114427","1483114454","1483114427","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114441","1483114441","1483114467","1483114441","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114455","1483114455","1483114483","1483114455","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114516","1483114516","1483114540","1483114516","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114633","1483114633","1483114655","1483114633","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114729","1483114729","1483114751","1483114729","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114800","1483114800","1483114825","1483114800","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115030","1483115030","1483115053","1483115030","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115054","1483115054","1483115076","1483115054","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115112","1483115112","1483115131","1483115112","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115124","1483115124","1483115145","1483115124","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115167","1483115167","1483115189","1483115167","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115235","1483115235","1483115253","1483115235","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115295","1483115295","1483115317","1483115295","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115592","1483115592","1483115616","1483115592","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115647","1483115647","1483115665","1483115647","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115681","1483115681","1483115708","1483115681","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115770","1483115770","1483115790","1483115770","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115784","1483115784","1483115812","1483115784","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115861","1483115861","1483115879","1483115861","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115930","1483115930","1483115949","1483115930","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116010","1483116010","1483116038","1483116010","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116037","1483116037","1483116066","1483116037","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116067","1483116067","1483116087","1483116067","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116132","1483116132","1483116153","1483116132","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116136","1483116136","1483116162","1483116136","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116141","1483116141","1483116166","1483116141","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116144","1483116144","1483116167","1483116144","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116154","1483116154","1483116182","1483116154","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116161","1483116161","1483116184","1483116161","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985257","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116183","1483116183","1483116204","1483116183","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116299","1483116299","1483116318","1483116299","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116310","1483116310","1483116333","1483116310","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["167758","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056162","1483056162","1483056186","1483056162","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["167879","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056885","1483056885","1483056906","1483056885","1","8","0","-1","21","0","168","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168064","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058094","1483058094","1483058110","1483058094","1","8","0","-1","16","0","128","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168090","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058262","1483058262","1483058281","1483058262","1","8","0","-1","19","0","152","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168845","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064147","1483064147","1483064162","1483064147","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168926","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064610","1483064610","1483064633","1483064610","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168941","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064686","1483064686","1483064705","1483064686","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168976","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064890","1483064890","1483064911","1483064890","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169025","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065153","1483065153","1483065174","1483065153","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169092","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065655","1483065655","1483065677","1483065655","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169109","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065746","1483065746","1483065765","1483065746","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169298","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067327","1483067327","1483067354","1483067327","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169344","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067698","1483067698","1483067726","1483067698","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169482","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068425","1483068425","1483068448","1483068425","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169584","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069058","1483069058","1483069077","1483069058","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169732","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069959","1483069959","1483069982","1483069959","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169823","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070337","1483070337","1483070359","1483070337","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169917","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070822","1483070822","1483070846","1483070822","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170003","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071184","1483071184","1483071200","1483071184","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170015","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071218","1483071218","1483071244","1483071218","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170080","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071605","1483071605","1483071631","1483071605","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170208","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072517","1483072517","1483072536","1483072517","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170310","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073138","1483073138","1483073154","1483073138","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170516","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074445","1483074445","1483074459","1483074445","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170522","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074467","1483074467","1483074485","1483074467","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170806","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076639","1483076639","1483076654","1483076639","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170831","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076803","1483076803","1483076823","1483076803","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170999","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077948","1483077948","1483077972","1483077948","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171067","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078333","1483078333","1483078353","1483078333","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171095","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078458","1483078458","1483078483","1483078458","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171493","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081270","1483081270","1483081297","1483081270","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171531","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081554","1483081554","1483081578","1483081554","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171813","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083447","1483083447","1483083462","1483083447","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171825","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083484","1483083484","1483083502","1483083484","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171887","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083740","1483083740","1483083753","1483083740","1","8","0","-1","13","0","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171973","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084106","1483084106","1483084120","1483084106","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172120","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085039","1483085039","1483085056","1483085039","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172198","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085421","1483085421","1483085443","1483085421","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172354","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086263","1483086263","1483086280","1483086263","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172451","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086662","1483086662","1483086678","1483086662","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172517","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086974","1483086974","1483086997","1483086974","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172525","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087009","1483087009","1483087031","1483087009","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172638","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087832","1483087832","1483087847","1483087832","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172701","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088093","1483088093","1483088114","1483088093","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172993","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089804","1483089804","1483089820","1483089804","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173119","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090700","1483090700","1483090728","1483090700","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173175","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091087","1483091087","1483091116","1483091087","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173235","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091394","1483091394","1483091410","1483091394","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173467","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092806","1483092806","1483092835","1483092806","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173485","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092882","1483092882","1483092906","1483092882","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173710","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094470","1483094470","1483094492","1483094470","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173818","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095190","1483095190","1483095211","1483095190","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173838","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095309","1483095309","1483095336","1483095309","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173950","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096229","1483096229","1483096253","1483096229","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174048","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097054","1483097054","1483097082","1483097054","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174270","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098731","1483098731","1483098753","1483098731","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174358","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099360","1483099360","1483099377","1483099360","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174556","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101220","1483101220","1483101244","1483101220","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174634","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101717","1483101717","1483101739","1483101717","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174672","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101932","1483101932","1483101948","1483101932","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174922","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103543","1483103543","1483103571","1483103543","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175109","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105222","1483105222","1483105250","1483105222","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175438","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107965","1483107965","1483107993","1483107965","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175490","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108280","1483108280","1483108297","1483108280","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175553","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108723","1483108723","1483108746","1483108723","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175588","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108974","1483108974","1483108996","1483108974","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175682","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109665","1483109665","1483109682","1483109665","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175725","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109940","1483109940","1483109956","1483109940","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176322","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114577","1483114577","1483114598","1483114577","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176594","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116319","1483116319","1483116337","1483116319","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1010786","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483142202","1483142202","1483142230","1483142202","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006445","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483086222","1483086222","1483086245","1483086222","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2277104","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070210","1483070210","1483070216","1483070210","1","12","0","-1","6","0","72","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278843","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086755","1483086755","1483086765","1483086755","1","12","0","-1","10","0","120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279450","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092193","1483092193","1483092202","1483092193","1","12","0","-1","9","0","108","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282010","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116063","1483116063","1483116072","1483116063","1","12","0","-1","9","0","108","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282560","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120252","1483120252","1483120262","1483120252","1","12","0","-1","10","0","120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283953","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133222","1483133222","1483133234","1483133222","1","12","0","-1","12","0","144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284714","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140468","1483140468","1483140480","1483140468","1","12","0","-1","12","0","144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108541","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","green-grape","1483063853","1483063853","1483063881","1483063853","2","24","0","-1","28","0","672","0","0:0","COMPLETED","24","2147486448Mn","3600","potbrood","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["6110375","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118393","1483118396","1483118402","1483118393","1","1","0","-1","6","3","6","0","0:0","COMPLETED","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6110382","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118406","1483118412","1483118421","1483118406","1","1","0","-1","9","6","9","0","0:0","COMPLETED","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6110454","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118629","1483118632","1483118636","1483118629","1","1","0","-1","4","3","4","0","0:0","COMPLETED","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6110457","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118638","1483118640","1483118645","1483118638","1","1","0","-1","5","2","5","0","0:0","COMPLETED","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6112281","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483134653","1483134669","1483134684","1483134653","1","1","0","-1","15","16","15","0","0:0","COMPLETED","1","2147531648Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["2284674","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140322","1483140323","1483140335","1483140322","1","1","0","-1","12","1","12","0","1:0","FAILED","1","2147486648Mn","259200","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109028","Robertson","UTC","","Grey, Southern","Screwdriver","green-grape","1483088282","1483088283","1483088286","1483088282","1","1","0","-1","3","1","3","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Geosciences","Polar Programs","Polar Meteorology"],["6110628","Robertson","UTC","","Grey, Southern","Screwdriver","green-grape","1483119197","1483119198","1483119203","1483119197","1","1","0","-1","5","1","5","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Geosciences","Polar Programs","Polar Meteorology"],["976874","Mortorq","UTC","","Honey-buzzard","Screwdriver","apple","1483085575","1483085577","1483085602","1483085575","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968147","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055976","1483055977","1483056005","1483055976","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055998","1483055999","1483056024","1483055998","1","8","0","-1","25","1","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056138","1483056139","1483056161","1483056138","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056207","1483056208","1483056234","1483056207","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056227","1483056228","1483056254","1483056227","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056233","1483056235","1483056261","1483056233","1","8","0","-1","26","2","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056256","1483056258","1483056287","1483056256","1","8","0","-1","29","2","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056286","1483056288","1483056312","1483056286","1","8","0","-1","24","2","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056432","1483056434","1483056461","1483056432","1","8","0","-1","27","2","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056435","1483056437","1483056458","1483056435","1","8","0","-1","21","2","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056441","1483056444","1483056467","1483056441","1","8","0","-1","23","3","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056533","1483056534","1483056556","1483056533","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056590","1483056591","1483056615","1483056590","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056591","1483056592","1483056619","1483056591","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056655","1483056657","1483056681","1483056655","1","8","0","-1","24","2","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968356","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056657","1483056658","1483056684","1483056657","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056684","1483056686","1483056709","1483056684","1","8","0","-1","23","2","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056693","1483056694","1483056723","1483056693","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056704","1483056705","1483056733","1483056704","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056707","1483056708","1483056735","1483056707","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056709","1483056711","1483056732","1483056709","1","8","0","-1","21","2","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056776","1483056777","1483056801","1483056776","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056779","1483056780","1483056803","1483056779","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056803","1483056805","1483056826","1483056803","1","8","0","-1","21","2","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056827","1483056830","1483056855","1483056827","1","8","0","-1","25","3","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056833","1483056835","1483056863","1483056833","1","8","0","-1","28","2","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056850","1483056851","1483056873","1483056850","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056856","1483056858","1483056877","1483056856","1","8","0","-1","19","2","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056864","1483056866","1483056884","1483056864","1","8","0","-1","18","2","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056902","1483056903","1483056926","1483056902","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056926","1483056927","1483056956","1483056926","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057118","1483057119","1483057143","1483057118","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968512","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057121","1483057122","1483057150","1483057121","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057127","1483057128","1483057156","1483057127","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057138","1483057139","1483057165","1483057138","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057142","1483057143","1483057170","1483057142","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057286","1483057287","1483057313","1483057286","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057346","1483057347","1483057376","1483057346","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057374","1483057375","1483057401","1483057374","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057416","1483057417","1483057443","1483057416","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057434","1483057435","1483057462","1483057434","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057730","1483057731","1483057755","1483057730","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057758","1483057759","1483057787","1483057758","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057776","1483057777","1483057804","1483057776","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057794","1483057795","1483057821","1483057794","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057799","1483057800","1483057823","1483057799","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057915","1483057918","1483057940","1483057915","1","8","0","-1","22","3","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057919","1483057921","1483057944","1483057919","1","8","0","-1","23","2","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057995","1483057997","1483058019","1483057995","1","8","0","-1","22","2","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058019","1483058020","1483058043","1483058019","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058024","1483058026","1483058050","1483058024","1","8","0","-1","24","2","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058029","1483058030","1483058053","1483058029","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058051","1483058052","1483058080","1483058051","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058054","1483058055","1483058084","1483058054","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058117","1483058119","1483058147","1483058117","1","8","0","-1","28","2","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058170","1483058171","1483058197","1483058170","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058262","1483058265","1483058288","1483058262","1","8","0","-1","23","3","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058308","1483058309","1483058337","1483058308","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058334","1483058335","1483058357","1483058334","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058336","1483058337","1483058359","1483058336","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968912","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058450","1483058451","1483058479","1483058450","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968924","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058489","1483058490","1483058516","1483058489","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968926","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058493","1483058494","1483058517","1483058493","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058893","1483058894","1483058922","1483058893","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060032","1483060033","1483060059","1483060032","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060046","1483060048","1483060077","1483060046","1","8","0","-1","29","2","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060130","1483060131","1483060154","1483060130","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060183","1483060184","1483060208","1483060183","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969337","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060365","1483060368","1483060396","1483060365","1","8","0","-1","28","3","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969339","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060368","1483060369","1483060392","1483060368","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060528","1483060529","1483060553","1483060528","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969410","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060638","1483060639","1483060664","1483060638","1","8","0","-1","25","1","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060658","1483060659","1483060687","1483060658","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060669","1483060670","1483060698","1483060669","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060736","1483060737","1483060763","1483060736","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060756","1483060757","1483060784","1483060756","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060829","1483060831","1483060859","1483060829","1","8","0","-1","28","2","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060895","1483060896","1483060925","1483060895","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060950","1483060951","1483060978","1483060950","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060955","1483060957","1483060981","1483060955","1","8","0","-1","24","2","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061059","1483061060","1483061084","1483061059","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061248","1483061249","1483061276","1483061248","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061359","1483061360","1483061384","1483061359","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061417","1483061418","1483061447","1483061417","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061438","1483061439","1483061463","1483061438","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969729","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061658","1483061660","1483061686","1483061658","1","8","0","-1","26","2","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969731","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061682","1483061683","1483061710","1483061682","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061697","1483061698","1483061726","1483061697","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061726","1483061727","1483061755","1483061726","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969747","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061731","1483061732","1483061760","1483061731","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061744","1483061745","1483061767","1483061744","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061823","1483061824","1483061850","1483061823","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061833","1483061834","1483061856","1483061833","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061851","1483061852","1483061879","1483061851","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061889","1483061891","1483061920","1483061889","1","8","0","-1","29","2","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061891","1483061894","1483061918","1483061891","1","8","0","-1","24","3","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061955","1483061957","1483061986","1483061955","1","8","0","-1","29","2","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061961","1483061962","1483061986","1483061961","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061981","1483061982","1483062007","1483061981","1","8","0","-1","25","1","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062007","1483062008","1483062034","1483062007","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062021","1483062022","1483062048","1483062021","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062035","1483062036","1483062056","1483062035","1","8","0","-1","20","1","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062037","1483062039","1483062060","1483062037","1","8","0","-1","21","2","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062120","1483062121","1483062146","1483062120","1","8","0","-1","25","1","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062146","1483062147","1483062176","1483062146","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062173","1483062175","1483062198","1483062173","1","8","0","-1","23","2","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062198","1483062199","1483062226","1483062198","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062265","1483062266","1483062290","1483062265","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969926","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062291","1483062292","1483062320","1483062291","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062299","1483062300","1483062327","1483062299","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062321","1483062324","1483062353","1483062321","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062476","1483062478","1483062506","1483062476","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062814","1483062815","1483062843","1483062814","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063952","1483063953","1483063972","1483063952","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063969","1483063970","1483063997","1483063969","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063998","1483063999","1483064021","1483063998","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064004","1483064006","1483064024","1483064004","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064009","1483064010","1483064031","1483064009","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064015","1483064016","1483064039","1483064015","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970329","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064093","1483064095","1483064114","1483064093","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970339","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064122","1483064124","1483064151","1483064122","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064151","1483064152","1483064172","1483064151","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970372","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064234","1483064235","1483064263","1483064234","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064298","1483064300","1483064320","1483064298","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064306","1483064307","1483064327","1483064306","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970394","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064309","1483064310","1483064338","1483064309","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970434","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064438","1483064439","1483064460","1483064438","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064441","1483064442","1483064464","1483064441","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064453","1483064455","1483064477","1483064453","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064498","1483064499","1483064528","1483064498","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064511","1483064512","1483064530","1483064511","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064531","1483064532","1483064558","1483064531","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064581","1483064582","1483064609","1483064581","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064627","1483064630","1483064656","1483064627","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064636","1483064637","1483064655","1483064636","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064641","1483064642","1483064657","1483064641","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064644","1483064645","1483064666","1483064644","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064684","1483064685","1483064702","1483064684","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970527","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064686","1483064688","1483064709","1483064686","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064686","1483064688","1483064706","1483064686","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064822","1483064823","1483064844","1483064822","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064825","1483064826","1483064853","1483064825","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064907","1483064908","1483064930","1483064907","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064941","1483064943","1483064964","1483064941","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064965","1483064966","1483064988","1483064965","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065062","1483065063","1483065092","1483065062","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065079","1483065080","1483065102","1483065079","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065080","1483065083","1483065106","1483065080","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065083","1483065086","1483065107","1483065083","1","8","0","-1","21","3","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065217","1483065218","1483065246","1483065217","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065227","1483065229","1483065252","1483065227","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065517","1483065518","1483065545","1483065517","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065619","1483065620","1483065639","1483065619","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065694","1483065695","1483065715","1483065694","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065745","1483065746","1483065768","1483065745","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065795","1483065796","1483065823","1483065795","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065802","1483065803","1483065831","1483065802","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065805","1483065806","1483065834","1483065805","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065810","1483065811","1483065834","1483065810","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065818","1483065819","1483065835","1483065818","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065835","1483065838","1483065867","1483065835","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065866","1483065867","1483065887","1483065866","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065868","1483065870","1483065895","1483065868","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065917","1483065918","1483065947","1483065917","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065943","1483065945","1483065969","1483065943","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065946","1483065947","1483065972","1483065946","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065947","1483065948","1483065966","1483065947","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970926","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065972","1483065973","1483066001","1483065972","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065983","1483065984","1483066003","1483065983","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970932","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066001","1483066002","1483066020","1483066001","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066004","1483066005","1483066022","1483066004","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066011","1483066012","1483066034","1483066011","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066069","1483066070","1483066095","1483066069","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066081","1483066083","1483066101","1483066081","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066101","1483066102","1483066127","1483066101","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066108","1483066109","1483066128","1483066108","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066110","1483066112","1483066129","1483066110","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066127","1483066128","1483066153","1483066127","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066129","1483066130","1483066148","1483066129","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066149","1483066150","1483066179","1483066149","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066226","1483066227","1483066255","1483066226","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066230","1483066231","1483066256","1483066230","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066335","1483066336","1483066363","1483066335","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066406","1483066407","1483066434","1483066406","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066496","1483066497","1483066522","1483066496","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066578","1483066579","1483066607","1483066578","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067865","1483067866","1483067884","1483067865","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067877","1483067878","1483067894","1483067877","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067884","1483067885","1483067908","1483067884","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067885","1483067888","1483067913","1483067885","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067895","1483067896","1483067923","1483067895","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067897","1483067898","1483067920","1483067897","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067909","1483067910","1483067928","1483067909","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067913","1483067914","1483067943","1483067913","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067957","1483067958","1483067983","1483067957","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067964","1483067965","1483067990","1483067964","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067984","1483067985","1483068014","1483067984","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067986","1483067987","1483068015","1483067986","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068012","1483068013","1483068040","1483068012","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068015","1483068016","1483068034","1483068015","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068018","1483068019","1483068038","1483068018","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068071","1483068072","1483068098","1483068071","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068078","1483068079","1483068096","1483068078","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068079","1483068082","1483068108","1483068079","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068098","1483068099","1483068128","1483068098","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068132","1483068133","1483068162","1483068132","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068164","1483068165","1483068187","1483068164","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068199","1483068202","1483068222","1483068199","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068206","1483068207","1483068227","1483068206","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068222","1483068223","1483068243","1483068222","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068274","1483068275","1483068291","1483068274","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068281","1483068282","1483068308","1483068281","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068290","1483068291","1483068317","1483068290","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068292","1483068293","1483068317","1483068292","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068335","1483068336","1483068353","1483068335","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068336","1483068338","1483068359","1483068336","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068378","1483068379","1483068395","1483068378","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068381","1483068382","1483068401","1483068381","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068398","1483068399","1483068424","1483068398","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068406","1483068407","1483068423","1483068406","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068410","1483068411","1483068424","1483068410","1","8","0","-1","13","1","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068415","1483068416","1483068443","1483068415","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068422","1483068423","1483068437","1483068422","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068423","1483068424","1483068446","1483068423","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068424","1483068426","1483068455","1483068424","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068495","1483068497","1483068518","1483068495","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068519","1483068520","1483068548","1483068519","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068548","1483068549","1483068578","1483068548","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068578","1483068579","1483068601","1483068578","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068586","1483068587","1483068614","1483068586","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068644","1483068645","1483068674","1483068644","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068645","1483068648","1483068673","1483068645","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068674","1483068675","1483068694","1483068674","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068675","1483068678","1483068698","1483068675","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068699","1483068701","1483068729","1483068699","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068752","1483068753","1483068778","1483068752","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068758","1483068759","1483068780","1483068758","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068931","1483068932","1483068959","1483068931","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068960","1483068961","1483068978","1483068960","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068974","1483068975","1483068999","1483068974","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069021","1483069022","1483069040","1483069021","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069024","1483069025","1483069041","1483069024","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069040","1483069041","1483069057","1483069040","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069041","1483069042","1483069071","1483069041","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069071","1483069072","1483069086","1483069071","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971751","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069086","1483069089","1483069116","1483069086","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971755","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069106","1483069107","1483069130","1483069106","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069146","1483069147","1483069174","1483069146","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069149","1483069150","1483069176","1483069149","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971779","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069165","1483069166","1483069191","1483069165","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069567","1483069568","1483069588","1483069567","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069575","1483069576","1483069595","1483069575","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069590","1483069592","1483069613","1483069590","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069608","1483069609","1483069632","1483069608","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069688","1483069690","1483069710","1483069688","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069690","1483069693","1483069713","1483069690","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069715","1483069717","1483069738","1483069715","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069736","1483069737","1483069757","1483069736","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069738","1483069739","1483069757","1483069738","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069739","1483069740","1483069759","1483069739","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069741","1483069743","1483069760","1483069741","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069750","1483069751","1483069770","1483069750","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069786","1483069787","1483069806","1483069786","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069787","1483069789","1483069808","1483069787","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069790","1483069793","1483069812","1483069790","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069798","1483069799","1483069816","1483069798","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069806","1483069807","1483069823","1483069806","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069807","1483069809","1483069829","1483069807","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069809","1483069810","1483069832","1483069809","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069812","1483069813","1483069836","1483069812","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069823","1483069824","1483069843","1483069823","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069825","1483069827","1483069849","1483069825","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069832","1483069833","1483069850","1483069832","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069837","1483069838","1483069855","1483069837","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069850","1483069851","1483069880","1483069850","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069880","1483069882","1483069901","1483069880","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069904","1483069905","1483069921","1483069904","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069910","1483069911","1483069932","1483069910","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069915","1483069916","1483069937","1483069915","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069918","1483069919","1483069940","1483069918","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972019","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069937","1483069938","1483069959","1483069937","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069940","1483069941","1483069958","1483069940","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069952","1483069953","1483069980","1483069952","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069963","1483069965","1483069984","1483069963","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069981","1483069984","1483070002","1483069981","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069985","1483069987","1483070002","1483069985","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070002","1483070003","1483070021","1483070002","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070003","1483070005","1483070024","1483070003","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070005","1483070006","1483070026","1483070005","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070024","1483070025","1483070053","1483070024","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070025","1483070026","1483070052","1483070025","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070027","1483070029","1483070057","1483070027","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070058","1483070060","1483070081","1483070058","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070070","1483070071","1483070094","1483070070","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070075","1483070077","1483070089","1483070075","1","8","0","-1","12","2","96","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070082","1483070083","1483070108","1483070082","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070090","1483070091","1483070113","1483070090","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070095","1483070096","1483070118","1483070095","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070113","1483070115","1483070128","1483070113","1","8","0","-1","13","2","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070121","1483070122","1483070147","1483070121","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070123","1483070125","1483070152","1483070123","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070126","1483070128","1483070155","1483070126","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070129","1483070131","1483070159","1483070129","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070133","1483070134","1483070162","1483070133","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070147","1483070148","1483070169","1483070147","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070155","1483070156","1483070179","1483070155","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070169","1483070170","1483070188","1483070169","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070175","1483070176","1483070200","1483070175","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070179","1483070180","1483070201","1483070179","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070202","1483070204","1483070227","1483070202","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070209","1483070210","1483070230","1483070209","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070223","1483070225","1483070254","1483070223","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070261","1483070263","1483070285","1483070261","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070284","1483070285","1483070307","1483070284","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070286","1483070288","1483070310","1483070286","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070301","1483070302","1483070321","1483070301","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070308","1483070309","1483070327","1483070308","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070311","1483070312","1483070337","1483070311","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070322","1483070323","1483070341","1483070322","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070337","1483070338","1483070366","1483070337","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070370","1483070371","1483070392","1483070370","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070374","1483070375","1483070398","1483070374","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972227","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070377","1483070378","1483070405","1483070377","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070391","1483070392","1483070408","1483070391","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070392","1483070393","1483070417","1483070392","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070396","1483070398","1483070421","1483070396","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070408","1483070409","1483070431","1483070408","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070409","1483070412","1483070431","1483070409","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070418","1483070419","1483070437","1483070418","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070465","1483070466","1483070486","1483070465","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070486","1483070487","1483070505","1483070486","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070493","1483070495","1483070518","1483070493","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070507","1483070509","1483070536","1483070507","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070515","1483070516","1483070540","1483070515","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070523","1483070524","1483070547","1483070523","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070634","1483070636","1483070663","1483070634","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070734","1483070735","1483070755","1483070734","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070756","1483070757","1483070780","1483070756","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070762","1483070763","1483070778","1483070762","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070768","1483070769","1483070789","1483070768","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972372","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070778","1483070779","1483070799","1483070778","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070780","1483070782","1483070804","1483070780","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070796","1483070797","1483070825","1483070796","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972380","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070799","1483070800","1483070821","1483070799","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972388","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070818","1483070820","1483070838","1483070818","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070874","1483070876","1483070897","1483070874","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070877","1483070879","1483070898","1483070877","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070899","1483070900","1483070916","1483070899","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070900","1483070901","1483070917","1483070900","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070943","1483070944","1483070962","1483070943","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070946","1483070947","1483070966","1483070946","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070951","1483070952","1483070976","1483070951","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972455","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070959","1483070960","1483070980","1483070959","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070963","1483070964","1483070977","1483070963","1","8","0","-1","13","1","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070966","1483070967","1483070979","1483070966","1","8","0","-1","12","1","96","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070978","1483070980","1483071002","1483070978","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070980","1483070981","1483071005","1483070980","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070984","1483070986","1483071007","1483070984","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071003","1483071004","1483071021","1483071003","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071005","1483071007","1483071021","1483071005","1","8","0","-1","14","2","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071007","1483071009","1483071027","1483071007","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071054","1483071056","1483071073","1483071054","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071057","1483071058","1483071076","1483071057","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071058","1483071059","1483071083","1483071058","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071073","1483071074","1483071088","1483071073","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071074","1483071076","1483071091","1483071074","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071078","1483071080","1483071109","1483071078","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071089","1483071090","1483071115","1483071089","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071091","1483071093","1483071116","1483071091","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071104","1483071105","1483071122","1483071104","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071108","1483071109","1483071124","1483071108","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071110","1483071112","1483071133","1483071110","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071113","1483071115","1483071129","1483071113","1","8","0","-1","14","2","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071134","1483071136","1483071157","1483071134","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071151","1483071152","1483071174","1483071151","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071158","1483071160","1483071183","1483071158","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071160","1483071161","1483071183","1483071160","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071163","1483071164","1483071178","1483071163","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071175","1483071176","1483071200","1483071175","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071183","1483071186","1483071209","1483071183","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071302","1483071303","1483071325","1483071302","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071306","1483071309","1483071334","1483071306","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071405","1483071406","1483071434","1483071405","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071407","1483071409","1483071435","1483071407","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071419","1483071420","1483071445","1483071419","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071434","1483071435","1483071464","1483071434","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071464","1483071465","1483071491","1483071464","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071468","1483071469","1483071494","1483071468","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071478","1483071479","1483071502","1483071478","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071497","1483071498","1483071527","1483071497","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972677","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071512","1483071513","1483071539","1483071512","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972685","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071539","1483071540","1483071565","1483071539","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071552","1483071553","1483071582","1483071552","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071593","1483071594","1483071619","1483071593","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072144","1483072145","1483072173","1483072144","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072191","1483072192","1483072221","1483072191","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072220","1483072221","1483072248","1483072220","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072222","1483072223","1483072248","1483072222","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072223","1483072224","1483072248","1483072223","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072279","1483072281","1483072309","1483072279","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972924","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072426","1483072427","1483072448","1483072426","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072451","1483072453","1483072474","1483072451","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072802","1483072805","1483072833","1483072802","1","8","0","-1","28","3","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072895","1483072897","1483072918","1483072895","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072948","1483072949","1483072974","1483072948","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072974","1483072975","1483072999","1483072974","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072975","1483072977","1483072998","1483072975","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072989","1483072990","1483073011","1483072989","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073039","1483073042","1483073069","1483073039","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073117","1483073118","1483073136","1483073117","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973139","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073120","1483073121","1483073137","1483073120","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073135","1483073136","1483073163","1483073135","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073137","1483073139","1483073166","1483073137","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073138","1483073139","1483073162","1483073138","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073138","1483073139","1483073156","1483073138","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073157","1483073158","1483073175","1483073157","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073163","1483073164","1483073183","1483073163","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073175","1483073176","1483073202","1483073175","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073197","1483073199","1483073227","1483073197","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073304","1483073305","1483073328","1483073304","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073312","1483073313","1483073335","1483073312","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973220","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073362","1483073363","1483073392","1483073362","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073456","1483073457","1483073480","1483073456","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073468","1483073469","1483073492","1483073468","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073558","1483073559","1483073582","1483073558","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073578","1483073579","1483073600","1483073578","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073629","1483073630","1483073656","1483073629","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073632","1483073633","1483073653","1483073632","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073636","1483073637","1483073662","1483073636","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973339","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073755","1483073757","1483073780","1483073755","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973402","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073986","1483073988","1483074017","1483073986","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074018","1483074019","1483074045","1483074018","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074110","1483074112","1483074131","1483074110","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074175","1483074177","1483074203","1483074175","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074226","1483074227","1483074249","1483074226","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074236","1483074237","1483074260","1483074236","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074237","1483074240","1483074261","1483074237","1","8","0","-1","21","3","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074250","1483074251","1483074270","1483074250","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074261","1483074262","1483074283","1483074261","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973494","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074309","1483074310","1483074333","1483074309","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074311","1483074313","1483074337","1483074311","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074322","1483074323","1483074349","1483074322","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074333","1483074334","1483074356","1483074333","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074349","1483074350","1483074373","1483074349","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973512","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074351","1483074353","1483074376","1483074351","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074356","1483074357","1483074382","1483074356","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074368","1483074369","1483074390","1483074368","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074418","1483074420","1483074444","1483074418","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074441","1483074442","1483074466","1483074441","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074442","1483074445","1483074470","1483074442","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074445","1483074448","1483074477","1483074445","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074489","1483074490","1483074516","1483074489","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074516","1483074517","1483074542","1483074516","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074552","1483074553","1483074578","1483074552","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074554","1483074556","1483074577","1483074554","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074569","1483074570","1483074588","1483074569","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074609","1483074610","1483074634","1483074609","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074633","1483074634","1483074658","1483074633","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074657","1483074659","1483074687","1483074657","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074765","1483074766","1483074793","1483074765","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075761","1483075762","1483075789","1483075761","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076106","1483076107","1483076128","1483076106","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076108","1483076110","1483076131","1483076108","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076158","1483076160","1483076184","1483076158","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076244","1483076245","1483076268","1483076244","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974025","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076323","1483076324","1483076349","1483076323","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076468","1483076469","1483076498","1483076468","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076716","1483076717","1483076741","1483076716","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974135","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076730","1483076731","1483076759","1483076730","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076747","1483076749","1483076776","1483076747","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974153","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076798","1483076799","1483076821","1483076798","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076803","1483076805","1483076824","1483076803","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076805","1483076808","1483076837","1483076805","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076858","1483076859","1483076886","1483076858","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076876","1483076877","1483076903","1483076876","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076877","1483076880","1483076902","1483076877","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076882","1483076883","1483076908","1483076882","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076886","1483076887","1483076912","1483076886","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076904","1483076906","1483076930","1483076904","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076908","1483076909","1483076936","1483076908","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076914","1483076916","1483076940","1483076914","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076944","1483076945","1483076965","1483076944","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077030","1483077031","1483077059","1483077030","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077227","1483077229","1483077254","1483077227","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077255","1483077256","1483077278","1483077255","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077260","1483077261","1483077289","1483077260","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077416","1483077417","1483077443","1483077416","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077481","1483077482","1483077511","1483077481","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077512","1483077513","1483077540","1483077512","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077516","1483077517","1483077543","1483077516","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077523","1483077524","1483077550","1483077523","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077555","1483077556","1483077578","1483077555","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077875","1483077876","1483077895","1483077875","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077883","1483077884","1483077912","1483077883","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077913","1483077914","1483077941","1483077913","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077924","1483077925","1483077947","1483077924","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077933","1483077934","1483077959","1483077933","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077937","1483077938","1483077962","1483077937","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078008","1483078011","1483078038","1483078008","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078016","1483078017","1483078041","1483078016","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078034","1483078037","1483078063","1483078034","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078042","1483078043","1483078072","1483078042","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078073","1483078074","1483078095","1483078073","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078080","1483078081","1483078108","1483078080","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078089","1483078090","1483078112","1483078089","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078178","1483078180","1483078208","1483078178","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078210","1483078212","1483078234","1483078210","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078283","1483078284","1483078308","1483078283","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078285","1483078287","1483078313","1483078285","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078302","1483078303","1483078332","1483078302","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078306","1483078307","1483078335","1483078306","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974605","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078310","1483078311","1483078339","1483078310","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078332","1483078333","1483078353","1483078332","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078336","1483078337","1483078364","1483078336","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078339","1483078340","1483078369","1483078339","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078370","1483078371","1483078396","1483078370","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078396","1483078399","1483078425","1483078396","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078426","1483078427","1483078453","1483078426","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078450","1483078451","1483078475","1483078450","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078451","1483078453","1483078477","1483078451","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974675","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078488","1483078489","1483078518","1483078488","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974703","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078570","1483078572","1483078597","1483078570","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080021","1483080023","1483080040","1483080021","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080089","1483080092","1483080110","1483080089","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080180","1483080183","1483080206","1483080180","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080206","1483080207","1483080235","1483080206","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080225","1483080226","1483080245","1483080225","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080236","1483080238","1483080260","1483080236","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080303","1483080304","1483080328","1483080303","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080306","1483080307","1483080329","1483080306","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080367","1483080369","1483080391","1483080367","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080370","1483080372","1483080391","1483080370","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080374","1483080375","1483080398","1483080374","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975139","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080437","1483080438","1483080458","1483080437","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975153","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080462","1483080464","1483080492","1483080462","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080491","1483080492","1483080518","1483080491","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080551","1483080553","1483080576","1483080551","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080564","1483080565","1483080582","1483080564","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080576","1483080577","1483080606","1483080576","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080583","1483080584","1483080611","1483080583","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080606","1483080607","1483080624","1483080606","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080612","1483080613","1483080630","1483080612","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080612","1483080613","1483080631","1483080612","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080658","1483080659","1483080687","1483080658","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080668","1483080669","1483080694","1483080668","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080671","1483080672","1483080695","1483080671","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080688","1483080689","1483080707","1483080688","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080694","1483080696","1483080725","1483080694","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080696","1483080697","1483080720","1483080696","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080696","1483080697","1483080723","1483080696","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080708","1483080709","1483080735","1483080708","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080720","1483080721","1483080737","1483080720","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080724","1483080725","1483080742","1483080724","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080727","1483080728","1483080747","1483080727","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080743","1483080745","1483080772","1483080743","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080773","1483080775","1483080802","1483080773","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080781","1483080782","1483080803","1483080781","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080844","1483080845","1483080865","1483080844","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080847","1483080849","1483080870","1483080847","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080975","1483080976","1483080997","1483080975","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080976","1483080978","1483081001","1483080976","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080984","1483080985","1483081008","1483080984","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080996","1483080997","1483081018","1483080996","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080998","1483081000","1483081029","1483080998","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081050","1483081052","1483081080","1483081050","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081053","1483081055","1483081083","1483081053","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081074","1483081075","1483081096","1483081074","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081084","1483081085","1483081114","1483081084","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081108","1483081109","1483081131","1483081108","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081115","1483081116","1483081138","1483081115","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081121","1483081122","1483081144","1483081121","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081124","1483081125","1483081146","1483081124","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081187","1483081188","1483081215","1483081187","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081218","1483081219","1483081245","1483081218","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081248","1483081249","1483081269","1483081248","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081526","1483081527","1483081555","1483081526","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081543","1483081544","1483081567","1483081543","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081596","1483081597","1483081620","1483081596","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081686","1483081687","1483081702","1483081686","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081687","1483081690","1483081712","1483081687","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081712","1483081713","1483081730","1483081712","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081726","1483081727","1483081744","1483081726","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081731","1483081732","1483081751","1483081731","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081733","1483081735","1483081752","1483081733","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081739","1483081741","1483081768","1483081739","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081752","1483081753","1483081782","1483081752","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081798","1483081799","1483081820","1483081798","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081805","1483081806","1483081820","1483081805","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081823","1483081824","1483081853","1483081823","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081856","1483081858","1483081877","1483081856","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081858","1483081861","1483081877","1483081858","1","8","0","-1","16","3","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081943","1483081945","1483081972","1483081943","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081970","1483081971","1483081989","1483081970","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081973","1483081974","1483081995","1483081973","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081976","1483081978","1483081997","1483081976","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081979","1483081981","1483081998","1483081979","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082045","1483082046","1483082062","1483082045","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082049","1483082050","1483082076","1483082049","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082061","1483082063","1483082092","1483082061","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082064","1483082067","1483082085","1483082064","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082077","1483082078","1483082096","1483082077","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082085","1483082088","1483082104","1483082085","1","8","0","-1","16","3","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082088","1483082091","1483082113","1483082088","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082149","1483082150","1483082178","1483082149","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082202","1483082204","1483082231","1483082202","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082214","1483082215","1483082239","1483082214","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082218","1483082219","1483082243","1483082218","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082319","1483082321","1483082349","1483082319","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082404","1483082405","1483082427","1483082404","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082457","1483082458","1483082487","1483082457","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082517","1483082518","1483082544","1483082517","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083255","1483083256","1483083282","1483083255","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976043","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083430","1483083431","1483083449","1483083430","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976047","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083444","1483083446","1483083463","1483083444","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976049","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083446","1483083449","1483083464","1483083446","1","8","0","-1","15","3","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083450","1483083452","1483083476","1483083450","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083464","1483083465","1483083483","1483083464","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083476","1483083478","1483083495","1483083476","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083484","1483083485","1483083511","1483083484","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976073","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083484","1483083485","1483083511","1483083484","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976089","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083537","1483083538","1483083554","1483083537","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976091","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083538","1483083541","1483083555","1483083538","1","8","0","-1","14","3","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976093","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083541","1483083544","1483083566","1483083541","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976095","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083549","1483083550","1483083574","1483083549","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083550","1483083553","1483083573","1483083550","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083555","1483083556","1483083578","1483083555","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083556","1483083559","1483083577","1483083556","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083559","1483083562","1483083580","1483083559","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083567","1483083568","1483083584","1483083567","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083574","1483083575","1483083591","1483083574","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083575","1483083577","1483083602","1483083575","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083577","1483083578","1483083604","1483083577","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083578","1483083581","1483083606","1483083578","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083603","1483083604","1483083632","1483083603","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083606","1483083607","1483083627","1483083606","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083627","1483083628","1483083655","1483083627","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083638","1483083639","1483083659","1483083638","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083640","1483083641","1483083662","1483083640","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083641","1483083642","1483083663","1483083641","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083656","1483083658","1483083673","1483083656","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083660","1483083661","1483083677","1483083660","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083662","1483083663","1483083680","1483083662","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083664","1483083667","1483083692","1483083664","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083681","1483083682","1483083708","1483083681","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083693","1483083696","1483083713","1483083693","1","8","0","-1","17","3","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083714","1483083715","1483083736","1483083714","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083716","1483083718","1483083739","1483083716","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083735","1483083736","1483083756","1483083735","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083737","1483083739","1483083759","1483083737","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083740","1483083742","1483083762","1483083740","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083740","1483083742","1483083760","1483083740","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083783","1483083784","1483083799","1483083783","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083800","1483083801","1483083820","1483083800","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083818","1483083819","1483083834","1483083818","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083819","1483083820","1483083834","1483083819","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083821","1483083823","1483083837","1483083821","1","8","0","-1","14","2","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083827","1483083828","1483083842","1483083827","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083834","1483083835","1483083860","1483083834","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083835","1483083837","1483083862","1483083835","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083843","1483083844","1483083872","1483083843","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083860","1483083862","1483083878","1483083860","1","8","0","-1","16","2","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083862","1483083863","1483083879","1483083862","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083873","1483083874","1483083890","1483083873","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083876","1483083877","1483083893","1483083876","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083882","1483083883","1483083896","1483083882","1","8","0","-1","13","1","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083891","1483083892","1483083904","1483083891","1","8","0","-1","12","1","96","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083897","1483083898","1483083920","1483083897","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083900","1483083901","1483083923","1483083900","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083908","1483083909","1483083936","1483083908","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083910","1483083913","1483083936","1483083910","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083921","1483083922","1483083944","1483083921","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083924","1483083925","1483083953","1483083924","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083936","1483083937","1483083959","1483083936","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083942","1483083943","1483083963","1483083942","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083945","1483083946","1483083965","1483083945","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083954","1483083955","1483083975","1483083954","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083958","1483083959","1483083977","1483083958","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083960","1483083962","1483083981","1483083960","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083963","1483083965","1483083994","1483083963","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083969","1483083971","1483083998","1483083969","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084027","1483084028","1483084051","1483084027","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084029","1483084031","1483084053","1483084029","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084045","1483084046","1483084065","1483084045","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084051","1483084052","1483084070","1483084051","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084054","1483084055","1483084082","1483084054","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084089","1483084090","1483084112","1483084089","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084105","1483084108","1483084127","1483084105","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084106","1483084108","1483084126","1483084106","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084125","1483084126","1483084151","1483084125","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084127","1483084128","1483084157","1483084127","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084128","1483084129","1483084157","1483084128","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084152","1483084153","1483084182","1483084152","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084166","1483084167","1483084188","1483084166","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084182","1483084183","1483084200","1483084182","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084187","1483084188","1483084214","1483084187","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084193","1483084194","1483084220","1483084193","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084329","1483084331","1483084348","1483084329","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084365","1483084367","1483084394","1483084365","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084377","1483084378","1483084403","1483084377","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084407","1483084408","1483084424","1483084407","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084425","1483084427","1483084442","1483084425","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084432","1483084433","1483084457","1483084432","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084443","1483084445","1483084469","1483084443","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084468","1483084469","1483084486","1483084468","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084470","1483084471","1483084485","1483084470","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084471","1483084472","1483084496","1483084471","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084479","1483084480","1483084502","1483084479","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084487","1483084488","1483084517","1483084487","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084518","1483084520","1483084541","1483084518","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084521","1483084523","1483084546","1483084521","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084530","1483084531","1483084554","1483084530","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084547","1483084549","1483084575","1483084547","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084571","1483084572","1483084595","1483084571","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976585","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084843","1483084846","1483084868","1483084843","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084869","1483084870","1483084892","1483084869","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084878","1483084879","1483084901","1483084878","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084884","1483084885","1483084907","1483084884","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084892","1483084893","1483084916","1483084892","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084893","1483084894","1483084917","1483084893","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084901","1483084902","1483084924","1483084901","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084907","1483084908","1483084931","1483084907","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976605","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084915","1483084917","1483084941","1483084915","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084993","1483084996","1483085017","1483084993","1","8","0","-1","21","3","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085018","1483085019","1483085040","1483085018","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085038","1483085039","1483085065","1483085038","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085041","1483085042","1483085068","1483085041","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085051","1483085052","1483085074","1483085051","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085062","1483085063","1483085086","1483085062","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085098","1483085101","1483085123","1483085098","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085123","1483085126","1483085148","1483085123","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085127","1483085129","1483085149","1483085127","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085131","1483085132","1483085157","1483085131","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085133","1483085135","1483085159","1483085133","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085148","1483085149","1483085172","1483085148","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085150","1483085152","1483085176","1483085150","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085160","1483085161","1483085185","1483085160","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085177","1483085178","1483085207","1483085177","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085181","1483085182","1483085211","1483085181","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085211","1483085212","1483085236","1483085211","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085239","1483085241","1483085268","1483085239","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085244","1483085245","1483085273","1483085244","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085245","1483085246","1483085270","1483085245","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085250","1483085251","1483085280","1483085250","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085253","1483085254","1483085282","1483085253","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085271","1483085273","1483085300","1483085271","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085273","1483085275","1483085303","1483085273","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085281","1483085282","1483085304","1483085281","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085297","1483085298","1483085326","1483085297","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085341","1483085343","1483085363","1483085341","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085365","1483085367","1483085387","1483085365","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085379","1483085382","1483085400","1483085379","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085388","1483085389","1483085410","1483085388","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085397","1483085398","1483085420","1483085397","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085405","1483085408","1483085426","1483085405","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085453","1483085454","1483085473","1483085453","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085462","1483085463","1483085482","1483085462","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085468","1483085469","1483085484","1483085468","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085471","1483085472","1483085493","1483085471","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085474","1483085475","1483085496","1483085474","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085477","1483085478","1483085498","1483085477","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085494","1483085495","1483085509","1483085494","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085497","1483085498","1483085514","1483085497","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085500","1483085501","1483085526","1483085500","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085504","1483085505","1483085530","1483085504","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085527","1483085528","1483085555","1483085527","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085530","1483085531","1483085554","1483085530","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085548","1483085549","1483085575","1483085548","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085550","1483085552","1483085577","1483085550","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085554","1483085555","1483085579","1483085554","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085556","1483085558","1483085584","1483085556","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085571","1483085573","1483085599","1483085571","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085577","1483085578","1483085603","1483085577","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085580","1483085581","1483085608","1483085580","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085599","1483085600","1483085626","1483085599","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085651","1483085653","1483085666","1483085651","1","8","0","-1","13","2","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085655","1483085656","1483085680","1483085655","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085658","1483085659","1483085682","1483085658","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085662","1483085663","1483085684","1483085662","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085680","1483085681","1483085707","1483085680","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085683","1483085684","1483085710","1483085683","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085685","1483085687","1483085712","1483085685","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085760","1483085761","1483085784","1483085760","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085793","1483085795","1483085820","1483085793","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085807","1483085808","1483085834","1483085807","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085812","1483085813","1483085839","1483085812","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085821","1483085823","1483085847","1483085821","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085823","1483085824","1483085850","1483085823","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085910","1483085911","1483085934","1483085910","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085954","1483085956","1483085978","1483085954","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085962","1483085963","1483085988","1483085962","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086228","1483086229","1483086251","1483086228","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086241","1483086242","1483086262","1483086241","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086263","1483086265","1483086287","1483086263","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977101","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086264","1483086265","1483086288","1483086264","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086272","1483086273","1483086296","1483086272","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977109","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086288","1483086289","1483086308","1483086288","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086302","1483086304","1483086332","1483086302","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086334","1483086336","1483086358","1483086334","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086341","1483086342","1483086364","1483086341","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086347","1483086348","1483086370","1483086347","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086359","1483086361","1483086389","1483086359","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086366","1483086368","1483086391","1483086366","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086371","1483086372","1483086393","1483086371","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086383","1483086384","1483086407","1483086383","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086388","1483086389","1483086412","1483086388","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086389","1483086392","1483086412","1483086389","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086394","1483086395","1483086413","1483086394","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086407","1483086408","1483086437","1483086407","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086455","1483086457","1483086474","1483086455","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086459","1483086460","1483086486","1483086459","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086475","1483086478","1483086505","1483086475","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086500","1483086501","1483086517","1483086500","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086503","1483086504","1483086527","1483086503","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086506","1483086507","1483086536","1483086506","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086536","1483086538","1483086557","1483086536","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086548","1483086549","1483086569","1483086548","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086555","1483086556","1483086575","1483086555","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977227","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086557","1483086559","1483086576","1483086557","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086562","1483086563","1483086579","1483086562","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086569","1483086570","1483086590","1483086569","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086571","1483086573","1483086594","1483086571","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086576","1483086579","1483086599","1483086576","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086579","1483086582","1483086601","1483086579","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086590","1483086591","1483086609","1483086590","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086594","1483086595","1483086612","1483086594","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086596","1483086598","1483086613","1483086596","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086600","1483086601","1483086617","1483086600","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086602","1483086603","1483086621","1483086602","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086608","1483086609","1483086636","1483086608","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086610","1483086612","1483086637","1483086610","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086618","1483086619","1483086647","1483086618","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086621","1483086622","1483086649","1483086621","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086637","1483086638","1483086657","1483086637","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086638","1483086641","1483086661","1483086638","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086650","1483086651","1483086670","1483086650","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086671","1483086673","1483086692","1483086671","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086671","1483086673","1483086692","1483086671","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086680","1483086681","1483086698","1483086680","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086688","1483086689","1483086707","1483086688","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086738","1483086740","1483086769","1483086738","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086769","1483086771","1483086796","1483086769","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086866","1483086868","1483086895","1483086866","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087044","1483087045","1483087074","1483087044","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087839","1483087841","1483087867","1483087839","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087846","1483087847","1483087873","1483087846","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087849","1483087850","1483087878","1483087849","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087856","1483087858","1483087883","1483087856","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087911","1483087912","1483087935","1483087911","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087937","1483087939","1483087964","1483087937","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087949","1483087950","1483087976","1483087949","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087953","1483087954","1483087982","1483087953","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087977","1483087978","1483088003","1483087977","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977721","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088017","1483088018","1483088042","1483088017","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088041","1483088043","1483088068","1483088041","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088043","1483088044","1483088069","1483088043","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088067","1483088068","1483088097","1483088067","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088069","1483088071","1483088099","1483088069","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977807","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088264","1483088267","1483088289","1483088264","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088272","1483088273","1483088295","1483088272","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088289","1483088290","1483088312","1483088289","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088298","1483088299","1483088317","1483088298","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088300","1483088302","1483088326","1483088300","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977821","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088312","1483088313","1483088338","1483088312","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088316","1483088317","1483088341","1483088316","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088318","1483088320","1483088342","1483088318","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088326","1483088327","1483088350","1483088326","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088327","1483088330","1483088351","1483088327","1","8","0","-1","21","3","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088332","1483088333","1483088353","1483088332","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088339","1483088340","1483088358","1483088339","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088342","1483088343","1483088363","1483088342","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088352","1483088353","1483088382","1483088352","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088383","1483088384","1483088404","1483088383","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088386","1483088387","1483088408","1483088386","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088386","1483088387","1483088407","1483088386","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088399","1483088400","1483088418","1483088399","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088405","1483088406","1483088422","1483088405","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088406","1483088407","1483088429","1483088406","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088407","1483088408","1483088430","1483088407","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088408","1483088409","1483088430","1483088408","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088419","1483088420","1483088439","1483088419","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088431","1483088433","1483088452","1483088431","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088434","1483088436","1483088465","1483088434","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088439","1483088440","1483088468","1483088439","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088442","1483088443","1483088470","1483088442","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088471","1483088473","1483088498","1483088471","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088497","1483088499","1483088524","1483088497","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977912","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088513","1483088514","1483088540","1483088513","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088605","1483088608","1483088632","1483088605","1","8","0","-1","24","3","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088621","1483088622","1483088648","1483088621","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088644","1483088645","1483088671","1483088644","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977952","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088645","1483088648","1483088675","1483088645","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088672","1483088673","1483088700","1483088672","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088751","1483088752","1483088779","1483088751","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977994","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088779","1483088780","1483088807","1483088779","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088781","1483088783","1483088809","1483088781","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088784","1483088786","1483088811","1483088784","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978000","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088789","1483088790","1483088819","1483088789","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088791","1483088793","1483088821","1483088791","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088795","1483088796","1483088824","1483088795","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088809","1483088811","1483088839","1483088809","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978010","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088812","1483088814","1483088843","1483088812","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088821","1483088823","1483088847","1483088821","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978016","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088824","1483088826","1483088853","1483088824","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088910","1483088911","1483088940","1483088910","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088928","1483088929","1483088954","1483088928","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088929","1483088932","1483088957","1483088929","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088974","1483088975","1483088997","1483088974","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089271","1483089272","1483089293","1483089271","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089273","1483089275","1483089298","1483089273","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089294","1483089295","1483089318","1483089294","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089299","1483089300","1483089323","1483089299","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089318","1483089319","1483089341","1483089318","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089323","1483089325","1483089350","1483089323","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089341","1483089342","1483089366","1483089341","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089350","1483089351","1483089375","1483089350","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089353","1483089354","1483089378","1483089353","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089362","1483089365","1483089387","1483089362","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089367","1483089368","1483089389","1483089367","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089376","1483089377","1483089396","1483089376","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089425","1483089426","1483089449","1483089425","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089428","1483089429","1483089451","1483089428","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089449","1483089450","1483089473","1483089449","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089451","1483089453","1483089476","1483089451","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089460","1483089461","1483089480","1483089460","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089477","1483089478","1483089505","1483089477","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089479","1483089481","1483089505","1483089479","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089542","1483089544","1483089567","1483089542","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089546","1483089547","1483089572","1483089546","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089567","1483089568","1483089590","1483089567","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089568","1483089571","1483089590","1483089568","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089596","1483089598","1483089622","1483089596","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089606","1483089608","1483089630","1483089606","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089608","1483089609","1483089631","1483089608","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089660","1483089663","1483089692","1483089660","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089665","1483089666","1483089686","1483089665","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089676","1483089677","1483089697","1483089676","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089687","1483089688","1483089708","1483089687","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089693","1483089694","1483089714","1483089693","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089694","1483089697","1483089715","1483089694","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089698","1483089700","1483089716","1483089698","1","8","0","-1","16","2","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089704","1483089705","1483089727","1483089704","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089714","1483089715","1483089737","1483089714","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089716","1483089717","1483089739","1483089716","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089717","1483089718","1483089740","1483089717","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089738","1483089739","1483089757","1483089738","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089739","1483089740","1483089760","1483089739","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089749","1483089750","1483089778","1483089749","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089751","1483089753","1483089779","1483089751","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089775","1483089778","1483089807","1483089775","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089779","1483089780","1483089803","1483089779","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089803","1483089804","1483089828","1483089803","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089808","1483089809","1483089831","1483089808","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089817","1483089818","1483089839","1483089817","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089828","1483089829","1483089849","1483089828","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090026","1483090027","1483090056","1483090026","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091152","1483091153","1483091178","1483091152","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091169","1483091170","1483091190","1483091169","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091180","1483091181","1483091200","1483091180","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978739","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091292","1483091293","1483091315","1483091292","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091300","1483091301","1483091323","1483091300","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091321","1483091322","1483091341","1483091321","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978747","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091323","1483091325","1483091354","1483091323","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091359","1483091360","1483091387","1483091359","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091394","1483091395","1483091420","1483091394","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091500","1483091501","1483091520","1483091500","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091527","1483091529","1483091555","1483091527","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978863","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091650","1483091652","1483091670","1483091650","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978867","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091660","1483091662","1483091691","1483091660","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091692","1483091693","1483091712","1483091692","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091694","1483091695","1483091714","1483091694","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091701","1483091702","1483091718","1483091701","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091703","1483091705","1483091726","1483091703","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091712","1483091713","1483091731","1483091712","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091772","1483091773","1483091799","1483091772","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091774","1483091776","1483091797","1483091774","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091780","1483091782","1483091797","1483091780","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091791","1483091793","1483091816","1483091791","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091799","1483091801","1483091823","1483091799","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091810","1483091811","1483091828","1483091810","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091817","1483091818","1483091836","1483091817","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091841","1483091843","1483091872","1483091841","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091950","1483091951","1483091976","1483091950","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091954","1483091957","1483091979","1483091954","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092043","1483092044","1483092065","1483092043","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092069","1483092070","1483092092","1483092069","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092093","1483092096","1483092120","1483092093","1","8","0","-1","24","3","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979061","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092236","1483092237","1483092260","1483092236","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092312","1483092314","1483092339","1483092312","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979087","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092317","1483092318","1483092343","1483092317","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979097","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092353","1483092354","1483092383","1483092353","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979105","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092376","1483092379","1483092399","1483092376","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979107","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092384","1483092385","1483092408","1483092384","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979173","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092577","1483092578","1483092605","1483092577","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092660","1483092661","1483092688","1483092660","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092688","1483092689","1483092709","1483092688","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092690","1483092692","1483092716","1483092690","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979199","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092698","1483092699","1483092720","1483092698","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979201","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092706","1483092707","1483092734","1483092706","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092743","1483092745","1483092773","1483092743","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092773","1483092774","1483092796","1483092773","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979227","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092791","1483092794","1483092811","1483092791","1","8","0","-1","17","3","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092796","1483092797","1483092820","1483092796","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092827","1483092829","1483092849","1483092827","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092831","1483092832","1483092851","1483092831","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092852","1483092854","1483092880","1483092852","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092881","1483092884","1483092904","1483092881","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092882","1483092884","1483092909","1483092882","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092886","1483092887","1483092913","1483092886","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092911","1483092912","1483092939","1483092911","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092913","1483092915","1483092938","1483092913","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092916","1483092917","1483092936","1483092916","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092938","1483092939","1483092956","1483092938","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092972","1483092973","1483093000","1483092972","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092974","1483092976","1483092998","1483092974","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092979","1483092980","1483093002","1483092979","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092988","1483092989","1483093008","1483092988","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092996","1483092997","1483093021","1483092996","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092998","1483093000","1483093022","1483092998","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093000","1483093002","1483093018","1483093000","1","8","0","-1","16","2","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093008","1483093009","1483093035","1483093008","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093021","1483093022","1483093042","1483093021","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093023","1483093025","1483093041","1483093023","1","8","0","-1","16","2","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093036","1483093037","1483093052","1483093036","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093113","1483093116","1483093144","1483093113","1","8","0","-1","28","3","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093120","1483093121","1483093142","1483093120","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093122","1483093124","1483093141","1483093122","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093139","1483093141","1483093163","1483093139","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093391","1483093392","1483093421","1483093391","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093401","1483093402","1483093428","1483093401","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093658","1483093659","1483093685","1483093658","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094251","1483094252","1483094280","1483094251","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094349","1483094352","1483094371","1483094349","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094633","1483094634","1483094659","1483094633","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094719","1483094720","1483094749","1483094719","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094797","1483094798","1483094822","1483094797","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094946","1483094949","1483094975","1483094946","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095016","1483095017","1483095043","1483095016","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095133","1483095134","1483095159","1483095133","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095143","1483095144","1483095172","1483095143","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095158","1483095159","1483095188","1483095158","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095160","1483095162","1483095189","1483095160","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095189","1483095192","1483095218","1483095189","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095262","1483095264","1483095292","1483095262","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095282","1483095283","1483095311","1483095282","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095308","1483095309","1483095334","1483095308","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095418","1483095419","1483095446","1483095418","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095557","1483095558","1483095587","1483095557","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980033","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095665","1483095667","1483095695","1483095665","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095767","1483095768","1483095796","1483095767","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095795","1483095796","1483095824","1483095795","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095803","1483095804","1483095833","1483095803","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095901","1483095902","1483095929","1483095901","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096068","1483096069","1483096093","1483096068","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096126","1483096127","1483096154","1483096126","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096207","1483096208","1483096228","1483096207","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096225","1483096226","1483096253","1483096225","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980171","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096263","1483096264","1483096289","1483096263","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980331","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096995","1483096998","1483097027","1483096995","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980333","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097003","1483097004","1483097033","1483097003","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097153","1483097155","1483097183","1483097153","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097320","1483097321","1483097350","1483097320","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097596","1483097598","1483097625","1483097596","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097653","1483097655","1483097676","1483097653","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097810","1483097811","1483097840","1483097810","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097935","1483097938","1483097966","1483097935","1","8","0","-1","28","3","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098167","1483098168","1483098196","1483098167","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980649","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098170","1483098171","1483098200","1483098170","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098176","1483098178","1483098206","1483098176","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098310","1483098311","1483098340","1483098310","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098740","1483098741","1483098766","1483098740","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098988","1483098989","1483099013","1483098988","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099051","1483099052","1483099076","1483099051","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099062","1483099063","1483099091","1483099062","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099063","1483099066","1483099089","1483099063","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099075","1483099077","1483099105","1483099075","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099139","1483099140","1483099166","1483099139","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099246","1483099248","1483099273","1483099246","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099254","1483099255","1483099283","1483099254","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099357","1483099358","1483099384","1483099357","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099361","1483099364","1483099391","1483099361","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099379","1483099382","1483099409","1483099379","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980966","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099384","1483099385","1483099412","1483099384","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099392","1483099394","1483099421","1483099392","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099402","1483099403","1483099430","1483099402","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101174","1483101175","1483101196","1483101174","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101190","1483101191","1483101214","1483101190","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101196","1483101197","1483101221","1483101196","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101220","1483101221","1483101244","1483101220","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101286","1483101287","1483101314","1483101286","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101352","1483101353","1483101381","1483101352","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101433","1483101435","1483101463","1483101433","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101442","1483101443","1483101465","1483101442","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101501","1483101502","1483101527","1483101501","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101503","1483101505","1483101531","1483101503","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101509","1483101510","1483101539","1483101509","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101511","1483101513","1483101536","1483101511","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101569","1483101571","1483101598","1483101569","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101598","1483101599","1483101622","1483101598","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101628","1483101629","1483101653","1483101628","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101638","1483101639","1483101661","1483101638","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101642","1483101643","1483101667","1483101642","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101728","1483101729","1483101749","1483101728","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101761","1483101763","1483101792","1483101761","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101843","1483101844","1483101872","1483101843","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101858","1483101859","1483101883","1483101858","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101870","1483101873","1483101896","1483101870","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101873","1483101876","1483101896","1483101873","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101883","1483101884","1483101908","1483101883","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101885","1483101887","1483101911","1483101885","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101912","1483101913","1483101938","1483101912","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101931","1483101932","1483101960","1483101931","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102003","1483102004","1483102031","1483102003","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981605","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102051","1483102052","1483102078","1483102051","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102143","1483102145","1483102174","1483102143","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102175","1483102176","1483102201","1483102175","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102180","1483102181","1483102205","1483102180","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102181","1483102184","1483102213","1483102181","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102326","1483102328","1483102352","1483102326","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981703","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102353","1483102354","1483102380","1483102353","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981705","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102356","1483102357","1483102381","1483102356","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981731","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102441","1483102444","1483102466","1483102441","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102502","1483102504","1483102531","1483102502","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981747","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102506","1483102507","1483102531","1483102506","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102896","1483102897","1483102924","1483102896","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102917","1483102918","1483102941","1483102917","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102985","1483102986","1483103014","1483102985","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102987","1483102988","1483103016","1483102987","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102999","1483103000","1483103027","1483102999","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103004","1483103005","1483103024","1483103004","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103014","1483103015","1483103044","1483103014","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103019","1483103021","1483103044","1483103019","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103024","1483103025","1483103046","1483103024","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103078","1483103079","1483103106","1483103078","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103096","1483103098","1483103126","1483103096","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103146","1483103147","1483103176","1483103146","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103152","1483103153","1483103176","1483103152","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103170","1483103171","1483103193","1483103170","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103302","1483103303","1483103323","1483103302","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103307","1483103308","1483103329","1483103307","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103313","1483103314","1483103336","1483103313","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103383","1483103386","1483103406","1483103383","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982019","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103419","1483103420","1483103440","1483103419","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982025","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103441","1483103443","1483103472","1483103441","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982063","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103558","1483103560","1483103589","1483103558","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105045","1483105046","1483105075","1483105045","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105589","1483105590","1483105619","1483105589","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105590","1483105591","1483105620","1483105590","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105904","1483105905","1483105928","1483105904","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106680","1483106681","1483106710","1483106680","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982755","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106683","1483106684","1483106709","1483106683","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106744","1483106745","1483106768","1483106744","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106813","1483106814","1483106843","1483106813","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982800","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106839","1483106840","1483106867","1483106839","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107476","1483107477","1483107502","1483107476","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107503","1483107504","1483107529","1483107503","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107529","1483107530","1483107558","1483107529","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107693","1483107694","1483107718","1483107693","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107782","1483107784","1483107813","1483107782","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107841","1483107842","1483107869","1483107841","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983053","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107929","1483107930","1483107954","1483107929","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107965","1483107967","1483107993","1483107965","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108169","1483108170","1483108199","1483108169","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108255","1483108257","1483108279","1483108255","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108280","1483108282","1483108304","1483108280","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108280","1483108282","1483108303","1483108280","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108285","1483108288","1483108311","1483108285","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983187","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108377","1483108378","1483108404","1483108377","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108542","1483108543","1483108570","1483108542","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108592","1483108593","1483108621","1483108592","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108904","1483108906","1483108929","1483108904","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108929","1483108930","1483108959","1483108929","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108973","1483108975","1483109000","1483108973","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983341","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108974","1483108975","1483109002","1483108974","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109304","1483109306","1483109329","1483109304","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109369","1483109370","1483109394","1483109369","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109381","1483109382","1483109405","1483109381","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109383","1483109384","1483109413","1483109383","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109384","1483109385","1483109409","1483109384","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109392","1483109393","1483109416","1483109392","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109486","1483109487","1483109514","1483109486","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109488","1483109490","1483109513","1483109488","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109504","1483109505","1483109533","1483109504","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109515","1483109516","1483109539","1483109515","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109516","1483109518","1483109543","1483109516","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109534","1483109535","1483109557","1483109534","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109539","1483109540","1483109566","1483109539","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109640","1483109641","1483109664","1483109640","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109660","1483109661","1483109681","1483109660","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109664","1483109667","1483109690","1483109664","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109769","1483109770","1483109790","1483109769","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109790","1483109793","1483109822","1483109790","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109794","1483109796","1483109818","1483109794","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109907","1483109908","1483109934","1483109907","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110115","1483110118","1483110146","1483110115","1","8","0","-1","28","3","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111160","1483111161","1483111188","1483111160","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111901","1483111902","1483111929","1483111901","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111955","1483111956","1483111985","1483111955","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984025","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111986","1483111988","1483112010","1483111986","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984047","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112062","1483112063","1483112089","1483112062","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984067","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112124","1483112126","1483112150","1483112124","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112185","1483112186","1483112209","1483112185","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112330","1483112331","1483112353","1483112330","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112342","1483112343","1483112372","1483112342","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112373","1483112374","1483112400","1483112373","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112375","1483112377","1483112396","1483112375","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984171","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112445","1483112446","1483112469","1483112445","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112455","1483112456","1483112475","1483112455","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112458","1483112459","1483112476","1483112458","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112469","1483112470","1483112489","1483112469","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112578","1483112579","1483112603","1483112578","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112591","1483112592","1483112617","1483112591","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112679","1483112680","1483112708","1483112679","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112798","1483112801","1483112830","1483112798","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112849","1483112852","1483112874","1483112849","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112875","1483112876","1483112897","1483112875","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112881","1483112882","1483112904","1483112881","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113069","1483113070","1483113091","1483113069","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113159","1483113160","1483113182","1483113159","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113177","1483113178","1483113198","1483113177","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113228","1483113229","1483113246","1483113228","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113234","1483113235","1483113251","1483113234","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113246","1483113249","1483113276","1483113246","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113277","1483113278","1483113298","1483113277","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113281","1483113282","1483113302","1483113281","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113288","1483113289","1483113312","1483113288","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113351","1483113352","1483113378","1483113351","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113363","1483113364","1483113393","1483113363","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113764","1483113765","1483113786","1483113764","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113770","1483113771","1483113796","1483113770","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113773","1483113774","1483113793","1483113773","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113981","1483113983","1483114012","1483113981","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114099","1483114100","1483114123","1483114099","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114138","1483114139","1483114168","1483114138","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114142","1483114143","1483114168","1483114142","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114152","1483114153","1483114174","1483114152","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114169","1483114172","1483114201","1483114169","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114173","1483114174","1483114203","1483114173","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114276","1483114277","1483114300","1483114276","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114279","1483114280","1483114304","1483114279","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114305","1483114306","1483114325","1483114305","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114307","1483114309","1483114329","1483114307","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114322","1483114323","1483114348","1483114322","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114330","1483114331","1483114360","1483114330","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114404","1483114406","1483114435","1483114404","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114418","1483114419","1483114440","1483114418","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114421","1483114422","1483114449","1483114421","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114470","1483114472","1483114501","1483114470","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114485","1483114488","1483114515","1483114485","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114525","1483114526","1483114551","1483114525","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114616","1483114617","1483114641","1483114616","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114621","1483114622","1483114643","1483114621","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114644","1483114645","1483114673","1483114644","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114731","1483114732","1483114757","1483114731","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114809","1483114810","1483114834","1483114809","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114815","1483114816","1483114837","1483114815","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114816","1483114819","1483114842","1483114816","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114896","1483114898","1483114927","1483114896","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115132","1483115133","1483115152","1483115132","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115189","1483115190","1483115213","1483115189","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115190","1483115191","1483115218","1483115190","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115220","1483115223","1483115246","1483115220","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115620","1483115621","1483115646","1483115620","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115640","1483115641","1483115660","1483115640","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115652","1483115653","1483115680","1483115652","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115716","1483115717","1483115735","1483115716","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115823","1483115825","1483115854","1483115823","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115928","1483115929","1483115948","1483115928","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115930","1483115932","1483115951","1483115930","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116012","1483116013","1483116042","1483116012","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116021","1483116022","1483116041","1483116021","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116036","1483116037","1483116060","1483116036","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116042","1483116043","1483116069","1483116042","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116104","1483116107","1483116131","1483116104","1","8","0","-1","24","3","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116168","1483116170","1483116187","1483116168","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116188","1483116189","1483116218","1483116188","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116239","1483116240","1483116260","1483116239","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116240","1483116243","1483116264","1483116240","1","8","0","-1","21","3","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116247","1483116248","1483116270","1483116247","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116265","1483116266","1483116283","1483116265","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116268","1483116269","1483116296","1483116268","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116271","1483116272","1483116295","1483116271","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116279","1483116280","1483116298","1483116279","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116283","1483116284","1483116311","1483116283","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116289","1483116290","1483116309","1483116289","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116296","1483116297","1483116313","1483116296","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116297","1483116298","1483116320","1483116297","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116312","1483116313","1483116336","1483116312","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116314","1483116316","1483116341","1483116314","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116319","1483116320","1483116348","1483116319","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116328","1483116334","1483116354","1483116328","1","8","0","-1","20","6","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116330","1483116358","1483116380","1483116330","1","8","0","-1","22","28","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["167841","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056704","1483056705","1483056722","1483056704","1","8","0","-1","17","1","136","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168280","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059999","1483060000","1483060029","1483059999","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168350","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060470","1483060471","1483060499","1483060470","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168371","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060638","1483060639","1483060655","1483060638","1","8","0","-1","16","1","128","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169012","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065080","1483065081","1483065109","1483065080","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169173","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066096","1483066099","1483066122","1483066096","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169183","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066130","1483066131","1483066150","1483066130","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169377","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067913","1483067914","1483067929","1483067913","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170161","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072220","1483072221","1483072240","1483072220","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170291","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073039","1483073040","1483073058","1483073039","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170554","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074635","1483074638","1483074665","1483074635","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170859","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076959","1483076960","1483076982","1483076959","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171276","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080089","1483080090","1483080104","1483080089","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171372","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080612","1483080613","1483080626","1483080612","1","8","0","-1","13","1","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171391","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080696","1483080698","1483080719","1483080696","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171554","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081686","1483081687","1483081715","1483081686","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171664","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082280","1483082281","1483082305","1483082280","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171676","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082350","1483082351","1483082374","1483082350","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171775","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083175","1483083176","1483083204","1483083175","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171839","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083549","1483083550","1483083564","1483083549","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171891","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083757","1483083758","1483083775","1483083757","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172214","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085474","1483085475","1483085489","1483085474","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172364","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086299","1483086300","1483086320","1483086299","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172386","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086394","1483086395","1483086408","1483086394","1","8","0","-1","13","1","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172394","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086414","1483086415","1483086437","1483086414","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172414","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086506","1483086507","1483086533","1483086506","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172497","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086869","1483086870","1483086891","1483086869","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172593","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087493","1483087494","1483087518","1483087493","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172666","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087949","1483087950","1483087968","1483087949","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172685","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088017","1483088018","1483088034","1483088017","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172755","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088386","1483088387","1483088402","1483088386","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172985","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089779","1483089780","1483089795","1483089779","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173021","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089939","1483089940","1483089959","1483089939","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173066","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090173","1483090174","1483090197","1483090173","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173208","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091281","1483091282","1483091302","1483091281","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173218","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091326","1483091327","1483091350","1483091326","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173353","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092093","1483092094","1483092110","1483092093","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173513","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093000","1483093001","1483093025","1483093000","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173525","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093043","1483093044","1483093065","1483093043","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173809","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095158","1483095159","1483095183","1483095158","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174061","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097153","1483097154","1483097177","1483097153","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174190","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098102","1483098103","1483098131","1483098102","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174835","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103033","1483103034","1483103051","1483103033","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175480","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108246","1483108247","1483108265","1483108246","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175513","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108405","1483108406","1483108426","1483108405","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176073","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112848","1483112849","1483112876","1483112848","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176230","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114048","1483114049","1483114067","1483114048","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176239","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114100","1483114101","1483114121","1483114100","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176541","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116042","1483116043","1483116070","1483116042","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1004480","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483059241","1483059266","1483059279","1483059241","1","8","0","-1","13","25","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004562","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483060223","1483060227","1483060234","1483060223","1","8","0","-1","7","4","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004584","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483060445","1483060468","1483060491","1483060445","1","8","0","-1","23","23","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004750","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483062978","1483062992","1483063008","1483062978","1","8","0","-1","16","14","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005003","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483066696","1483066718","1483066747","1483066696","1","8","0","-1","29","22","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005034","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067310","1483067319","1483067336","1483067310","1","8","0","-1","17","9","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005049","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067665","1483067687","1483067695","1483067665","1","8","0","-1","8","22","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005212","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483069489","1483069490","1483069502","1483069489","1","8","0","-1","12","1","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005246","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483069957","1483069971","1483069987","1483069957","1","8","0","-1","16","14","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005404","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483072118","1483072135","1483072163","1483072118","1","8","0","-1","28","17","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005415","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483072355","1483072375","1483072393","1483072355","1","8","0","-1","18","20","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005545","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483074149","1483074178","1483074205","1483074149","1","8","0","-1","27","29","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005594","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483074874","1483074899","1483074928","1483074874","1","8","0","-1","29","25","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005688","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483075965","1483075981","1483075993","1483075965","1","8","0","-1","12","16","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005713","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483076335","1483076342","1483076349","1483076335","1","8","0","-1","7","7","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005818","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483077883","1483077904","1483077928","1483077883","1","8","0","-1","24","21","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005819","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483077896","1483077904","1483077913","1483077896","1","8","0","-1","9","8","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005859","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483078372","1483078385","1483078394","1483078372","1","8","0","-1","9","13","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005903","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483078840","1483078866","1483078875","1483078840","1","8","0","-1","9","26","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006074","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483081016","1483081030","1483081036","1483081016","1","8","0","-1","6","14","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006410","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483085697","1483085717","1483085745","1483085697","1","8","0","-1","28","20","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006558","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483087856","1483087881","1483087910","1483087856","1","8","0","-1","29","25","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006789","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483091097","1483091126","1483091133","1483091097","1","8","0","-1","7","29","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006790","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483091114","1483091126","1483091152","1483091114","1","8","0","-1","26","12","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006937","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093037","1483093049","1483093078","1483093037","1","8","0","-1","29","12","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006996","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093764","1483093770","1483093792","1483093764","1","8","0","-1","22","6","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007082","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483094961","1483094972","1483094983","1483094961","1","8","0","-1","11","11","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007135","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483095684","1483095693","1483095721","1483095684","1","8","0","-1","28","9","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007216","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483096750","1483096774","1483096803","1483096750","1","8","0","-1","29","24","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007218","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483096772","1483096774","1483096786","1483096772","1","8","0","-1","12","2","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007275","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483097363","1483097375","1483097393","1483097363","1","8","0","-1","18","12","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007732","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483104105","1483104107","1483104113","1483104105","1","8","0","-1","6","2","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008017","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483108053","1483108074","1483108081","1483108053","1","8","0","-1","7","21","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008228","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483111192","1483111200","1483111210","1483111192","1","8","0","-1","10","8","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008273","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483111774","1483111801","1483111815","1483111774","1","8","0","-1","14","27","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008309","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483112273","1483112282","1483112289","1483112273","1","8","0","-1","7","9","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008418","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483113696","1483113724","1483113752","1483113696","1","8","0","-1","28","28","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008445","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483114298","1483114325","1483114331","1483114298","1","8","0","-1","6","27","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008582","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483116344","1483116368","1483116392","1483116344","1","8","0","-1","24","24","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008649","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483116821","1483116849","1483116862","1483116821","1","8","0","-1","13","28","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008917","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483119118","1483119133","1483119141","1483119118","1","8","0","-1","8","15","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008964","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483119492","1483119493","1483119511","1483119492","1","8","0","-1","18","1","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008993","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483119707","1483119733","1483119761","1483119707","1","8","0","-1","28","26","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009356","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483123450","1483123458","1483123466","1483123450","1","8","0","-1","8","8","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009467","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124756","1483124780","1483124809","1483124756","1","8","0","-1","29","24","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009584","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126320","1483126342","1483126351","1483126320","1","8","0","-1","9","22","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009600","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126556","1483126582","1483126590","1483126556","1","8","0","-1","8","26","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009718","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483128254","1483128265","1483128276","1483128254","1","8","0","-1","11","11","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010004","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483131847","1483131869","1483131889","1483131847","1","8","0","-1","20","22","160","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010099","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133181","1483133191","1483133203","1483133181","1","8","0","-1","12","10","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010142","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133648","1483133672","1483133677","1483133648","1","8","0","-1","5","24","40","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010190","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483134377","1483134392","1483134400","1483134377","1","8","0","-1","8","15","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010215","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483134742","1483134753","1483134780","1483134742","1","8","0","-1","27","11","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010244","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483135095","1483135113","1483135134","1483135095","1","8","0","-1","21","18","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010306","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483135813","1483135834","1483135860","1483135813","1","8","0","-1","26","21","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010658","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140620","1483140640","1483140656","1483140620","1","8","0","-1","16","20","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010675","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140865","1483140881","1483140905","1483140865","1","8","0","-1","24","16","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009156","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483121371","1483121375","1483121404","1483121371","1","8","0","-1","29","4","232","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006471","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483086629","1483086630","1483086652","1483086629","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2281771","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114012","1483114013","1483114023","1483114012","1","12","0","-1","10","1","120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281976","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115748","1483115749","1483115757","1483115748","1","12","0","-1","8","1","96","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283356","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127270","1483127271","1483127282","1483127270","1","12","0","-1","11","1","132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284510","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138619","1483138620","1483138631","1483138619","1","12","0","-1","11","1","132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284670","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140308","1483140309","1483140321","1483140308","1","12","0","-1","12","1","144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991371","Mortorq","UTC","","Martin, Crag","Screwdriver","cheese","1483129165","1483129170","1483129172","1483129165","1","20","0","-1","2","5","40","0","0:0","COMPLETED","1","62.50Gn","259200","panettone","Geosciences","Earth Sciences","Geophysics"],["991464","Mortorq","UTC","","Martin, Crag","Screwdriver","cheese","1483129587","1483129591","1483129595","1483129587","1","20","0","-1","4","4","80","0","0:0","COMPLETED","1","62.50Gn","259200","panettone","Geosciences","Earth Sciences","Geophysics"],["1008512","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","banana-cream","1483115256","1483115259","1483115275","1483115256","1","20","0","-1","16","3","320","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1008485","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483114756","1483114759","1483114773","1483114756","1","20","0","-1","14","3","280","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1008494","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483114970","1483114974","1483114988","1483114970","1","20","0","-1","14","4","280","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1007845","Posidriv","UTC","","Warbler, Sardinian","Screwdriver","apple","1483105711","1483105714","1483105719","1483105711","2","16","0","-1","5","3","80","0","0:0","COMPLETED","16","40000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6108348","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","green-grape","1483057648","1483057651","1483057672","1483057648","2","24","0","-1","21","3","504","0","0:0","COMPLETED","24","2147486448Mn","3600","potbrood","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["6108751","Robertson","UTC","","Moorhen","Screwdriver","curry","1483072813","1483072876","1483072889","1483072813","1","1","0","-1","13","63","13","0","0:0","COMPLETED","1","2147486448Mn","18000","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108752","Robertson","UTC","","Moorhen","Screwdriver","curry","1483072827","1483072876","1483072890","1483072827","1","1","0","-1","14","49","14","0","0:0","COMPLETED","1","2147486448Mn","19800","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111037[50]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483126383","1483126395","1483125913","1","1","0","-1","12","471","12","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[55]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483126383","1483126409","1483125913","1","1","0","-1","26","471","26","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[119]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483126944","1483126962","1483125913","1","1","0","-1","18","1032","18","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[120]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483126944","1483126962","1483125913","1","1","0","-1","18","1032","18","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[141]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127093","1483127107","1483125913","1","1","0","-1","14","1181","14","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[185]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127515","1483127542","1483125913","1","1","0","-1","27","1603","27","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[186]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127515","1483127526","1483125913","1","1","0","-1","11","1603","11","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[198]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127515","1483127530","1483125913","1","1","0","-1","15","1603","15","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[203]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127653","1483127676","1483125913","1","1","0","-1","23","1741","23","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[2]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130279","1483130306","1483128563","1","1","0","-1","27","1719","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112235","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483134122","1483134408","1483134426","1483134122","1","1","0","-1","18","286","18","0","0:0","COMPLETED","1","2147531648Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112280","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483134462","1483134542","1483134563","1483134462","1","1","0","-1","21","80","21","0","0:0","COMPLETED","1","2147486448Mn","3600","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[2]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135712","1483135739","1483135648","1","1","0","-1","27","64","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[10]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135840","1483135853","1483135648","1","1","0","-1","13","192","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[15]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135840","1483135868","1483135648","1","1","0","-1","28","192","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[16]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135840","1483135866","1483135648","1","1","0","-1","26","192","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[17]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135968","1483135989","1483135648","1","1","0","-1","21","320","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[22]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135968","1483135997","1483135648","1","1","0","-1","29","320","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[25]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483136098","1483136123","1483135648","1","1","0","-1","25","450","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[37]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483136228","1483136255","1483135648","1","1","0","-1","27","580","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[45]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483136627","1483136638","1483135648","1","1","0","-1","11","979","11","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[50]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483136905","1483136908","1483135648","1","1","0","-1","3","1257","3","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[52]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137041","1483137058","1483135648","1","1","0","-1","17","1393","17","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[55]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137176","1483137195","1483135648","1","1","0","-1","19","1528","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[61]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137306","1483137334","1483135648","1","1","0","-1","28","1658","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[64]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137306","1483137335","1483135648","1","1","0","-1","29","1658","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[66]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137306","1483137335","1483135648","1","1","0","-1","29","1658","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[78]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137438","1483137467","1483135648","1","1","0","-1","29","1790","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[84]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137438","1483137464","1483135648","1","1","0","-1","26","1790","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6110915[4]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122066","1483122574","1483122578","1483122068","1","1","0","-1","4","508","4","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110916[4]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122115","1483122967","1483122975","1483122115","1","1","0","-1","8","852","8","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110916[7]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122115","1483123513","1483123523","1483122115","1","1","0","-1","10","1398","10","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110917[4]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122187","1483123513","1483123523","1483122187","1","1","0","-1","10","1326","10","0","0:0","COMPLETED","1","8000Mn","72000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110917[7]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122187","1483123513","1483123525","1483122187","1","1","0","-1","12","1326","12","0","0:0","COMPLETED","1","8000Mn","72000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110918[4]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122225","1483123648","1483123658","1483122231","1","1","0","-1","10","1423","10","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110918[7]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122225","1483123789","1483123798","1483122231","1","1","0","-1","9","1564","9","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["985392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116330","1483116373","1483116394","1483116330","1","8","0","-1","21","43","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116330","1483116379","1483116400","1483116330","1","8","0","-1","21","49","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116331","1483116380","1483116401","1483116331","1","8","0","-1","21","49","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116333","1483116428","1483116457","1483116333","1","8","0","-1","29","95","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116333","1483116460","1483116485","1483116333","1","8","0","-1","25","127","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116336","1483116510","1483116539","1483116336","1","8","0","-1","29","174","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116336","1483116531","1483116551","1483116336","1","8","0","-1","20","195","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116340","1483116569","1483116592","1483116340","1","8","0","-1","23","229","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116340","1483116593","1483116620","1483116340","1","8","0","-1","27","253","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116341","1483116599","1483116625","1483116341","1","8","0","-1","26","258","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116341","1483116606","1483116627","1483116341","1","8","0","-1","21","265","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116342","1483116625","1483116647","1483116342","1","8","0","-1","22","283","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116342","1483116647","1483116670","1483116342","1","8","0","-1","23","305","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116344","1483116683","1483116711","1483116344","1","8","0","-1","28","339","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116345","1483116705","1483116729","1483116345","1","8","0","-1","24","360","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116347","1483116763","1483116791","1483116347","1","8","0","-1","28","416","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116347","1483116773","1483116801","1483116347","1","8","0","-1","28","426","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116348","1483116786","1483116815","1483116348","1","8","0","-1","29","438","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116351","1483116857","1483116878","1483116351","1","8","0","-1","21","506","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116352","1483116896","1483116914","1483116352","1","8","0","-1","18","544","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116353","1483116914","1483116943","1483116353","1","8","0","-1","29","561","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116353","1483116915","1483116938","1483116353","1","8","0","-1","23","562","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116354","1483116922","1483116941","1483116354","1","8","0","-1","19","568","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116354","1483116924","1483116945","1483116354","1","8","0","-1","21","570","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116355","1483116933","1483116962","1483116355","1","8","0","-1","29","578","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116357","1483116962","1483116988","1483116357","1","8","0","-1","26","605","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116358","1483116983","1483117004","1483116358","1","8","0","-1","21","625","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116358","1483116989","1483117018","1483116358","1","8","0","-1","29","631","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116359","1483117005","1483117026","1483116359","1","8","0","-1","21","646","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116359","1483117006","1483117035","1483116359","1","8","0","-1","29","647","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116360","1483117014","1483117033","1483116360","1","8","0","-1","19","654","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116360","1483117019","1483117048","1483116360","1","8","0","-1","29","659","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116363","1483117036","1483117061","1483116363","1","8","0","-1","25","673","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116363","1483117049","1483117073","1483116363","1","8","0","-1","24","686","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116363","1483117061","1483117080","1483116363","1","8","0","-1","19","698","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116364","1483117065","1483117092","1483116364","1","8","0","-1","27","701","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116364","1483117066","1483117091","1483116364","1","8","0","-1","25","702","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116365","1483117071","1483117090","1483116365","1","8","0","-1","19","706","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116365","1483117074","1483117096","1483116365","1","8","0","-1","22","709","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116365","1483117076","1483117096","1483116365","1","8","0","-1","20","711","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116366","1483117081","1483117099","1483116366","1","8","0","-1","18","715","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116366","1483117091","1483117118","1483116366","1","8","0","-1","27","725","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116366","1483117092","1483117117","1483116366","1","8","0","-1","25","726","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116368","1483117118","1483117142","1483116368","1","8","0","-1","24","750","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116369","1483117119","1483117148","1483116369","1","8","0","-1","29","750","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116369","1483117128","1483117147","1483116369","1","8","0","-1","19","759","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116371","1483117146","1483117163","1483116371","1","8","0","-1","17","775","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116374","1483117176","1483117205","1483116374","1","8","0","-1","29","802","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116374","1483117178","1483117197","1483116374","1","8","0","-1","19","804","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116375","1483117181","1483117203","1483116375","1","8","0","-1","22","806","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116375","1483117183","1483117209","1483116375","1","8","0","-1","26","808","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116376","1483117199","1483117222","1483116376","1","8","0","-1","23","823","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985719","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116377","1483117205","1483117225","1483116377","1","8","0","-1","20","828","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985721","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116377","1483117210","1483117227","1483116377","1","8","0","-1","17","833","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116378","1483117214","1483117234","1483116378","1","8","0","-1","20","836","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116378","1483117222","1483117246","1483116378","1","8","0","-1","24","844","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116380","1483117235","1483117261","1483116380","1","8","0","-1","26","855","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116381","1483117246","1483117270","1483116381","1","8","0","-1","24","865","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116381","1483117257","1483117284","1483116381","1","8","0","-1","27","876","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116381","1483117262","1483117288","1483116381","1","8","0","-1","26","881","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116382","1483117280","1483117309","1483116382","1","8","0","-1","29","898","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116382","1483117285","1483117313","1483116382","1","8","0","-1","28","903","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116393","1483117514","1483117540","1483116393","1","8","0","-1","26","1121","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116413","1483118095","1483118124","1483116413","1","8","0","-1","29","1682","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116414","1483118102","1483118129","1483116414","1","8","0","-1","27","1688","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116422","1483118206","1483118227","1483116422","1","8","0","-1","21","1784","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176671","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116339","1483116416","1483116441","1483116339","1","8","0","-1","25","77","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176673","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116339","1483116441","1483116465","1483116339","1","8","0","-1","24","102","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176675","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116339","1483116465","1483116487","1483116339","1","8","0","-1","22","126","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176677","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116339","1483116487","1483116508","1483116339","1","8","0","-1","21","148","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176726","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116352","1483116508","1483116522","1483116352","1","8","0","-1","14","156","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176734","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116353","1483116552","1483116577","1483116353","1","8","0","-1","25","199","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176737","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116354","1483116578","1483116593","1483116354","1","8","0","-1","15","224","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176741","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116355","1483116593","1483116612","1483116355","1","8","0","-1","19","238","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176746","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116356","1483116612","1483116636","1483116356","1","8","0","-1","24","256","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176750","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116357","1483116636","1483116656","1483116357","1","8","0","-1","20","279","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176754","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116357","1483116657","1483116677","1483116357","1","8","0","-1","20","300","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176757","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116358","1483116677","1483116698","1483116358","1","8","0","-1","21","319","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176762","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116359","1483116698","1483116712","1483116359","1","8","0","-1","14","339","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176766","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116360","1483116712","1483116724","1483116360","1","8","0","-1","12","352","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176770","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116360","1483116725","1483116745","1483116360","1","8","0","-1","20","365","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176777","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116362","1483116780","1483116804","1483116362","1","8","0","-1","24","418","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176781","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116362","1483116805","1483116821","1483116362","1","8","0","-1","16","443","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176785","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116363","1483116822","1483116836","1483116363","1","8","0","-1","14","459","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176788","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116364","1483116837","1483116849","1483116364","1","8","0","-1","12","473","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176792","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116364","1483116849","1483116874","1483116364","1","8","0","-1","25","485","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176796","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116365","1483116874","1483116896","1483116365","1","8","0","-1","22","509","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176800","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116366","1483116896","1483116912","1483116366","1","8","0","-1","16","530","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176804","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116367","1483116912","1483116932","1483116367","1","8","0","-1","20","545","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176815","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116369","1483117033","1483117054","1483116369","1","8","0","-1","21","664","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176819","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116369","1483117054","1483117074","1483116369","1","8","0","-1","20","685","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176822","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116370","1483117075","1483117094","1483116370","1","8","0","-1","19","705","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176826","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116371","1483117095","1483117121","1483116371","1","8","0","-1","26","724","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176830","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116372","1483117121","1483117134","1483116372","1","8","0","-1","13","749","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176834","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116372","1483117135","1483117164","1483116372","1","8","0","-1","29","763","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176837","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116373","1483117164","1483117193","1483116373","1","8","0","-1","29","791","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176842","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116374","1483117193","1483117219","1483116374","1","8","0","-1","26","819","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176846","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116375","1483117220","1483117238","1483116375","1","8","0","-1","18","845","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176850","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116375","1483117239","1483117254","1483116375","1","8","0","-1","15","864","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176853","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116376","1483117254","1483117274","1483116376","1","8","0","-1","20","878","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176857","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116377","1483117274","1483117294","1483116377","1","8","0","-1","20","897","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176862","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116378","1483117294","1483117306","1483116378","1","8","0","-1","12","916","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176866","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116378","1483117306","1483117324","1483116378","1","8","0","-1","18","928","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176870","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116379","1483117325","1483117346","1483116379","1","8","0","-1","21","946","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176875","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116380","1483117347","1483117365","1483116380","1","8","0","-1","18","967","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176880","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116381","1483117366","1483117395","1483116381","1","8","0","-1","29","985","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176891","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116383","1483117467","1483117495","1483116383","1","8","0","-1","28","1084","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176895","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116384","1483117495","1483117517","1483116384","1","8","0","-1","22","1111","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176901","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116385","1483117556","1483117582","1483116385","1","8","0","-1","26","1171","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176921","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116389","1483117738","1483117767","1483116389","1","8","0","-1","29","1349","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176943","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116393","1483117976","1483117994","1483116393","1","8","0","-1","18","1583","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176952","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116395","1483118026","1483118048","1483116395","1","8","0","-1","22","1631","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176963","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116397","1483118136","1483118165","1483116397","1","8","0","-1","29","1739","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1004250","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483056101","1483056141","1483056160","1483056101","1","8","0","-1","19","40","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004277","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483056525","1483056621","1483056636","1483056525","1","8","0","-1","15","96","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004291","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483056675","1483056742","1483056759","1483056675","1","8","0","-1","17","67","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004332","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483057243","1483057343","1483057358","1483057243","1","8","0","-1","15","100","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004336","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483057290","1483057343","1483057371","1483057290","1","8","0","-1","28","53","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004376","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483057838","1483057943","1483057950","1483057838","1","8","0","-1","7","105","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004379","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483057938","1483058064","1483058077","1483057938","1","8","0","-1","13","126","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004392","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058149","1483058184","1483058196","1483058149","1","8","0","-1","12","35","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004416","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058366","1483058424","1483058434","1483058366","1","8","0","-1","10","58","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004417","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058388","1483058424","1483058451","1483058388","1","8","0","-1","27","36","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004425","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058553","1483058665","1483058683","1483058553","1","8","0","-1","18","112","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004427","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058577","1483058665","1483058694","1483058577","1","8","0","-1","29","88","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004428","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058587","1483058665","1483058691","1483058587","1","8","0","-1","26","78","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004435","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058669","1483058785","1483058804","1483058669","1","8","0","-1","19","116","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004449","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058865","1483058905","1483058916","1483058865","1","8","0","-1","11","40","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004450","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058878","1483059025","1483059033","1483058878","1","8","0","-1","8","147","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004486","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483059270","1483059386","1483059402","1483059270","1","8","0","-1","16","116","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004491","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483059329","1483059386","1483059399","1483059329","1","8","0","-1","13","57","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004547","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483060049","1483060107","1483060116","1483060049","1","8","0","-1","9","58","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004637","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483061076","1483061189","1483061201","1483061076","1","8","0","-1","12","113","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004666","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483061431","1483061549","1483061559","1483061431","1","8","0","-1","10","118","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004669","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483061467","1483061549","1483061561","1483061467","1","8","0","-1","12","82","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004689","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483061885","1483062030","1483062052","1483061885","1","8","0","-1","22","145","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004747","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483062889","1483062992","1483062998","1483062889","1","8","0","-1","6","103","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004761","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483063074","1483063112","1483063127","1483063074","1","8","0","-1","15","38","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004777","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483063256","1483063352","1483063374","1483063256","1","8","0","-1","22","96","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004778","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483063285","1483063352","1483063380","1483063285","1","8","0","-1","28","67","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004801","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483063607","1483063713","1483063728","1483063607","1","8","0","-1","15","106","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004820","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483064010","1483064073","1483064082","1483064010","1","8","0","-1","9","63","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004825","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483064105","1483064193","1483064215","1483064105","1","8","0","-1","22","88","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004870","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483064980","1483065035","1483065042","1483064980","1","8","0","-1","7","55","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004911","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483065443","1483065516","1483065528","1483065443","1","8","0","-1","12","73","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004946","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483065792","1483065876","1483065886","1483065792","1","8","0","-1","10","84","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004973","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483066153","1483066237","1483066261","1483066153","1","8","0","-1","24","84","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004974","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483066176","1483066237","1483066260","1483066176","1","8","0","-1","23","61","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004998","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483066653","1483066718","1483066725","1483066653","1","8","0","-1","7","65","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005009","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483066784","1483066838","1483066854","1483066784","1","8","0","-1","16","54","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005048","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067639","1483067687","1483067694","1483067639","1","8","0","-1","7","48","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005052","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067743","1483067807","1483067820","1483067743","1","8","0","-1","13","64","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005070","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067809","1483067927","1483067931","1483067809","1","8","0","-1","4","118","32","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005108","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483068015","1483068168","1483068194","1483068015","1","8","0","-1","26","153","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005112","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483068061","1483068168","1483068194","1483068061","1","8","0","-1","26","107","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005122","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483068217","1483068288","1483068296","1483068217","1","8","0","-1","8","71","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005166","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483068901","1483069009","1483069015","1483068901","1","8","0","-1","6","108","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005169","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483068963","1483069009","1483069028","1483068963","1","8","0","-1","19","46","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005218","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483069540","1483069611","1483069638","1483069540","1","8","0","-1","27","71","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005255","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483070141","1483070212","1483070235","1483070141","1","8","0","-1","23","71","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005281","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483070590","1483070692","1483070708","1483070590","1","8","0","-1","16","102","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005312","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483071021","1483071053","1483071061","1483071021","1","8","0","-1","8","32","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005344","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483071368","1483071413","1483071435","1483071368","1","8","0","-1","22","45","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005364","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483071549","1483071774","1483071780","1483071549","1","8","0","-1","6","225","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005369","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483071600","1483071654","1483071673","1483071600","1","8","0","-1","19","54","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005388","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483071896","1483072014","1483072026","1483071896","1","8","0","-1","12","118","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005413","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483072312","1483072375","1483072388","1483072312","1","8","0","-1","13","63","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005458","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483073011","1483073096","1483073110","1483073011","1","8","0","-1","14","85","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005488","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483073442","1483073577","1483073585","1483073442","1","8","0","-1","8","135","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005498","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483073598","1483073697","1483073725","1483073598","1","8","0","-1","28","99","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005544","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483074136","1483074178","1483074186","1483074136","1","8","0","-1","8","42","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005589","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483074788","1483074899","1483074907","1483074788","1","8","0","-1","8","111","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005621","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483075190","1483075260","1483075269","1483075190","1","8","0","-1","9","70","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005677","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483075805","1483075981","1483075990","1483075805","1","8","0","-1","9","176","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005678","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483075845","1483075981","1483076004","1483075845","1","8","0","-1","23","136","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005703","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483076140","1483076222","1483076233","1483076140","1","8","0","-1","11","82","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005711","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483076250","1483076342","1483076365","1483076250","1","8","0","-1","23","92","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005723","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483076487","1483076582","1483076603","1483076487","1","8","0","-1","21","95","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005767","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483077100","1483077303","1483077315","1483077100","1","8","0","-1","12","203","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005781","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483077284","1483077424","1483077438","1483077284","1","8","0","-1","14","140","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005830","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483078028","1483078145","1483078156","1483078028","1","8","0","-1","11","117","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005839","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483078162","1483078265","1483078281","1483078162","1","8","0","-1","16","103","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005958","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483079410","1483079467","1483079475","1483079410","1","8","0","-1","8","57","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005973","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483079569","1483079707","1483079713","1483079569","1","8","0","-1","6","138","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006022","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483080315","1483080429","1483080439","1483080315","1","8","0","-1","10","114","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006027","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483080361","1483080429","1483080457","1483080361","1","8","0","-1","28","68","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006115","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483081557","1483081630","1483081638","1483081557","1","8","0","-1","8","73","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006154","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483082191","1483082232","1483082247","1483082191","1","8","0","-1","15","41","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006175","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483082587","1483082712","1483082720","1483082587","1","8","0","-1","8","125","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006176","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483082629","1483082712","1483082732","1483082629","1","8","0","-1","20","83","160","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006236","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483083204","1483083313","1483083337","1483083204","1","8","0","-1","24","109","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006240","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483083234","1483083313","1483083322","1483083234","1","8","0","-1","9","79","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006282","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483083976","1483084035","1483084049","1483083976","1","8","0","-1","14","59","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006335","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483084716","1483084756","1483084764","1483084716","1","8","0","-1","8","40","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006336","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483084730","1483084876","1483084890","1483084730","1","8","0","-1","14","146","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006378","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483085281","1483085357","1483085364","1483085281","1","8","0","-1","7","76","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006392","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483085407","1483085477","1483085484","1483085407","1","8","0","-1","7","70","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006406","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483085605","1483085717","1483085746","1483085605","1","8","0","-1","29","112","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006408","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483085657","1483085717","1483085735","1483085657","1","8","0","-1","18","60","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006446","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483086227","1483086318","1483086328","1483086227","1","8","0","-1","10","91","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006469","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483086591","1483086679","1483086707","1483086591","1","8","0","-1","28","88","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006501","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483087091","1483087160","1483087166","1483087091","1","8","0","-1","6","69","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006546","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483087587","1483087761","1483087771","1483087587","1","8","0","-1","10","174","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006559","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483087896","1483088001","1483088008","1483087896","1","8","0","-1","7","105","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006581","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483088172","1483088242","1483088248","1483088172","1","8","0","-1","6","70","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006595","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483088376","1483088482","1483088491","1483088376","1","8","0","-1","9","106","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006636","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483088987","1483089083","1483089092","1483088987","1","8","0","-1","9","96","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006702","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483089676","1483089804","1483089815","1483089676","1","8","0","-1","11","128","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006726","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483090129","1483090164","1483090185","1483090129","1","8","0","-1","21","35","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006737","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483090372","1483090405","1483090418","1483090372","1","8","0","-1","13","33","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006756","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483090570","1483090645","1483090674","1483090570","1","8","0","-1","29","75","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006793","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483091130","1483091246","1483091268","1483091130","1","8","0","-1","22","116","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006796","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483091146","1483091246","1483091268","1483091146","1","8","0","-1","22","100","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006837","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483091596","1483091727","1483091735","1483091596","1","8","0","-1","8","131","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006890","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483092375","1483092448","1483092454","1483092375","1","8","0","-1","6","73","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006922","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483092863","1483092929","1483092935","1483092863","1","8","0","-1","6","66","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006946","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093204","1483093289","1483093298","1483093204","1","8","0","-1","9","85","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006951","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093247","1483093289","1483093296","1483093247","1","8","0","-1","7","42","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006969","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093427","1483093530","1483093540","1483093427","1","8","0","-1","10","103","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006971","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093490","1483093530","1483093538","1483093490","1","8","0","-1","8","40","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006997","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093775","1483093890","1483093898","1483093775","1","8","0","-1","8","115","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007036","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483094132","1483094251","1483094263","1483094132","1","8","0","-1","12","119","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007085","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483095004","1483095092","1483095106","1483095004","1","8","0","-1","14","88","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007157","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483095971","1483096053","1483096061","1483095971","1","8","0","-1","8","82","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007205","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483096619","1483096654","1483096661","1483096619","1","8","0","-1","7","35","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007224","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483096846","1483096895","1483096924","1483096846","1","8","0","-1","29","49","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007246","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483097094","1483097135","1483097160","1483097094","1","8","0","-1","25","41","200","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007308","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483097910","1483097976","1483097996","1483097910","1","8","0","-1","20","66","160","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007313","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483097946","1483097976","1483097990","1483097946","1","8","0","-1","14","30","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007386","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483098969","1483099058","1483099069","1483098969","1","8","0","-1","11","89","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007409","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483099235","1483099299","1483099313","1483099235","1","8","0","-1","14","64","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007454","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483099947","1483100020","1483100028","1483099947","1","8","0","-1","8","73","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007479","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483100224","1483100260","1483100272","1483100224","1","8","0","-1","12","36","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007511","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483100641","1483100741","1483100763","1483100641","1","8","0","-1","22","100","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007526","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483100781","1483100861","1483100868","1483100781","1","8","0","-1","7","80","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007566","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483101339","1483101462","1483101469","1483101339","1","8","0","-1","7","123","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007611","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483102115","1483102183","1483102188","1483102115","1","8","0","-1","5","68","40","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007652","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483102592","1483102664","1483102677","1483102592","1","8","0","-1","13","72","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007677","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483102950","1483103145","1483103152","1483102950","1","8","0","-1","7","195","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007685","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483103092","1483103145","1483103163","1483103092","1","8","0","-1","18","53","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007698","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483103256","1483103385","1483103404","1483103256","1","8","0","-1","19","129","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007772","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483104569","1483104708","1483104714","1483104569","1","8","0","-1","6","139","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007788","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483104790","1483104948","1483104966","1483104790","1","8","0","-1","18","158","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007818","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483105256","1483105309","1483105318","1483105256","1","8","0","-1","9","53","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007873","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483106031","1483106150","1483106164","1483106031","1","8","0","-1","14","119","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007881","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483106178","1483106271","1483106295","1483106178","1","8","0","-1","24","93","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007900","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483106531","1483106631","1483106653","1483106531","1","8","0","-1","22","100","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007922","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483106717","1483106751","1483106770","1483106717","1","8","0","-1","19","34","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007935","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483106912","1483106992","1483107017","1483106912","1","8","0","-1","25","80","200","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007941","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483107003","1483107112","1483107130","1483107003","1","8","0","-1","18","109","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007964","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483107410","1483107473","1483107483","1483107410","1","8","0","-1","10","63","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007971","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483107522","1483107593","1483107622","1483107522","1","8","0","-1","29","71","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008002","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483107851","1483107954","1483107961","1483107851","1","8","0","-1","7","103","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008015","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483107997","1483108074","1483108089","1483107997","1","8","0","-1","15","77","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008022","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483108140","1483108194","1483108222","1483108140","1","8","0","-1","28","54","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008035","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483108314","1483108435","1483108450","1483108314","1","8","0","-1","15","121","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008066","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483108710","1483108795","1483108802","1483108710","1","8","0","-1","7","85","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008103","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483109350","1483109396","1483109403","1483109350","1","8","0","-1","7","46","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008160","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483110153","1483110238","1483110247","1483110153","1","8","0","-1","9","85","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008181","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483110548","1483110598","1483110622","1483110548","1","8","0","-1","24","50","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008215","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483110982","1483111079","1483111089","1483110982","1","8","0","-1","10","97","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008220","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483111082","1483111200","1483111205","1483111082","1","8","0","-1","5","118","40","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008229","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483111201","1483111320","1483111347","1483111201","1","8","0","-1","27","119","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008261","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483111621","1483111681","1483111691","1483111621","1","8","0","-1","10","60","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008367","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483113068","1483113123","1483113131","1483113068","1","8","0","-1","8","55","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008385","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483113272","1483113364","1483113367","1483113272","1","8","0","-1","3","92","24","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008399","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483113455","1483113604","1483113613","1483113455","1","8","0","-1","9","149","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008402","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483113479","1483113604","1483113608","1483113479","1","8","0","-1","4","125","32","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008446","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483114337","1483114445","1483114471","1483114337","1","8","0","-1","26","108","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008505","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483115126","1483115167","1483115174","1483115126","1","8","0","-1","7","41","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008522","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483115318","1483115407","1483115421","1483115318","1","8","0","-1","14","89","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008539","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483115569","1483115647","1483115665","1483115569","1","8","0","-1","18","78","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008547","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483115607","1483115647","1483115674","1483115607","1","8","0","-1","27","40","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008569","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483116071","1483116128","1483116141","1483116071","1","8","0","-1","13","57","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008635","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483116690","1483116729","1483116757","1483116690","1","8","0","-1","28","39","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008752","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483117589","1483117690","1483117719","1483117589","1","8","0","-1","29","101","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008761","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483117708","1483117811","1483117835","1483117708","1","8","0","-1","24","103","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008835","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483118300","1483118411","1483118428","1483118300","1","8","0","-1","17","111","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008899","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483118941","1483119012","1483119021","1483118941","1","8","0","-1","9","71","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008901","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483118971","1483119012","1483119018","1483118971","1","8","0","-1","6","41","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008938","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483119331","1483119373","1483119385","1483119331","1","8","0","-1","12","42","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009011","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483119863","1483119974","1483120000","1483119863","1","8","0","-1","26","111","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009045","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483120108","1483120214","1483120231","1483120108","1","8","0","-1","17","106","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009052","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483120224","1483120334","1483120358","1483120224","1","8","0","-1","24","110","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009082","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483120563","1483120695","1483120708","1483120563","1","8","0","-1","13","132","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009090","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483120671","1483120815","1483120835","1483120671","1","8","0","-1","20","144","160","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009139","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483121139","1483121175","1483121184","1483121139","1","8","0","-1","9","36","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009196","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483121772","1483121896","1483121905","1483121772","1","8","0","-1","9","124","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009204","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483121858","1483121896","1483121921","1483121858","1","8","0","-1","25","38","200","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009226","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483122056","1483122137","1483122163","1483122056","1","8","0","-1","26","81","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009282","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483122548","1483122617","1483122627","1483122548","1","8","0","-1","10","69","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009298","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483122682","1483122737","1483122752","1483122682","1","8","0","-1","15","55","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009379","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483123708","1483123819","1483123834","1483123708","1","8","0","-1","15","111","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009416","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124190","1483124299","1483124308","1483124190","1","8","0","-1","9","109","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009441","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124484","1483124540","1483124563","1483124484","1","8","0","-1","23","56","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009450","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124569","1483124660","1483124688","1483124569","1","8","0","-1","28","91","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009465","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124724","1483124780","1483124797","1483124724","1","8","0","-1","17","56","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009477","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124862","1483124900","1483124917","1483124862","1","8","0","-1","17","38","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009478","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124872","1483125020","1483125029","1483124872","1","8","0","-1","9","148","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009589","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126409","1483126462","1483126470","1483126409","1","8","0","-1","8","53","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009592","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126428","1483126462","1483126479","1483126428","1","8","0","-1","17","34","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009613","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126677","1483126823","1483126829","1483126677","1","8","0","-1","6","146","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009640","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126978","1483127063","1483127082","1483126978","1","8","0","-1","19","85","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009650","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483127162","1483127303","1483127325","1483127162","1","8","0","-1","22","141","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009679","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483127574","1483127784","1483127813","1483127574","1","8","0","-1","29","210","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009721","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483128277","1483128385","1483128407","1483128277","1","8","0","-1","22","108","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009746","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483128523","1483128625","1483128633","1483128523","1","8","0","-1","8","102","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009753","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483128685","1483128745","1483128766","1483128685","1","8","0","-1","21","60","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009802","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483129248","1483129346","1483129357","1483129248","1","8","0","-1","11","98","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009826","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483129642","1483129707","1483129736","1483129642","1","8","0","-1","29","65","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009841","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483129869","1483129947","1483129973","1483129869","1","8","0","-1","26","78","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009898","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483130558","1483130668","1483130693","1483130558","1","8","0","-1","25","110","200","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009905","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483130620","1483130668","1483130678","1483130620","1","8","0","-1","10","48","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009907","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483130636","1483130668","1483130692","1483130636","1","8","0","-1","24","32","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009955","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483131189","1483131269","1483131291","1483131189","1","8","0","-1","22","80","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009966","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483131291","1483131389","1483131396","1483131291","1","8","0","-1","7","98","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009975","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483131469","1483131509","1483131518","1483131469","1","8","0","-1","9","40","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010028","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483132299","1483132350","1483132356","1483132299","1","8","0","-1","6","51","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010073","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483132903","1483132951","1483132961","1483132903","1","8","0","-1","10","48","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010100","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133197","1483133311","1483133327","1483133197","1","8","0","-1","16","114","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010105","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133234","1483133311","1483133332","1483133234","1","8","0","-1","21","77","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010118","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133380","1483133431","1483133441","1483133380","1","8","0","-1","10","51","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010120","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133395","1483133431","1483133457","1483133395","1","8","0","-1","26","36","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010192","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483134427","1483134513","1483134526","1483134427","1","8","0","-1","13","86","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010211","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483134649","1483134753","1483134767","1483134649","1","8","0","-1","14","104","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010267","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483135405","1483135474","1483135483","1483135405","1","8","0","-1","9","69","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010329","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483136080","1483136195","1483136207","1483136080","1","8","0","-1","12","115","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010345","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483136333","1483136435","1483136456","1483136333","1","8","0","-1","21","102","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010376","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483136824","1483137036","1483137064","1483136824","1","8","0","-1","28","212","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010392","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483137073","1483137156","1483137165","1483137073","1","8","0","-1","9","83","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010423","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483137426","1483137516","1483137529","1483137426","1","8","0","-1","13","90","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010466","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483137955","1483137997","1483138011","1483137955","1","8","0","-1","14","42","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010469","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483138023","1483138237","1483138259","1483138023","1","8","0","-1","22","214","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010518","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483138750","1483138838","1483138844","1483138750","1","8","0","-1","6","88","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010570","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483139349","1483139439","1483139447","1483139349","1","8","0","-1","8","90","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010572","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483139426","1483139559","1483139587","1483139426","1","8","0","-1","28","133","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010598","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483139887","1483139919","1483139926","1483139887","1","8","0","-1","7","32","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010608","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140001","1483140039","1483140050","1483140001","1","8","0","-1","11","38","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010610","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140041","1483140160","1483140174","1483140041","1","8","0","-1","14","119","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010617","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140146","1483140280","1483140304","1483140146","1","8","0","-1","24","134","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010633","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140361","1483140400","1483140420","1483140361","1","8","0","-1","20","39","160","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010653","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140535","1483140640","1483140648","1483140535","1","8","0","-1","8","105","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010678","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140881","1483141001","1483141014","1483140881","1","8","0","-1","13","120","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010679","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140898","1483141001","1483141029","1483140898","1","8","0","-1","28","103","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010713","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483141161","1483141241","1483141265","1483141161","1","8","0","-1","24","80","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010746","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483141603","1483141722","1483141728","1483141603","1","8","0","-1","6","119","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010776","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483142080","1483142202","1483142217","1483142080","1","8","0","-1","15","122","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004945","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483065770","1483065876","1483065895","1483065770","1","8","0","-1","19","106","152","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6111037[221]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127791","1483127810","1483125913","1","1","0","-1","19","1879","19","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[268]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483128080","1483128102","1483125913","1","1","0","-1","22","2168","22","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[325]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483128501","1483128528","1483125913","1","1","0","-1","27","2589","27","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[395]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483129063","1483129085","1483125913","1","1","0","-1","22","3151","22","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[431]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483129321","1483129347","1483125913","1","1","0","-1","26","3409","26","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[460]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483129461","1483129481","1483125913","1","1","0","-1","20","3549","20","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[10]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130411","1483130430","1483128563","1","1","0","-1","19","1851","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[15]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130411","1483130440","1483128563","1","1","0","-1","29","1851","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[16]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130411","1483130433","1483128563","1","1","0","-1","22","1851","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[17]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130411","1483130431","1483128563","1","1","0","-1","20","1851","20","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[25]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130539","1483130567","1483128563","1","1","0","-1","28","1979","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[37]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130539","1483130567","1483128563","1","1","0","-1","28","1979","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[45]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130676","1483130695","1483128563","1","1","0","-1","19","2116","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[50]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130676","1483130689","1483128563","1","1","0","-1","13","2116","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[52]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130676","1483130695","1483128563","1","1","0","-1","19","2116","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[54]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130676","1483130702","1483128563","1","1","0","-1","26","2116","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[55]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130676","1483130695","1483128563","1","1","0","-1","19","2116","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[61]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130808","1483130836","1483128563","1","1","0","-1","28","2248","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[84]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130937","1483130964","1483128563","1","1","0","-1","27","2377","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[98]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130937","1483130957","1483128563","1","1","0","-1","20","2377","20","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[106]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131062","1483131090","1483128563","1","1","0","-1","28","2502","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[119]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131192","1483131207","1483128563","1","1","0","-1","15","2632","15","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[120]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131192","1483131208","1483128563","1","1","0","-1","16","2632","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[127]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131192","1483131219","1483128563","1","1","0","-1","27","2632","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[131]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131192","1483131220","1483128563","1","1","0","-1","28","2632","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[138]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131327","1483131356","1483128563","1","1","0","-1","29","2767","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[141]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131327","1483131332","1483128563","1","1","0","-1","5","2767","5","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[149]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131327","1483131351","1483128563","1","1","0","-1","24","2767","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[159]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131464","1483131489","1483128563","1","1","0","-1","25","2904","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[161]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131464","1483131492","1483128563","1","1","0","-1","28","2904","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[166]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131464","1483131489","1483128563","1","1","0","-1","25","2904","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[185]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131602","1483131623","1483128563","1","1","0","-1","21","3042","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[186]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131602","1483131612","1483128563","1","1","0","-1","10","3042","10","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[187]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131602","1483131623","1483128563","1","1","0","-1","21","3042","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[193]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131738","1483131766","1483128563","1","1","0","-1","28","3178","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[198]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131738","1483131744","1483128563","1","1","0","-1","6","3178","6","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[203]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131738","1483131756","1483128563","1","1","0","-1","18","3178","18","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[204]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131738","1483131761","1483128563","1","1","0","-1","23","3178","23","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[206]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131738","1483131766","1483128563","1","1","0","-1","28","3178","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[212]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131895","1483128563","1","1","0","-1","28","3307","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[217]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131888","1483128563","1","1","0","-1","21","3307","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[221]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131880","1483128563","1","1","0","-1","13","3307","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[222]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131895","1483128563","1","1","0","-1","28","3307","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[224]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131895","1483128563","1","1","0","-1","28","3307","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[225]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131890","1483128563","1","1","0","-1","23","3307","23","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[226]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131997","1483132026","1483128563","1","1","0","-1","29","3437","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[236]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131997","1483132026","1483128563","1","1","0","-1","29","3437","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[241]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131997","1483132023","1483128563","1","1","0","-1","26","3437","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[254]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132136","1483132156","1483128563","1","1","0","-1","20","3576","20","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[255]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132136","1483132162","1483128563","1","1","0","-1","26","3576","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[256]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132136","1483132163","1483128563","1","1","0","-1","27","3576","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[263]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132136","1483132163","1483128563","1","1","0","-1","27","3576","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[98]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137566","1483137582","1483135648","1","1","0","-1","16","1918","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[106]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137566","1483137594","1483135648","1","1","0","-1","28","1918","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[119]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137692","1483137712","1483135648","1","1","0","-1","20","2044","20","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[120]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137692","1483137712","1483135648","1","1","0","-1","20","2044","20","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[127]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137824","1483137853","1483135648","1","1","0","-1","29","2176","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[129]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137824","1483137851","1483135648","1","1","0","-1","27","2176","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[138]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137824","1483137853","1483135648","1","1","0","-1","29","2176","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[141]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137824","1483137835","1483135648","1","1","0","-1","11","2176","11","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[149]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137956","1483137981","1483135648","1","1","0","-1","25","2308","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[159]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137956","1483137983","1483135648","1","1","0","-1","27","2308","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[161]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137956","1483137985","1483135648","1","1","0","-1","29","2308","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[166]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138083","1483138105","1483135648","1","1","0","-1","22","2435","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[167]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138083","1483138111","1483135648","1","1","0","-1","28","2435","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[173]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138083","1483138111","1483135648","1","1","0","-1","28","2435","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[175]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138083","1483138111","1483135648","1","1","0","-1","28","2435","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[185]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138210","1483138232","1483135648","1","1","0","-1","22","2562","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[186]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138210","1483138218","1483135648","1","1","0","-1","8","2562","8","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[187]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138210","1483138226","1483135648","1","1","0","-1","16","2562","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[193]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138210","1483138235","1483135648","1","1","0","-1","25","2562","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[198]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138210","1483138220","1483135648","1","1","0","-1","10","2562","10","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[203]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138342","1483138356","1483135648","1","1","0","-1","14","2694","14","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[204]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138342","1483138366","1483135648","1","1","0","-1","24","2694","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[217]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138342","1483138355","1483135648","1","1","0","-1","13","2694","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[221]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138470","1483138483","1483135648","1","1","0","-1","13","2822","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[224]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138470","1483138499","1483135648","1","1","0","-1","29","2822","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[241]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138601","1483138623","1483135648","1","1","0","-1","22","2953","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[254]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138601","1483138617","1483135648","1","1","0","-1","16","2953","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[255]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138601","1483138623","1483135648","1","1","0","-1","22","2953","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[256]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138601","1483138628","1483135648","1","1","0","-1","27","2953","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[268]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138737","1483138746","1483135648","1","1","0","-1","9","3089","9","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[277]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138737","1483138764","1483135648","1","1","0","-1","27","3089","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[281]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138862","1483138884","1483135648","1","1","0","-1","22","3214","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[294]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138862","1483138885","1483135648","1","1","0","-1","23","3214","23","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[310]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138992","1483139008","1483135648","1","1","0","-1","16","3344","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[325]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139123","1483139130","1483135648","1","1","0","-1","7","3475","7","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[326]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139123","1483139145","1483135648","1","1","0","-1","22","3475","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["986006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116423","1483118225","1483118246","1483116423","1","8","0","-1","21","1802","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116424","1483118234","1483118251","1483116424","1","8","0","-1","17","1810","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116424","1483118246","1483118270","1483116424","1","8","0","-1","24","1822","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986016","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116424","1483118252","1483118273","1483116424","1","8","0","-1","21","1828","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116425","1483118254","1483118277","1483116425","1","8","0","-1","23","1829","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116425","1483118262","1483118281","1483116425","1","8","0","-1","19","1837","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116426","1483118268","1483118290","1483116426","1","8","0","-1","22","1842","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116426","1483118270","1483118289","1483116426","1","8","0","-1","19","1844","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116427","1483118278","1483118307","1483116427","1","8","0","-1","29","1851","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986041","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116428","1483118291","1483118313","1483116428","1","8","0","-1","22","1863","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116429","1483118298","1483118319","1483116429","1","8","0","-1","21","1869","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986049","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116429","1483118313","1483118332","1483116429","1","8","0","-1","19","1884","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986051","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116430","1483118314","1483118336","1483116430","1","8","0","-1","22","1884","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116430","1483118320","1483118341","1483116430","1","8","0","-1","21","1890","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986059","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116431","1483118336","1483118356","1483116431","1","8","0","-1","20","1905","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986061","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116431","1483118337","1483118357","1483116431","1","8","0","-1","20","1906","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116432","1483118339","1483118358","1483116432","1","8","0","-1","19","1907","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986079","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116434","1483118358","1483118379","1483116434","1","8","0","-1","21","1924","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116435","1483118371","1483118389","1483116435","1","8","0","-1","18","1936","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986087","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116435","1483118374","1483118390","1483116435","1","8","0","-1","16","1939","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116436","1483118380","1483118403","1483116436","1","8","0","-1","23","1944","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986097","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116437","1483118391","1483118413","1483116437","1","8","0","-1","22","1954","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116437","1483118391","1483118410","1483116437","1","8","0","-1","19","1954","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116438","1483118395","1483118413","1483116438","1","8","0","-1","18","1957","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116440","1483118427","1483118447","1483116440","1","8","0","-1","20","1987","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116441","1483118436","1483118457","1483116441","1","8","0","-1","21","1995","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116441","1483118446","1483118465","1483116441","1","8","0","-1","19","2005","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986129","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116442","1483118448","1483118469","1483116442","1","8","0","-1","21","2006","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116443","1483118458","1483118479","1483116443","1","8","0","-1","21","2015","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116443","1483118466","1483118485","1483116443","1","8","0","-1","19","2023","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986139","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116444","1483118470","1483118488","1483116444","1","8","0","-1","18","2026","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116444","1483118479","1483118507","1483116444","1","8","0","-1","28","2035","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116445","1483118481","1483118509","1483116445","1","8","0","-1","28","2036","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986155","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116446","1483118495","1483118517","1483116446","1","8","0","-1","22","2049","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116446","1483118507","1483118527","1483116446","1","8","0","-1","20","2061","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116447","1483118509","1483118526","1483116447","1","8","0","-1","17","2062","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116448","1483118517","1483118546","1483116448","1","8","0","-1","29","2069","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116448","1483118525","1483118553","1483116448","1","8","0","-1","28","2077","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116448","1483118526","1483118550","1483116448","1","8","0","-1","24","2078","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116449","1483118528","1483118551","1483116449","1","8","0","-1","23","2079","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986173","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116449","1483118528","1483118552","1483116449","1","8","0","-1","24","2079","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116449","1483118546","1483118564","1483116449","1","8","0","-1","18","2097","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116451","1483118552","1483118578","1483116451","1","8","0","-1","26","2101","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116452","1483118555","1483118577","1483116452","1","8","0","-1","22","2103","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986199","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116453","1483118578","1483118591","1483116453","1","8","0","-1","13","2125","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116454","1483118592","1483118613","1483116454","1","8","0","-1","21","2138","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116455","1483118604","1483118619","1483116455","1","8","0","-1","15","2149","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116456","1483118614","1483118631","1483116456","1","8","0","-1","17","2158","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116458","1483118625","1483118647","1483116458","1","8","0","-1","22","2167","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116458","1483118629","1483118652","1483116458","1","8","0","-1","23","2171","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116459","1483118631","1483118653","1483116459","1","8","0","-1","22","2172","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116459","1483118631","1483118651","1483116459","1","8","0","-1","20","2172","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116459","1483118647","1483118666","1483116459","1","8","0","-1","19","2188","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116460","1483118650","1483118674","1483116460","1","8","0","-1","24","2190","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116460","1483118651","1483118675","1483116460","1","8","0","-1","24","2191","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116461","1483118653","1483118674","1483116461","1","8","0","-1","21","2192","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116462","1483118654","1483118681","1483116462","1","8","0","-1","27","2192","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116462","1483118667","1483118687","1483116462","1","8","0","-1","20","2205","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116464","1483118688","1483118710","1483116464","1","8","0","-1","22","2224","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116465","1483118706","1483118727","1483116465","1","8","0","-1","21","2241","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116466","1483118706","1483118732","1483116466","1","8","0","-1","26","2240","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116466","1483118710","1483118734","1483116466","1","8","0","-1","24","2244","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116467","1483118728","1483118751","1483116467","1","8","0","-1","23","2261","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116468","1483118728","1483118748","1483116468","1","8","0","-1","20","2260","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116468","1483118732","1483118753","1483116468","1","8","0","-1","21","2264","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116471","1483118753","1483118775","1483116471","1","8","0","-1","22","2282","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116471","1483118754","1483118776","1483116471","1","8","0","-1","22","2283","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116471","1483118769","1483118794","1483116471","1","8","0","-1","25","2298","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116472","1483118775","1483118796","1483116472","1","8","0","-1","21","2303","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116472","1483118777","1483118801","1483116472","1","8","0","-1","24","2305","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116472","1483118779","1483118803","1483116472","1","8","0","-1","24","2307","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116473","1483118790","1483118814","1483116473","1","8","0","-1","24","2317","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116474","1483118795","1483118815","1483116474","1","8","0","-1","20","2321","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116474","1483118797","1483118816","1483116474","1","8","0","-1","19","2323","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116474","1483118801","1483118820","1483116474","1","8","0","-1","19","2327","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116477","1483118821","1483118842","1483116477","1","8","0","-1","21","2344","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116477","1483118834","1483118861","1483116477","1","8","0","-1","27","2357","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116478","1483118843","1483118863","1483116478","1","8","0","-1","20","2365","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116478","1483118847","1483118871","1483116478","1","8","0","-1","24","2369","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116478","1483118859","1483118883","1483116478","1","8","0","-1","24","2381","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116480","1483118871","1483118892","1483116480","1","8","0","-1","21","2391","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116480","1483118882","1483118903","1483116480","1","8","0","-1","21","2402","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116481","1483118884","1483118904","1483116481","1","8","0","-1","20","2403","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116485","1483118942","1483118970","1483116485","1","8","0","-1","28","2457","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116489","1483119023","1483119043","1483116489","1","8","0","-1","20","2534","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116489","1483119027","1483119048","1483116489","1","8","0","-1","21","2538","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116490","1483119044","1483119061","1483116490","1","8","0","-1","17","2554","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116490","1483119049","1483119065","1483116490","1","8","0","-1","16","2559","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116491","1483119062","1483119088","1483116491","1","8","0","-1","26","2571","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116491","1483119066","1483119090","1483116491","1","8","0","-1","24","2575","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116491","1483119070","1483119092","1483116491","1","8","0","-1","22","2579","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116492","1483119088","1483119108","1483116492","1","8","0","-1","20","2596","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116492","1483119091","1483119107","1483116492","1","8","0","-1","16","2599","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116493","1483119092","1483119111","1483116493","1","8","0","-1","19","2599","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116495","1483119108","1483119136","1483116495","1","8","0","-1","28","2613","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116495","1483119111","1483119133","1483116495","1","8","0","-1","22","2616","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116496","1483119119","1483119141","1483116496","1","8","0","-1","22","2623","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116496","1483119129","1483119146","1483116496","1","8","0","-1","17","2633","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116496","1483119134","1483119161","1483116496","1","8","0","-1","27","2638","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116497","1483119134","1483119163","1483116497","1","8","0","-1","29","2637","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116497","1483119136","1483119159","1483116497","1","8","0","-1","23","2639","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116498","1483119141","1483119164","1483116498","1","8","0","-1","23","2643","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116498","1483119146","1483119166","1483116498","1","8","0","-1","20","2648","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116498","1483119153","1483119169","1483116498","1","8","0","-1","16","2655","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116499","1483119159","1483119178","1483116499","1","8","0","-1","19","2660","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116501","1483119179","1483119199","1483116501","1","8","0","-1","20","2678","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116502","1483119197","1483119218","1483116502","1","8","0","-1","21","2695","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116502","1483119197","1483119211","1483116502","1","8","0","-1","14","2695","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116502","1483119199","1483119226","1483116502","1","8","0","-1","27","2697","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116503","1483119199","1483119225","1483116503","1","8","0","-1","26","2696","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116504","1483119201","1483119230","1483116504","1","8","0","-1","29","2697","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116504","1483119209","1483119227","1483116504","1","8","0","-1","18","2705","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116504","1483119211","1483119226","1483116504","1","8","0","-1","15","2707","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116505","1483119218","1483119233","1483116505","1","8","0","-1","15","2713","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116505","1483119225","1483119249","1483116505","1","8","0","-1","24","2720","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116506","1483119226","1483119252","1483116506","1","8","0","-1","26","2720","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116506","1483119227","1483119255","1483116506","1","8","0","-1","28","2721","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116507","1483119249","1483119268","1483116507","1","8","0","-1","19","2742","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116508","1483119256","1483119272","1483116508","1","8","0","-1","16","2748","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116508","1483119267","1483119282","1483116508","1","8","0","-1","15","2759","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116510","1483119271","1483119289","1483116510","1","8","0","-1","18","2761","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986556","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116511","1483119272","1483119289","1483116511","1","8","0","-1","17","2761","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116511","1483119282","1483119307","1483116511","1","8","0","-1","25","2771","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116511","1483119286","1483119315","1483116511","1","8","0","-1","29","2775","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116513","1483119308","1483119330","1483116513","1","8","0","-1","22","2795","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116514","1483119316","1483119338","1483116514","1","8","0","-1","22","2802","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116515","1483119329","1483119356","1483116515","1","8","0","-1","27","2814","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116516","1483119339","1483119365","1483116516","1","8","0","-1","26","2823","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116516","1483119344","1483119364","1483116516","1","8","0","-1","20","2828","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116517","1483119345","1483119366","1483116517","1","8","0","-1","21","2828","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116517","1483119356","1483119378","1483116517","1","8","0","-1","22","2839","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116517","1483119359","1483119387","1483116517","1","8","0","-1","28","2842","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116519","1483119367","1483119394","1483116519","1","8","0","-1","27","2848","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116525","1483119460","1483119488","1483116525","1","8","0","-1","28","2935","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116528","1483119489","1483119518","1483116528","1","8","0","-1","29","2961","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116528","1483119500","1483119526","1483116528","1","8","0","-1","26","2972","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116529","1483119507","1483119532","1483116529","1","8","0","-1","25","2978","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116532","1483119565","1483119592","1483116532","1","8","0","-1","27","3033","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986687","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116532","1483119565","1483119594","1483116532","1","8","0","-1","29","3033","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116533","1483119578","1483119601","1483116533","1","8","0","-1","23","3045","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116535","1483119602","1483119630","1483116535","1","8","0","-1","28","3067","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116535","1483119608","1483119631","1483116535","1","8","0","-1","23","3073","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116557","1483120079","1483120108","1483116557","1","8","0","-1","29","3522","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116558","1483120099","1483120126","1483116558","1","8","0","-1","27","3541","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116560","1483120134","1483120160","1483116560","1","8","0","-1","26","3574","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177000","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116405","1483118831","1483118856","1483116405","1","8","0","-1","25","2426","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177004","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116405","1483118857","1483118885","1483116405","1","8","0","-1","28","2452","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177008","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116406","1483118886","1483118913","1483116406","1","8","0","-1","27","2480","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177011","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116407","1483118913","1483118939","1483116407","1","8","0","-1","26","2506","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177015","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116408","1483118940","1483118964","1483116408","1","8","0","-1","24","2532","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177035","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116412","1483119136","1483119158","1483116412","1","8","0","-1","22","2724","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177039","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116412","1483119159","1483119186","1483116412","1","8","0","-1","27","2747","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177046","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116414","1483119230","1483119247","1483116414","1","8","0","-1","17","2816","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177050","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116414","1483119248","1483119273","1483116414","1","8","0","-1","25","2834","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177082","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116420","1483119613","1483119640","1483116420","1","8","0","-1","27","3193","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177093","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116423","1483119783","1483119797","1483116423","1","8","0","-1","14","3360","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177097","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116423","1483119798","1483119811","1483116423","1","8","0","-1","13","3375","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177101","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116424","1483119811","1483119826","1483116424","1","8","0","-1","15","3387","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177105","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116425","1483119826","1483119844","1483116425","1","8","0","-1","18","3401","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177108","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116425","1483119844","1483119858","1483116425","1","8","0","-1","14","3419","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177112","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116426","1483119858","1483119871","1483116426","1","8","0","-1","13","3432","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177116","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116427","1483119872","1483119893","1483116427","1","8","0","-1","21","3445","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177124","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116428","1483119935","1483119949","1483116428","1","8","0","-1","14","3507","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177128","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116429","1483119950","1483119963","1483116429","1","8","0","-1","13","3521","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177132","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116430","1483119963","1483119979","1483116430","1","8","0","-1","16","3533","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177136","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116431","1483119979","1483119998","1483116431","1","8","0","-1","19","3548","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177140","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116431","1483119998","1483120016","1483116431","1","8","0","-1","18","3567","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177143","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116432","1483120016","1483120030","1483116432","1","8","0","-1","14","3584","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177147","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116433","1483120030","1483120048","1483116433","1","8","0","-1","18","3597","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108545","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483064269","1483080379","1483080389","1483064269","1","1","0","-1","10","16110","10","0","0:0","COMPLETED","1","125Gn","86400","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6111037[521]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483129882","1483129901","1483125913","1","1","0","-1","19","3970","19","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[550]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483130147","1483130170","1483125913","1","1","0","-1","23","4235","23","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[556]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483130147","1483130169","1483125913","1","1","0","-1","22","4235","22","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[557]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483130147","1483130157","1483125913","1","1","0","-1","10","4235","10","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[559]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483130279","1483130296","1483125913","1","1","0","-1","17","4367","17","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[268]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132272","1483132285","1483128563","1","1","0","-1","13","3712","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[281]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132272","1483132297","1483128563","1","1","0","-1","25","3712","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[286]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132410","1483132437","1483128563","1","1","0","-1","27","3850","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[291]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132410","1483132436","1483128563","1","1","0","-1","26","3850","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[292]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132410","1483132437","1483128563","1","1","0","-1","27","3850","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[293]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132410","1483132436","1483128563","1","1","0","-1","26","3850","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[310]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132547","1483132563","1483128563","1","1","0","-1","16","3987","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[311]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132547","1483132576","1483128563","1","1","0","-1","29","3987","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[319]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132681","1483132708","1483128563","1","1","0","-1","27","4121","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[321]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132681","1483132710","1483128563","1","1","0","-1","29","4121","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[325]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132681","1483132688","1483128563","1","1","0","-1","7","4121","7","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[326]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132681","1483132705","1483128563","1","1","0","-1","24","4121","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[331]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132681","1483132710","1483128563","1","1","0","-1","29","4121","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[336]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132814","1483132839","1483128563","1","1","0","-1","25","4254","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[355]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132949","1483132973","1483128563","1","1","0","-1","24","4389","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[356]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132949","1483132974","1483128563","1","1","0","-1","25","4389","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[365]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132949","1483132964","1483128563","1","1","0","-1","15","4389","15","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[388]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133083","1483133104","1483128563","1","1","0","-1","21","4523","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[395]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133218","1483133234","1483128563","1","1","0","-1","16","4658","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[414]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133352","1483133380","1483128563","1","1","0","-1","28","4792","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[415]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133352","1483133378","1483128563","1","1","0","-1","26","4792","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[425]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133352","1483133364","1483128563","1","1","0","-1","12","4792","12","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[431]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133483","1483133498","1483128563","1","1","0","-1","15","4923","15","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[436]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133483","1483133507","1483128563","1","1","0","-1","24","4923","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[437]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133483","1483133509","1483128563","1","1","0","-1","26","4923","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[440]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133483","1483133508","1483128563","1","1","0","-1","25","4923","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[441]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133483","1483133505","1483128563","1","1","0","-1","22","4923","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[450]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133616","1483133643","1483128563","1","1","0","-1","27","5056","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[453]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133616","1483133643","1483128563","1","1","0","-1","27","5056","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[460]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133616","1483133639","1483128563","1","1","0","-1","23","5056","23","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[469]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133748","1483133777","1483128563","1","1","0","-1","29","5188","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[470]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133748","1483133770","1483128563","1","1","0","-1","22","5188","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[477]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133748","1483133776","1483128563","1","1","0","-1","28","5188","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[482]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133882","1483133907","1483128563","1","1","0","-1","25","5322","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[483]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133882","1483133906","1483128563","1","1","0","-1","24","5322","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[514]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134016","1483134042","1483128563","1","1","0","-1","26","5456","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[521]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134160","1483128563","1","1","0","-1","16","5584","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[526]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134169","1483128563","1","1","0","-1","25","5584","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[527]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134168","1483128563","1","1","0","-1","24","5584","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[528]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134165","1483128563","1","1","0","-1","21","5584","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[533]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134170","1483128563","1","1","0","-1","26","5584","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[538]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134168","1483128563","1","1","0","-1","24","5584","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[547]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134282","1483134311","1483128563","1","1","0","-1","29","5722","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[550]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134282","1483134299","1483128563","1","1","0","-1","17","5722","17","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[555]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134282","1483134308","1483128563","1","1","0","-1","26","5722","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[556]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134282","1483134290","1483128563","1","1","0","-1","8","5722","8","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[558]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134408","1483134415","1483128563","1","1","0","-1","7","5848","7","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[336]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139250","1483139275","1483135648","1","1","0","-1","25","3602","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[341]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139250","1483139279","1483135648","1","1","0","-1","29","3602","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[355]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139383","1483139409","1483135648","1","1","0","-1","26","3735","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[356]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139383","1483139409","1483135648","1","1","0","-1","26","3735","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[365]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139383","1483139395","1483135648","1","1","0","-1","12","3735","12","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[379]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139509","1483139538","1483135648","1","1","0","-1","29","3861","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[388]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139509","1483139527","1483135648","1","1","0","-1","18","3861","18","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[395]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139645","1483139663","1483135648","1","1","0","-1","18","3997","18","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[414]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139776","1483139802","1483135648","1","1","0","-1","26","4128","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[415]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139776","1483139800","1483135648","1","1","0","-1","24","4128","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[425]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139777","1483139793","1483135648","1","1","0","-1","16","4129","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[431]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139927","1483135648","1","1","0","-1","14","4265","14","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[435]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139940","1483135648","1","1","0","-1","27","4265","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[436]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139937","1483135648","1","1","0","-1","24","4265","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[437]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139939","1483135648","1","1","0","-1","26","4265","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[440]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139939","1483135648","1","1","0","-1","26","4265","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[441]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139937","1483135648","1","1","0","-1","24","4265","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[447]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139940","1483135648","1","1","0","-1","27","4265","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[450]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140044","1483140071","1483135648","1","1","0","-1","27","4396","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[453]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140044","1483140072","1483135648","1","1","0","-1","28","4396","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[460]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140044","1483140056","1483135648","1","1","0","-1","12","4396","12","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[470]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140171","1483140196","1483135648","1","1","0","-1","25","4523","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[482]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140171","1483140196","1483135648","1","1","0","-1","25","4523","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[483]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140171","1483140196","1483135648","1","1","0","-1","25","4523","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[508]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140441","1483140470","1483135648","1","1","0","-1","29","4793","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[511]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140441","1483140470","1483135648","1","1","0","-1","29","4793","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[514]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140441","1483140470","1483135648","1","1","0","-1","29","4793","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[521]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140441","1483140451","1483135648","1","1","0","-1","10","4793","10","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[526]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140572","1483140598","1483135648","1","1","0","-1","26","4924","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[527]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140572","1483140596","1483135648","1","1","0","-1","24","4924","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[528]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140572","1483140588","1483135648","1","1","0","-1","16","4924","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[538]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140572","1483140596","1483135648","1","1","0","-1","24","4924","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[546]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140727","1483135648","1","1","0","-1","27","5052","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[547]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140726","1483135648","1","1","0","-1","26","5052","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[550]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140711","1483135648","1","1","0","-1","11","5052","11","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[555]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140726","1483135648","1","1","0","-1","26","5052","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[556]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140719","1483135648","1","1","0","-1","19","5052","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[558]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140709","1483135648","1","1","0","-1","9","5052","9","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["986877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116563","1483120174","1483120203","1483116563","1","8","0","-1","29","3611","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116566","1483120223","1483120246","1483116566","1","8","0","-1","23","3657","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116569","1483120303","1483120329","1483116569","1","8","0","-1","26","3734","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116572","1483120332","1483120356","1483116572","1","8","0","-1","24","3760","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116572","1483120342","1483120362","1483116572","1","8","0","-1","20","3770","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116576","1483120418","1483120442","1483116576","1","8","0","-1","24","3842","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116576","1483120436","1483120457","1483116576","1","8","0","-1","21","3860","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116578","1483120454","1483120481","1483116578","1","8","0","-1","27","3876","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116582","1483120536","1483120564","1483116582","1","8","0","-1","28","3954","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116582","1483120540","1483120567","1483116582","1","8","0","-1","27","3958","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116582","1483120543","1483120565","1483116582","1","8","0","-1","22","3961","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116583","1483120552","1483120581","1483116583","1","8","0","-1","29","3969","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987000","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116583","1483120564","1483120593","1483116583","1","8","0","-1","29","3981","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116584","1483120565","1483120592","1483116584","1","8","0","-1","27","3981","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116584","1483120567","1483120592","1483116584","1","8","0","-1","25","3983","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116588","1483120640","1483120667","1483116588","1","8","0","-1","27","4052","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116588","1483120642","1483120662","1483116588","1","8","0","-1","20","4054","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987039","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116590","1483120662","1483120688","1483116590","1","8","0","-1","26","4072","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987047","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116591","1483120682","1483120704","1483116591","1","8","0","-1","22","4091","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987065","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116594","1483120730","1483120750","1483116594","1","8","0","-1","20","4136","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116595","1483120741","1483120765","1483116595","1","8","0","-1","24","4146","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116597","1483120766","1483120785","1483116597","1","8","0","-1","19","4169","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116602","1483120858","1483120887","1483116602","1","8","0","-1","29","4256","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116603","1483120868","1483120890","1483116603","1","8","0","-1","22","4265","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116607","1483120952","1483120981","1483116607","1","8","0","-1","29","4345","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116609","1483120969","1483120993","1483116609","1","8","0","-1","24","4360","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116610","1483120982","1483121004","1483116610","1","8","0","-1","22","4372","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116615","1483121075","1483121100","1483116615","1","8","0","-1","25","4460","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116620","1483121174","1483121202","1483116620","1","8","0","-1","28","4554","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116622","1483121203","1483121232","1483116622","1","8","0","-1","29","4581","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116627","1483121318","1483121347","1483116627","1","8","0","-1","29","4691","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116632","1483121398","1483121424","1483116632","1","8","0","-1","26","4766","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116632","1483121413","1483121440","1483116632","1","8","0","-1","27","4781","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116633","1483121424","1483121453","1483116633","1","8","0","-1","29","4791","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116633","1483121433","1483121461","1483116633","1","8","0","-1","28","4800","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116634","1483121441","1483121470","1483116634","1","8","0","-1","29","4807","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116634","1483121446","1483121469","1483116634","1","8","0","-1","23","4812","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987329","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116637","1483121488","1483121517","1483116637","1","8","0","-1","29","4851","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116639","1483121509","1483121538","1483116639","1","8","0","-1","29","4870","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116640","1483121521","1483121543","1483116640","1","8","0","-1","22","4881","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116644","1483121581","1483121608","1483116644","1","8","0","-1","27","4937","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116644","1483121585","1483121605","1483116644","1","8","0","-1","20","4941","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116645","1483121595","1483121619","1483116645","1","8","0","-1","24","4950","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116646","1483121608","1483121634","1483116646","1","8","0","-1","26","4962","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116646","1483121619","1483121647","1483116646","1","8","0","-1","28","4973","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987386","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116647","1483121629","1483121651","1483116647","1","8","0","-1","22","4982","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116647","1483121631","1483121656","1483116647","1","8","0","-1","25","4984","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116650","1483121670","1483121697","1483116650","1","8","0","-1","27","5020","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116650","1483121677","1483121704","1483116650","1","8","0","-1","27","5027","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116652","1483121698","1483121723","1483116652","1","8","0","-1","25","5046","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116652","1483121704","1483121733","1483116652","1","8","0","-1","29","5052","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116654","1483121723","1483121741","1483116654","1","8","0","-1","18","5069","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116656","1483121754","1483121781","1483116656","1","8","0","-1","27","5098","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116657","1483121761","1483121783","1483116657","1","8","0","-1","22","5104","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116659","1483121784","1483121812","1483116659","1","8","0","-1","28","5125","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116660","1483121787","1483121816","1483116660","1","8","0","-1","29","5127","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116664","1483121817","1483121844","1483116664","1","8","0","-1","27","5153","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116664","1483121830","1483121859","1483116664","1","8","0","-1","29","5166","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116665","1483121860","1483121886","1483116665","1","8","0","-1","26","5195","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116666","1483121875","1483121902","1483116666","1","8","0","-1","27","5209","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116673","1483121989","1483122018","1483116673","1","8","0","-1","29","5316","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116678","1483122070","1483122097","1483116678","1","8","0","-1","27","5392","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116738","1483122611","1483122635","1483116738","1","8","0","-1","24","5873","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116801","1483122675","1483122702","1483116801","1","8","0","-1","27","5874","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116878","1483122743","1483122763","1483116878","1","8","0","-1","20","5865","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116922","1483122793","1483122813","1483116922","1","8","0","-1","20","5871","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116938","1483122813","1483122837","1483116938","1","8","0","-1","24","5875","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116943","1483122837","1483122865","1483116943","1","8","0","-1","28","5894","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116945","1483122847","1483122876","1483116945","1","8","0","-1","29","5902","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117026","1483122892","1483122911","1483117026","1","8","0","-1","19","5866","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117030","1483122902","1483122923","1483117030","1","8","0","-1","21","5872","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117034","1483122912","1483122940","1483117034","1","8","0","-1","28","5878","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117036","1483122921","1483122942","1483117036","1","8","0","-1","21","5885","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117065","1483122940","1483122961","1483117065","1","8","0","-1","21","5875","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987824","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117073","1483122956","1483122980","1483117073","1","8","0","-1","24","5883","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117081","1483122962","1483122981","1483117081","1","8","0","-1","19","5881","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117090","1483122975","1483122994","1483117090","1","8","0","-1","19","5885","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117091","1483122976","1483122990","1483117091","1","8","0","-1","14","5885","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117099","1483122991","1483123009","1483117099","1","8","0","-1","18","5892","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117118","1483122995","1483123015","1483117118","1","8","0","-1","20","5877","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117118","1483122996","1483123015","1483117118","1","8","0","-1","19","5878","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117142","1483123020","1483123046","1483117142","1","8","0","-1","26","5878","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117145","1483123043","1483123062","1483117145","1","8","0","-1","19","5898","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117147","1483123046","1483123070","1483117147","1","8","0","-1","24","5899","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117148","1483123051","1483123068","1483117148","1","8","0","-1","17","5903","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117154","1483123063","1483123081","1483117154","1","8","0","-1","18","5909","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117178","1483123071","1483123098","1483117178","1","8","0","-1","27","5893","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117240","1483123178","1483123202","1483117240","1","8","0","-1","24","5938","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117288","1483123213","1483123231","1483117288","1","8","0","-1","18","5925","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117289","1483123229","1483123254","1483117289","1","8","0","-1","25","5940","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117301","1483123232","1483123260","1483117301","1","8","0","-1","28","5931","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117376","1483123310","1483123336","1483117376","1","8","0","-1","26","5934","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117381","1483123311","1483123335","1483117381","1","8","0","-1","24","5930","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117447","1483123372","1483123400","1483117447","1","8","0","-1","28","5925","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987966","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117514","1483123399","1483123421","1483117514","1","8","0","-1","22","5885","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117523","1483123400","1483123415","1483117523","1","8","0","-1","15","5877","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117530","1483123416","1483123437","1483117530","1","8","0","-1","21","5886","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987980","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117585","1483123438","1483123458","1483117585","1","8","0","-1","20","5853","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117585","1483123439","1483123459","1483117585","1","8","0","-1","20","5854","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987994","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117657","1483123493","1483123517","1483117657","1","8","0","-1","24","5836","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117749","1483123503","1483123528","1483117749","1","8","0","-1","25","5754","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117769","1483123518","1483123544","1483117769","1","8","0","-1","26","5749","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117785","1483123529","1483123554","1483117785","1","8","0","-1","25","5744","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117880","1483123562","1483123584","1483117880","1","8","0","-1","22","5682","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117935","1483123599","1483123620","1483117935","1","8","0","-1","21","5664","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117942","1483123619","1483123645","1483117942","1","8","0","-1","26","5677","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117943","1483123621","1483123644","1483117943","1","8","0","-1","23","5678","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118023","1483123645","1483123661","1483118023","1","8","0","-1","16","5622","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118067","1483123674","1483123701","1483118067","1","8","0","-1","27","5607","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118071","1483123681","1483123704","1483118071","1","8","0","-1","23","5610","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118076","1483123683","1483123707","1483118076","1","8","0","-1","24","5607","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118155","1483123770","1483123796","1483118155","1","8","0","-1","26","5615","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118178","1483123820","1483123845","1483118178","1","8","0","-1","25","5642","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118227","1483123886","1483123914","1483118227","1","8","0","-1","28","5659","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118233","1483123891","1483123920","1483118233","1","8","0","-1","29","5658","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118356","1483124048","1483124072","1483118356","1","8","0","-1","24","5692","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118375","1483124080","1483124099","1483118375","1","8","0","-1","19","5705","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118436","1483124169","1483124189","1483118436","1","8","0","-1","20","5733","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118436","1483124170","1483124191","1483118436","1","8","0","-1","21","5734","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118564","1483124399","1483124425","1483118564","1","8","0","-1","26","5835","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118578","1483124421","1483124448","1483118578","1","8","0","-1","27","5843","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118652","1483124559","1483124587","1483118652","1","8","0","-1","28","5907","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118705","1483124632","1483124655","1483118705","1","8","0","-1","23","5927","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118720","1483124655","1483124676","1483118720","1","8","0","-1","21","5935","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118728","1483124665","1483124686","1483118728","1","8","0","-1","21","5937","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118734","1483124677","1483124697","1483118734","1","8","0","-1","20","5943","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118751","1483124697","1483124726","1483118751","1","8","0","-1","29","5946","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118769","1483124713","1483124732","1483118769","1","8","0","-1","19","5944","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118782","1483124728","1483124757","1483118782","1","8","0","-1","29","5946","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118804","1483124758","1483124778","1483118804","1","8","0","-1","20","5954","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118821","1483124787","1483124812","1483118821","1","8","0","-1","25","5966","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118883","1483124840","1483124862","1483118883","1","8","0","-1","22","5957","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118884","1483124847","1483124866","1483118884","1","8","0","-1","19","5963","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118935","1483124894","1483124913","1483118935","1","8","0","-1","19","5959","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118942","1483124898","1483124919","1483118942","1","8","0","-1","21","5956","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119001","1483124953","1483124973","1483119001","1","8","0","-1","20","5952","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988432","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119002","1483124953","1483124970","1483119002","1","8","0","-1","17","5951","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119023","1483124970","1483124996","1483119023","1","8","0","-1","26","5947","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119027","1483124974","1483124990","1483119027","1","8","0","-1","16","5947","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119070","1483124997","1483125014","1483119070","1","8","0","-1","17","5927","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119088","1483124997","1483125019","1483119088","1","8","0","-1","22","5909","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119090","1483125015","1483125042","1483119090","1","8","0","-1","27","5925","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119092","1483125020","1483125047","1483119092","1","8","0","-1","27","5928","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119152","1483125124","1483125148","1483119152","1","8","0","-1","24","5972","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119159","1483125143","1483125171","1483119159","1","8","0","-1","28","5984","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119169","1483125163","1483125190","1483119169","1","8","0","-1","27","5994","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119218","1483125240","1483125260","1483119218","1","8","0","-1","20","6022","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119225","1483125251","1483125277","1483119225","1","8","0","-1","26","6026","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119226","1483125258","1483125279","1483119226","1","8","0","-1","21","6032","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119226","1483125259","1483125283","1483119226","1","8","0","-1","24","6033","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119230","1483125266","1483125291","1483119230","1","8","0","-1","25","6036","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119282","1483125364","1483125390","1483119282","1","8","0","-1","26","6082","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119289","1483125374","1483125401","1483119289","1","8","0","-1","27","6085","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119308","1483125402","1483125431","1483119308","1","8","0","-1","29","6094","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119338","1483125443","1483125472","1483119338","1","8","0","-1","29","6105","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119366","1483125473","1483125499","1483119366","1","8","0","-1","26","6107","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119366","1483125496","1483125524","1483119366","1","8","0","-1","28","6130","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119415","1483125536","1483125565","1483119415","1","8","0","-1","29","6121","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119438","1483125558","1483125584","1483119438","1","8","0","-1","26","6120","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119459","1483125569","1483125597","1483119459","1","8","0","-1","28","6110","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119462","1483125584","1483125610","1483119462","1","8","0","-1","26","6122","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119492","1483125600","1483125625","1483119492","1","8","0","-1","25","6108","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119500","1483125611","1483125631","1483119500","1","8","0","-1","20","6111","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119505","1483125616","1483125634","1483119505","1","8","0","-1","18","6111","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119506","1483125625","1483125650","1483119506","1","8","0","-1","25","6119","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119566","1483125670","1483125699","1483119566","1","8","0","-1","29","6104","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119594","1483125696","1483125717","1483119594","1","8","0","-1","21","6102","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119607","1483125708","1483125731","1483119607","1","8","0","-1","23","6101","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119608","1483125718","1483125747","1483119608","1","8","0","-1","29","6110","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119651","1483125763","1483125782","1483119651","1","8","0","-1","19","6112","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119664","1483125778","1483125795","1483119664","1","8","0","-1","17","6114","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119665","1483125781","1483125808","1483119665","1","8","0","-1","27","6116","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119710","1483125784","1483125802","1483119710","1","8","0","-1","18","6074","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119718","1483125796","1483125823","1483119718","1","8","0","-1","27","6078","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119725","1483125802","1483125822","1483119725","1","8","0","-1","20","6077","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119734","1483125804","1483125825","1483119734","1","8","0","-1","21","6070","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119796","1483125826","1483125850","1483119796","1","8","0","-1","24","6030","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119799","1483125828","1483125852","1483119799","1","8","0","-1","24","6029","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119865","1483125858","1483125886","1483119865","1","8","0","-1","28","5993","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119943","1483125919","1483125948","1483119943","1","8","0","-1","29","5976","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119956","1483125941","1483125969","1483119956","1","8","0","-1","28","5985","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120010","1483125989","1483126015","1483120010","1","8","0","-1","26","5979","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120079","1483126095","1483126119","1483120079","1","8","0","-1","24","6016","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120099","1483126106","1483126132","1483120099","1","8","0","-1","26","6007","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120102","1483126106","1483126135","1483120102","1","8","0","-1","29","6004","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120103","1483126113","1483126142","1483120103","1","8","0","-1","29","6010","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120136","1483126136","1483126154","1483120136","1","8","0","-1","18","6000","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120136","1483126143","1483126161","1483120136","1","8","0","-1","18","6007","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120157","1483126154","1483126174","1483120157","1","8","0","-1","20","5997","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120166","1483126162","1483126189","1483120166","1","8","0","-1","27","5996","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120210","1483126204","1483126225","1483120210","1","8","0","-1","21","5994","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120215","1483126216","1483126233","1483120215","1","8","0","-1","17","6001","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120230","1483126234","1483126256","1483120230","1","8","0","-1","22","6004","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120253","1483126248","1483126267","1483120253","1","8","0","-1","19","5995","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120306","1483126271","1483126291","1483120306","1","8","0","-1","20","5965","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120320","1483126292","1483126321","1483120320","1","8","0","-1","29","5972","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120331","1483126311","1483126338","1483120331","1","8","0","-1","27","5980","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120356","1483126322","1483126350","1483120356","1","8","0","-1","28","5966","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120361","1483126338","1483126362","1483120361","1","8","0","-1","24","5977","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120362","1483126344","1483126359","1483120362","1","8","0","-1","15","5982","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120436","1483126371","1483126398","1483120436","1","8","0","-1","27","5935","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120454","1483126398","1483126415","1483120454","1","8","0","-1","17","5944","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120457","1483126416","1483126444","1483120457","1","8","0","-1","28","5959","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120490","1483126428","1483126457","1483120490","1","8","0","-1","29","5938","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120496","1483126429","1483126455","1483120496","1","8","0","-1","26","5933","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120497","1483126448","1483126474","1483120497","1","8","0","-1","26","5951","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120570","1483126502","1483126529","1483120570","1","8","0","-1","27","5932","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120592","1483126516","1483126540","1483120592","1","8","0","-1","24","5924","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120592","1483126517","1483126542","1483120592","1","8","0","-1","25","5925","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120593","1483126530","1483126549","1483120593","1","8","0","-1","19","5937","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120659","1483126556","1483126572","1483120659","1","8","0","-1","16","5897","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988922","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120662","1483126572","1483126596","1483120662","1","8","0","-1","24","5910","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120764","1483126692","1483126717","1483120764","1","8","0","-1","25","5928","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120785","1483126718","1483126746","1483120785","1","8","0","-1","28","5933","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120797","1483126723","1483126750","1483120797","1","8","0","-1","27","5926","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120805","1483126741","1483126768","1483120805","1","8","0","-1","27","5936","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988984","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120858","1483126788","1483126817","1483120858","1","8","0","-1","29","5930","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120926","1483126852","1483126877","1483120926","1","8","0","-1","25","5926","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120934","1483126854","1483126879","1483120934","1","8","0","-1","25","5920","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120959","1483126877","1483126902","1483120959","1","8","0","-1","25","5918","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989010","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120960","1483126880","1483126901","1483120960","1","8","0","-1","21","5920","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121000","1483126920","1483126945","1483121000","1","8","0","-1","25","5920","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121000","1483126922","1483126945","1483121000","1","8","0","-1","23","5922","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121142","1483127036","1483127065","1483121142","1","8","0","-1","29","5894","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121156","1483127042","1483127071","1483121156","1","8","0","-1","29","5886","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121174","1483127062","1483127086","1483121174","1","8","0","-1","24","5888","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121231","1483127089","1483127112","1483121231","1","8","0","-1","23","5858","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121318","1483127177","1483127204","1483121318","1","8","0","-1","27","5859","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121318","1483127200","1483127227","1483121318","1","8","0","-1","27","5882","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121323","1483127205","1483127227","1483121323","1","8","0","-1","22","5882","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121324","1483127207","1483127231","1483121324","1","8","0","-1","24","5883","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121343","1483127212","1483127228","1483121343","1","8","0","-1","16","5869","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121389","1483127246","1483127271","1483121389","1","8","0","-1","25","5857","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121467","1483127320","1483127339","1483121467","1","8","0","-1","19","5853","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121469","1483127321","1483127350","1483121469","1","8","0","-1","29","5852","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121470","1483127334","1483127357","1483121470","1","8","0","-1","23","5864","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121487","1483127339","1483127363","1483121487","1","8","0","-1","24","5852","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121584","1483127449","1483127478","1483121584","1","8","0","-1","29","5865","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121595","1483127455","1483127480","1483121595","1","8","0","-1","25","5860","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121608","1483127478","1483127497","1483121608","1","8","0","-1","19","5870","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121647","1483127501","1483127529","1483121647","1","8","0","-1","28","5854","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121651","1483127522","1483127549","1483121651","1","8","0","-1","27","5871","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121670","1483127530","1483127546","1483121670","1","8","0","-1","16","5860","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121789","1483127733","1483127761","1483121789","1","8","0","-1","28","5944","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121798","1483127743","1483127770","1483121798","1","8","0","-1","27","5945","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121811","1483127761","1483127786","1483121811","1","8","0","-1","25","5950","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121814","1483127766","1483127789","1483121814","1","8","0","-1","23","5952","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121814","1483127770","1483127790","1483121814","1","8","0","-1","20","5956","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121877","1483127847","1483127873","1483121877","1","8","0","-1","26","5970","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121888","1483127873","1483127899","1483121888","1","8","0","-1","26","5985","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122003","1483128027","1483128054","1483122003","1","8","0","-1","27","6024","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122006","1483128041","1483128065","1483122006","1","8","0","-1","24","6035","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122012","1483128055","1483128076","1483122012","1","8","0","-1","21","6043","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122052","1483128076","1483128097","1483122052","1","8","0","-1","21","6024","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122073","1483128099","1483128120","1483122073","1","8","0","-1","21","6026","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122095","1483128121","1483128148","1483122095","1","8","0","-1","27","6026","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122274","1483128228","1483128257","1483122274","1","8","0","-1","29","5954","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122579","1483128514","1483128534","1483122579","1","8","0","-1","20","5935","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122675","1483128591","1483128611","1483122675","1","8","0","-1","20","5916","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122702","1483128612","1483128631","1483122702","1","8","0","-1","19","5910","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122734","1483128647","1483128669","1483122734","1","8","0","-1","22","5913","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122750","1483128673","1483128697","1483122750","1","8","0","-1","24","5923","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122847","1483128737","1483128765","1483122847","1","8","0","-1","28","5890","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122867","1483128815","1483128842","1483122867","1","8","0","-1","27","5948","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122892","1483128854","1483128876","1483122892","1","8","0","-1","22","5962","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122902","1483128861","1483128887","1483122902","1","8","0","-1","26","5959","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122924","1483128877","1483128902","1483122924","1","8","0","-1","25","5953","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122942","1483128897","1483128922","1483122942","1","8","0","-1","25","5955","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122956","1483128903","1483128930","1483122956","1","8","0","-1","27","5947","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123051","1483129050","1483129078","1483123051","1","8","0","-1","28","5999","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123146","1483129147","1483129167","1483123146","1","8","0","-1","20","6001","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123202","1483129212","1483129240","1483123202","1","8","0","-1","28","6010","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123500","1483129633","1483129661","1483123500","1","8","0","-1","28","6133","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123515","1483129662","1483129690","1483123515","1","8","0","-1","28","6147","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123534","1483129694","1483129714","1483123534","1","8","0","-1","20","6160","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123544","1483129714","1483129736","1483123544","1","8","0","-1","22","6170","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123571","1483129727","1483129747","1483123571","1","8","0","-1","20","6156","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123661","1483129849","1483129878","1483123661","1","8","0","-1","29","6188","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123694","1483129882","1483129911","1483123694","1","8","0","-1","29","6188","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123700","1483129907","1483129931","1483123700","1","8","0","-1","24","6207","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123792","1483129998","1483130021","1483123792","1","8","0","-1","23","6206","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123886","1483130088","1483130114","1483123886","1","8","0","-1","26","6202","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123949","1483130207","1483130230","1483123949","1","8","0","-1","23","6258","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123960","1483130232","1483130258","1483123960","1","8","0","-1","26","6272","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124012","1483130273","1483130296","1483124012","1","8","0","-1","23","6261","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124050","1483130308","1483130332","1483124050","1","8","0","-1","24","6258","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124072","1483130332","1483130352","1483124072","1","8","0","-1","20","6260","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124079","1483130339","1483130355","1483124079","1","8","0","-1","16","6260","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989924","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124093","1483130356","1483130383","1483124093","1","8","0","-1","27","6263","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124160","1483130402","1483130423","1483124160","1","8","0","-1","21","6242","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124171","1483130424","1483130452","1483124171","1","8","0","-1","28","6253","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124189","1483130436","1483130457","1483124189","1","8","0","-1","21","6247","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124196","1483130453","1483130475","1483124196","1","8","0","-1","22","6257","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124205","1483130457","1483130482","1483124205","1","8","0","-1","25","6252","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124227","1483130458","1483130476","1483124227","1","8","0","-1","18","6231","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124242","1483130461","1483130486","1483124242","1","8","0","-1","25","6219","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124306","1483130483","1483130505","1483124306","1","8","0","-1","22","6177","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124313","1483130487","1483130515","1483124313","1","8","0","-1","28","6174","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989974","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124314","1483130495","1483130516","1483124314","1","8","0","-1","21","6181","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124315","1483130506","1483130526","1483124315","1","8","0","-1","20","6191","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989978","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124318","1483130506","1483130532","1483124318","1","8","0","-1","26","6188","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989980","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124320","1483130507","1483130529","1483124320","1","8","0","-1","22","6187","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124425","1483130552","1483130581","1483124425","1","8","0","-1","29","6127","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124437","1483130564","1483130589","1483124437","1","8","0","-1","25","6127","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124514","1483130630","1483130653","1483124514","1","8","0","-1","23","6116","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124593","1483130685","1483130714","1483124593","1","8","0","-1","29","6092","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124655","1483130700","1483130721","1483124655","1","8","0","-1","21","6045","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124664","1483130714","1483130743","1483124664","1","8","0","-1","29","6050","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124670","1483130722","1483130746","1483124670","1","8","0","-1","24","6052","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124713","1483130773","1483130797","1483124713","1","8","0","-1","24","6060","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124727","1483130795","1483130820","1483124727","1","8","0","-1","25","6068","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124732","1483130808","1483130826","1483124732","1","8","0","-1","18","6076","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124775","1483130847","1483130873","1483124775","1","8","0","-1","26","6072","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124792","1483130864","1483130879","1483124792","1","8","0","-1","15","6072","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124821","1483130880","1483130901","1483124821","1","8","0","-1","21","6059","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124821","1483130882","1483130902","1483124821","1","8","0","-1","20","6061","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124822","1483130887","1483130904","1483124822","1","8","0","-1","17","6065","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124829","1483130901","1483130919","1483124829","1","8","0","-1","18","6072","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124833","1483130902","1483130922","1483124833","1","8","0","-1","20","6069","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124839","1483130902","1483130921","1483124839","1","8","0","-1","19","6063","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124862","1483130908","1483130931","1483124862","1","8","0","-1","23","6046","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124864","1483130920","1483130937","1483124864","1","8","0","-1","17","6056","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124865","1483130922","1483130935","1483124865","1","8","0","-1","13","6057","104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124866","1483130923","1483130936","1483124866","1","8","0","-1","13","6057","104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124877","1483130928","1483130947","1483124877","1","8","0","-1","19","6051","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124894","1483130936","1483130956","1483124894","1","8","0","-1","20","6042","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124894","1483130938","1483130964","1483124894","1","8","0","-1","26","6044","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124951","1483130983","1483131006","1483124951","1","8","0","-1","23","6032","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124962","1483130996","1483131024","1483124962","1","8","0","-1","28","6034","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124997","1483131034","1483131052","1483124997","1","8","0","-1","18","6037","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124997","1483131046","1483131070","1483124997","1","8","0","-1","24","6049","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125014","1483131053","1483131080","1483125014","1","8","0","-1","27","6039","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125019","1483131057","1483131078","1483125019","1","8","0","-1","21","6038","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125078","1483131106","1483131133","1483125078","1","8","0","-1","27","6028","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990218","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125084","1483131123","1483131151","1483125084","1","8","0","-1","28","6039","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125123","1483131134","1483131158","1483125123","1","8","0","-1","24","6011","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125143","1483131148","1483131173","1483125143","1","8","0","-1","25","6005","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125148","1483131152","1483131177","1483125148","1","8","0","-1","25","6004","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125155","1483131169","1483131189","1483125155","1","8","0","-1","20","6014","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125240","1483131233","1483131259","1483125240","1","8","0","-1","26","5993","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125251","1483131249","1483131266","1483125251","1","8","0","-1","17","5998","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125259","1483131260","1483131288","1483125259","1","8","0","-1","28","6001","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125260","1483131263","1483131292","1483125260","1","8","0","-1","29","6003","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125266","1483131267","1483131285","1483125266","1","8","0","-1","18","6001","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125284","1483131286","1483131303","1483125284","1","8","0","-1","17","6002","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125290","1483131288","1483131304","1483125290","1","8","0","-1","16","5998","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125308","1483131293","1483131315","1483125308","1","8","0","-1","22","5985","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125315","1483131300","1483131328","1483125315","1","8","0","-1","28","5985","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125363","1483131304","1483131320","1483125363","1","8","0","-1","16","5941","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125372","1483131309","1483131328","1483125372","1","8","0","-1","19","5937","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125374","1483131316","1483131339","1483125374","1","8","0","-1","23","5942","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125389","1483131320","1483131349","1483125389","1","8","0","-1","29","5931","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125391","1483131328","1483131354","1483125391","1","8","0","-1","26","5937","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125392","1483131329","1483131356","1483125392","1","8","0","-1","27","5937","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125401","1483131331","1483131346","1483125401","1","8","0","-1","15","5930","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125426","1483131339","1483131366","1483125426","1","8","0","-1","27","5913","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125431","1483131346","1483131365","1483125431","1","8","0","-1","19","5915","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125443","1483131355","1483131378","1483125443","1","8","0","-1","23","5912","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125448","1483131357","1483131380","1483125448","1","8","0","-1","23","5909","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125463","1483131367","1483131396","1483125463","1","8","0","-1","29","5904","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125464","1483131379","1483131402","1483125464","1","8","0","-1","23","5915","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125473","1483131381","1483131404","1483125473","1","8","0","-1","23","5908","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125473","1483131391","1483131413","1483125473","1","8","0","-1","22","5918","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125495","1483131403","1483131423","1483125495","1","8","0","-1","20","5908","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125497","1483131404","1483131425","1483125497","1","8","0","-1","21","5907","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125499","1483131414","1483131431","1483125499","1","8","0","-1","17","5915","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125513","1483131422","1483131441","1483125513","1","8","0","-1","19","5909","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125517","1483131424","1483131439","1483125517","1","8","0","-1","15","5907","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125518","1483131425","1483131449","1483125518","1","8","0","-1","24","5907","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125535","1483131440","1483131468","1483125535","1","8","0","-1","28","5905","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125569","1483131468","1483131490","1483125569","1","8","0","-1","22","5899","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125584","1483131473","1483131498","1483125584","1","8","0","-1","25","5889","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125595","1483131490","1483131511","1483125595","1","8","0","-1","21","5895","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125599","1483131498","1483131523","1483125599","1","8","0","-1","25","5899","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125616","1483131512","1483131535","1483125616","1","8","0","-1","23","5896","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125631","1483131523","1483131541","1483125631","1","8","0","-1","18","5892","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990372","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125632","1483131528","1483131551","1483125632","1","8","0","-1","23","5896","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125635","1483131538","1483131567","1483125635","1","8","0","-1","29","5903","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125650","1483131542","1483131562","1483125650","1","8","0","-1","20","5892","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125717","1483131640","1483131656","1483125717","1","8","0","-1","16","5923","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125732","1483131646","1483131665","1483125732","1","8","0","-1","19","5914","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125748","1483131657","1483131678","1483125748","1","8","0","-1","21","5909","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990412","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125762","1483131666","1483131687","1483125762","1","8","0","-1","21","5904","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125777","1483131671","1483131695","1483125777","1","8","0","-1","24","5894","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125781","1483131676","1483131692","1483125781","1","8","0","-1","16","5895","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125782","1483131679","1483131706","1483125782","1","8","0","-1","27","5897","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990422","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125784","1483131687","1483131702","1483125784","1","8","0","-1","15","5903","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990424","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125795","1483131693","1483131719","1483125795","1","8","0","-1","26","5898","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125802","1483131695","1483131723","1483125802","1","8","0","-1","28","5893","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125864","1483131804","1483131832","1483125864","1","8","0","-1","28","5940","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125891","1483131832","1483131857","1483125891","1","8","0","-1","25","5941","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125898","1483131850","1483131877","1483125898","1","8","0","-1","27","5952","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125990","1483131915","1483131938","1483125990","1","8","0","-1","23","5925","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126075","1483131954","1483131977","1483126075","1","8","0","-1","23","5879","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126105","1483131977","1483132002","1483126105","1","8","0","-1","25","5872","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126106","1483131986","1483132006","1483126106","1","8","0","-1","20","5880","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126132","1483132004","1483132026","1483126132","1","8","0","-1","22","5872","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126133","1483132007","1483132027","1483126133","1","8","0","-1","20","5874","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126142","1483132022","1483132050","1483126142","1","8","0","-1","28","5880","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126154","1483132028","1483132057","1483126154","1","8","0","-1","29","5874","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126154","1483132028","1483132057","1483126154","1","8","0","-1","29","5874","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126204","1483132076","1483132103","1483126204","1","8","0","-1","27","5872","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126233","1483132100","1483132125","1483126233","1","8","0","-1","25","5867","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126237","1483132107","1483132135","1483126237","1","8","0","-1","28","5870","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126259","1483132126","1483132153","1483126259","1","8","0","-1","27","5867","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126298","1483132156","1483132184","1483126298","1","8","0","-1","28","5858","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126350","1483132249","1483132277","1483126350","1","8","0","-1","28","5899","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126359","1483132258","1483132278","1483126359","1","8","0","-1","20","5899","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126370","1483132277","1483132304","1483126370","1","8","0","-1","27","5907","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126427","1483132328","1483132349","1483126427","1","8","0","-1","21","5901","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126444","1483132350","1483132379","1483126444","1","8","0","-1","29","5906","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126448","1483132359","1483132377","1483126448","1","8","0","-1","18","5911","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126455","1483132378","1483132406","1483126455","1","8","0","-1","28","5923","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126457","1483132380","1483132401","1483126457","1","8","0","-1","21","5923","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126474","1483132386","1483132402","1483126474","1","8","0","-1","16","5912","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126482","1483132402","1483132420","1483126482","1","8","0","-1","18","5920","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126515","1483132435","1483132460","1483126515","1","8","0","-1","25","5920","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126545","1483132465","1483132484","1483126545","1","8","0","-1","19","5920","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126547","1483132466","1483132493","1483126547","1","8","0","-1","27","5919","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126572","1483132510","1483132528","1483126572","1","8","0","-1","18","5938","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126592","1483132519","1483132541","1483126592","1","8","0","-1","22","5927","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126596","1483132529","1483132545","1483126596","1","8","0","-1","16","5933","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126611","1483132542","1483132559","1483126611","1","8","0","-1","17","5931","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126633","1483132557","1483132576","1483126633","1","8","0","-1","19","5924","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126648","1483132560","1483132584","1483126648","1","8","0","-1","24","5912","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126653","1483132572","1483132589","1483126653","1","8","0","-1","17","5919","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126670","1483132585","1483132613","1483126670","1","8","0","-1","28","5915","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126677","1483132589","1483132618","1483126677","1","8","0","-1","29","5912","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126698","1483132606","1483132629","1483126698","1","8","0","-1","23","5908","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126702","1483132613","1483132641","1483126702","1","8","0","-1","28","5911","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126723","1483132624","1483132649","1483126723","1","8","0","-1","25","5901","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126741","1483132629","1483132642","1483126741","1","8","0","-1","13","5888","104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126746","1483132641","1483132660","1483126746","1","8","0","-1","19","5895","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126750","1483132643","1483132661","1483126750","1","8","0","-1","18","5893","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126750","1483132643","1483132661","1483126750","1","8","0","-1","18","5893","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126767","1483132650","1483132678","1483126767","1","8","0","-1","28","5883","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126784","1483132662","1483132674","1483126784","1","8","0","-1","12","5878","96","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126786","1483132662","1483132676","1483126786","1","8","0","-1","14","5876","112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126788","1483132675","1483132686","1483126788","1","8","0","-1","11","5887","88","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126800","1483132676","1483132691","1483126800","1","8","0","-1","15","5876","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126819","1483132686","1483132711","1483126819","1","8","0","-1","25","5867","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126851","1483132718","1483132745","1483126851","1","8","0","-1","27","5867","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126860","1483132727","1483132747","1483126860","1","8","0","-1","20","5867","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126877","1483132745","1483132773","1483126877","1","8","0","-1","28","5868","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126879","1483132748","1483132771","1483126879","1","8","0","-1","23","5869","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126901","1483132772","1483132797","1483126901","1","8","0","-1","25","5871","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126921","1483132794","1483132818","1483126921","1","8","0","-1","24","5873","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126939","1483132802","1483132824","1483126939","1","8","0","-1","22","5863","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126963","1483132824","1483132853","1483126963","1","8","0","-1","29","5861","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127026","1483132891","1483132917","1483127026","1","8","0","-1","26","5865","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127036","1483132919","1483132946","1483127036","1","8","0","-1","27","5883","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127062","1483132934","1483132960","1483127062","1","8","0","-1","26","5872","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127083","1483132955","1483132978","1483127083","1","8","0","-1","23","5872","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127089","1483132976","1483132999","1483127089","1","8","0","-1","23","5887","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990826","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127142","1483132997","1483133017","1483127142","1","8","0","-1","20","5855","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127143","1483132999","1483133022","1483127143","1","8","0","-1","23","5856","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127176","1483133023","1483133040","1483127176","1","8","0","-1","17","5847","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127204","1483133041","1483133058","1483127204","1","8","0","-1","17","5837","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127211","1483133051","1483133071","1483127211","1","8","0","-1","20","5840","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127231","1483133089","1483133108","1483127231","1","8","0","-1","19","5858","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127300","1483133160","1483133186","1483127300","1","8","0","-1","26","5860","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127320","1483133178","1483133207","1483127320","1","8","0","-1","29","5858","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127334","1483133189","1483133218","1483127334","1","8","0","-1","29","5855","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127358","1483133208","1483133225","1483127358","1","8","0","-1","17","5850","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127373","1483133216","1483133232","1483127373","1","8","0","-1","16","5843","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127379","1483133218","1483133232","1483127379","1","8","0","-1","14","5839","112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127383","1483133221","1483133235","1483127383","1","8","0","-1","14","5838","112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127398","1483133226","1483133241","1483127398","1","8","0","-1","15","5828","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127401","1483133233","1483133261","1483127401","1","8","0","-1","28","5832","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127402","1483133233","1483133254","1483127402","1","8","0","-1","21","5831","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127425","1483133235","1483133260","1483127425","1","8","0","-1","25","5810","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127434","1483133239","1483133255","1483127434","1","8","0","-1","16","5805","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127449","1483133242","1483133263","1483127449","1","8","0","-1","21","5793","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127489","1483133264","1483133289","1483127489","1","8","0","-1","25","5775","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127497","1483133288","1483133307","1483127497","1","8","0","-1","19","5791","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127500","1483133290","1483133312","1483127500","1","8","0","-1","22","5790","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127521","1483133295","1483133308","1483127521","1","8","0","-1","13","5774","104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990942","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127527","1483133303","1483133324","1483127527","1","8","0","-1","21","5776","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127529","1483133308","1483133334","1483127529","1","8","0","-1","26","5779","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127532","1483133308","1483133332","1483127532","1","8","0","-1","24","5776","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990952","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127546","1483133322","1483133345","1483127546","1","8","0","-1","23","5776","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127549","1483133324","1483133350","1483127549","1","8","0","-1","26","5775","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127587","1483133333","1483133353","1483127587","1","8","0","-1","20","5746","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127590","1483133346","1483133361","1483127590","1","8","0","-1","15","5756","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127645","1483133353","1483133378","1483127645","1","8","0","-1","25","5708","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127661","1483133360","1483133389","1483127661","1","8","0","-1","29","5699","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127663","1483133361","1483133382","1483127663","1","8","0","-1","21","5698","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127668","1483133373","1483133391","1483127668","1","8","0","-1","18","5705","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127713","1483133393","1483133421","1483127713","1","8","0","-1","28","5680","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127723","1483133406","1483133429","1483127723","1","8","0","-1","23","5683","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127725","1483133413","1483133432","1483127725","1","8","0","-1","19","5688","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127742","1483133429","1483133454","1483127742","1","8","0","-1","25","5687","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991010","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127782","1483133464","1483133480","1483127782","1","8","0","-1","16","5682","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127786","1483133468","1483133493","1483127786","1","8","0","-1","25","5682","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127789","1483133481","1483133508","1483127789","1","8","0","-1","27","5692","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127802","1483133494","1483133522","1483127802","1","8","0","-1","28","5692","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127816","1483133504","1483133524","1483127816","1","8","0","-1","20","5688","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127847","1483133516","1483133526","1483127847","1","8","0","-1","10","5669","80","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127853","1483133517","1483133532","1483127853","1","8","0","-1","15","5664","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127856","1483133520","1483133535","1483127856","1","8","0","-1","15","5664","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127873","1483133523","1483133545","1483127873","1","8","0","-1","22","5650","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127875","1483133524","1483133549","1483127875","1","8","0","-1","25","5649","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127893","1483133526","1483133547","1483127893","1","8","0","-1","21","5633","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127936","1483133546","1483133566","1483127936","1","8","0","-1","20","5610","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127940","1483133548","1483133562","1483127940","1","8","0","-1","14","5608","112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127944","1483133549","1483133568","1483127944","1","8","0","-1","19","5605","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128027","1483133569","1483133587","1483128027","1","8","0","-1","18","5542","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128040","1483133587","1483133606","1483128040","1","8","0","-1","19","5547","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128065","1483133607","1483133623","1483128065","1","8","0","-1","16","5542","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128076","1483133627","1483133640","1483128076","1","8","0","-1","13","5551","104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128096","1483133637","1483133664","1483128096","1","8","0","-1","27","5541","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128097","1483133638","1483133662","1483128097","1","8","0","-1","24","5541","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128103","1483133641","1483133663","1483128103","1","8","0","-1","22","5538","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128142","1483133688","1483133715","1483128142","1","8","0","-1","27","5546","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128148","1483133696","1483133722","1483128148","1","8","0","-1","26","5548","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128176","1483133696","1483133720","1483128176","1","8","0","-1","24","5520","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128182","1483133699","1483133723","1483128182","1","8","0","-1","24","5517","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128220","1483133721","1483133739","1483128220","1","8","0","-1","18","5501","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128228","1483133723","1483133739","1483128228","1","8","0","-1","16","5495","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128298","1483133766","1483133784","1483128298","1","8","0","-1","18","5468","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128299","1483133784","1483133802","1483128299","1","8","0","-1","18","5485","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128310","1483133789","1483133817","1483128310","1","8","0","-1","28","5479","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128315","1483133790","1483133810","1483128315","1","8","0","-1","20","5475","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128324","1483133802","1483133823","1483128324","1","8","0","-1","21","5478","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128355","1483133809","1483133827","1483128355","1","8","0","-1","18","5454","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128367","1483133811","1483133827","1483128367","1","8","0","-1","16","5444","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128372","1483133811","1483133828","1483128372","1","8","0","-1","17","5439","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128384","1483133817","1483133843","1483128384","1","8","0","-1","26","5433","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128410","1483133824","1483133847","1483128410","1","8","0","-1","23","5414","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128412","1483133827","1483133852","1483128412","1","8","0","-1","25","5415","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128434","1483133829","1483133849","1483128434","1","8","0","-1","20","5395","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128481","1483133882","1483133906","1483128481","1","8","0","-1","24","5401","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128484","1483133886","1483133913","1483128484","1","8","0","-1","27","5402","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128572","1483133997","1483134024","1483128572","1","8","0","-1","27","5425","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128646","1483134091","1483134109","1483128646","1","8","0","-1","18","5445","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128672","1483134110","1483134130","1483128672","1","8","0","-1","20","5438","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128684","1483134125","1483134147","1483128684","1","8","0","-1","22","5441","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128691","1483134130","1483134157","1483128691","1","8","0","-1","27","5439","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128696","1483134131","1483134149","1483128696","1","8","0","-1","18","5435","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128715","1483134150","1483134167","1483128715","1","8","0","-1","17","5435","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128722","1483134157","1483134177","1483128722","1","8","0","-1","20","5435","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128727","1483134168","1483134182","1483128727","1","8","0","-1","14","5441","112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128728","1483134172","1483134191","1483128728","1","8","0","-1","19","5444","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128737","1483134177","1483134201","1483128737","1","8","0","-1","24","5440","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128865","1483134282","1483134303","1483128865","1","8","0","-1","21","5417","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128869","1483134304","1483134326","1483128869","1","8","0","-1","22","5435","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128871","1483134304","1483134326","1483128871","1","8","0","-1","22","5433","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128877","1483134309","1483134336","1483128877","1","8","0","-1","27","5432","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128884","1483134326","1483134352","1483128884","1","8","0","-1","26","5442","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128887","1483134327","1483134348","1483128887","1","8","0","-1","21","5440","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128896","1483134327","1483134345","1483128896","1","8","0","-1","18","5431","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128945","1483134349","1483134371","1483128945","1","8","0","-1","22","5404","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128945","1483134352","1483134370","1483128945","1","8","0","-1","18","5407","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128948","1483134363","1483134392","1483128948","1","8","0","-1","29","5415","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129036","1483134427","1483134448","1483129036","1","8","0","-1","21","5391","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129049","1483134442","1483134461","1483129049","1","8","0","-1","19","5393","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129052","1483134461","1483134480","1483129052","1","8","0","-1","19","5409","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991356","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129116","1483134528","1483134553","1483129116","1","8","0","-1","25","5412","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129141","1483134554","1483134579","1483129141","1","8","0","-1","25","5413","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129168","1483134589","1483134612","1483129168","1","8","0","-1","23","5421","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129184","1483134605","1483134625","1483129184","1","8","0","-1","20","5421","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129194","1483134612","1483134641","1483129194","1","8","0","-1","29","5418","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129212","1483134626","1483134649","1483129212","1","8","0","-1","23","5414","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129233","1483134643","1483134671","1483129233","1","8","0","-1","28","5410","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129240","1483134649","1483134672","1483129240","1","8","0","-1","23","5409","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129240","1483134660","1483134686","1483129240","1","8","0","-1","26","5420","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129254","1483134670","1483134694","1483129254","1","8","0","-1","24","5416","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129333","1483134722","1483134737","1483129333","1","8","0","-1","15","5389","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129360","1483134728","1483134752","1483129360","1","8","0","-1","24","5368","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129361","1483134737","1483134759","1483129361","1","8","0","-1","22","5376","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129413","1483134753","1483134779","1483129413","1","8","0","-1","26","5340","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129456","1483134783","1483134810","1483129456","1","8","0","-1","27","5327","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129501","1483134825","1483134847","1483129501","1","8","0","-1","22","5324","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129519","1483134848","1483134873","1483129519","1","8","0","-1","25","5329","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129686","1483134991","1483135017","1483129686","1","8","0","-1","26","5305","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129747","1483135096","1483135120","1483129747","1","8","0","-1","24","5349","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129778","1483135150","1483135176","1483129778","1","8","0","-1","26","5372","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129803","1483135198","1483135220","1483129803","1","8","0","-1","22","5395","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129804","1483135201","1483135230","1483129804","1","8","0","-1","29","5397","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129815","1483135220","1483135241","1483129815","1","8","0","-1","21","5405","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129829","1483135226","1483135248","1483129829","1","8","0","-1","22","5397","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129878","1483135252","1483135272","1483129878","1","8","0","-1","20","5374","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129979","1483135335","1483135355","1483129979","1","8","0","-1","20","5356","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129998","1483135347","1483135370","1483129998","1","8","0","-1","23","5349","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129999","1483135356","1483135382","1483129999","1","8","0","-1","26","5357","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130030","1483135383","1483135406","1483130030","1","8","0","-1","23","5353","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130103","1483135460","1483135487","1483130103","1","8","0","-1","27","5357","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130182","1483135514","1483135541","1483130182","1","8","0","-1","27","5332","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130234","1483135569","1483135593","1483130234","1","8","0","-1","24","5335","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130376","1483135769","1483135796","1483130376","1","8","0","-1","27","5393","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130385","1483135797","1483135824","1483130385","1","8","0","-1","27","5412","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130423","1483135823","1483135852","1483130423","1","8","0","-1","29","5400","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130450","1483135878","1483135901","1483130450","1","8","0","-1","23","5428","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130486","1483135932","1483135961","1483130486","1","8","0","-1","29","5446","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130515","1483135965","1483135988","1483130515","1","8","0","-1","23","5450","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130516","1483135978","1483136001","1483130516","1","8","0","-1","23","5462","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130526","1483135982","1483135999","1483130526","1","8","0","-1","17","5456","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130532","1483135987","1483136009","1483130532","1","8","0","-1","22","5455","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130552","1483135989","1483136007","1483130552","1","8","0","-1","18","5437","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130569","1483136010","1483136028","1483130569","1","8","0","-1","18","5441","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130577","1483136010","1483136027","1483130577","1","8","0","-1","17","5433","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130587","1483136028","1483136057","1483130587","1","8","0","-1","29","5441","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130589","1483136030","1483136056","1483130589","1","8","0","-1","26","5441","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130590","1483136045","1483136073","1483130590","1","8","0","-1","28","5455","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130590","1483136055","1483136079","1483130590","1","8","0","-1","24","5465","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130601","1483136062","1483136087","1483130601","1","8","0","-1","25","5461","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130619","1483136096","1483136113","1483130619","1","8","0","-1","17","5477","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130619","1483136113","1483136135","1483130619","1","8","0","-1","22","5494","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130621","1483136116","1483136136","1483130621","1","8","0","-1","20","5495","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130655","1483136159","1483136181","1483130655","1","8","0","-1","22","5504","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130662","1483136169","1483136194","1483130662","1","8","0","-1","25","5507","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130734","1483136247","1483136276","1483130734","1","8","0","-1","29","5513","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130795","1483136294","1483136321","1483130795","1","8","0","-1","27","5499","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130797","1483136301","1483136330","1483130797","1","8","0","-1","29","5504","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130808","1483136301","1483136326","1483130808","1","8","0","-1","25","5493","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130820","1483136316","1483136338","1483130820","1","8","0","-1","22","5496","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130902","1483136404","1483136421","1483130902","1","8","0","-1","17","5502","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130939","1483136489","1483136514","1483130939","1","8","0","-1","25","5550","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130964","1483136518","1483136537","1483130964","1","8","0","-1","19","5554","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131034","1483136614","1483136642","1483131034","1","8","0","-1","28","5580","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131249","1483136993","1483137019","1483131249","1","8","0","-1","26","5744","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131304","1483137058","1483137082","1483131304","1","8","0","-1","24","5754","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131309","1483137077","1483137105","1483131309","1","8","0","-1","28","5768","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131329","1483137106","1483137135","1483131329","1","8","0","-1","29","5777","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131519","1483137388","1483137414","1483131519","1","8","0","-1","26","5869","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131614","1483137485","1483137505","1483131614","1","8","0","-1","20","5871","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131640","1483137487","1483137508","1483131640","1","8","0","-1","21","5847","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131646","1483137506","1483137531","1483131646","1","8","0","-1","25","5860","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131675","1483137582","1483137608","1483131675","1","8","0","-1","26","5907","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131678","1483137586","1483137608","1483131678","1","8","0","-1","22","5908","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131807","1483137696","1483137722","1483131807","1","8","0","-1","26","5889","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131832","1483137712","1483137741","1483131832","1","8","0","-1","29","5880","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992220","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131873","1483137738","1483137766","1483131873","1","8","0","-1","28","5865","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131892","1483137789","1483137813","1483131892","1","8","0","-1","24","5897","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131903","1483137795","1483137821","1483131903","1","8","0","-1","26","5892","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131915","1483137808","1483137833","1483131915","1","8","0","-1","25","5893","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131929","1483137813","1483137838","1483131929","1","8","0","-1","25","5884","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131931","1483137822","1483137843","1483131931","1","8","0","-1","21","5891","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131954","1483137844","1483137872","1483131954","1","8","0","-1","28","5890","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132082","1483137980","1483138007","1483132082","1","8","0","-1","27","5898","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132099","1483138003","1483138029","1483132099","1","8","0","-1","26","5904","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132103","1483138007","1483138031","1483132103","1","8","0","-1","24","5904","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132311","1483138252","1483138273","1483132311","1","8","0","-1","21","5941","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132338","1483138285","1483138310","1483132338","1","8","0","-1","25","5947","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132379","1483138321","1483138349","1483132379","1","8","0","-1","28","5942","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132485","1483138421","1483138447","1483132485","1","8","0","-1","26","5936","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992410","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132519","1483138448","1483138469","1483132519","1","8","0","-1","21","5929","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132528","1483138451","1483138474","1483132528","1","8","0","-1","23","5923","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132529","1483138474","1483138494","1483132529","1","8","0","-1","20","5945","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992424","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132545","1483138494","1483138519","1483132545","1","8","0","-1","25","5949","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132557","1483138494","1483138515","1483132557","1","8","0","-1","21","5937","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132571","1483138499","1483138520","1483132571","1","8","0","-1","21","5928","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132584","1483138520","1483138538","1483132584","1","8","0","-1","18","5936","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132589","1483138521","1483138548","1483132589","1","8","0","-1","27","5932","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132589","1483138521","1483138548","1483132589","1","8","0","-1","27","5932","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132606","1483138535","1483138563","1483132606","1","8","0","-1","28","5929","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132618","1483138549","1483138576","1483132618","1","8","0","-1","27","5931","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132661","1483138625","1483138652","1483132661","1","8","0","-1","27","5964","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132676","1483138650","1483138674","1483132676","1","8","0","-1","24","5974","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132748","1483138727","1483138756","1483132748","1","8","0","-1","29","5979","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132810","1483138817","1483138846","1483132810","1","8","0","-1","29","6007","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132853","1483138880","1483138908","1483132853","1","8","0","-1","28","6027","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132884","1483138883","1483138906","1483132884","1","8","0","-1","23","5999","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132890","1483138891","1483138920","1483132890","1","8","0","-1","29","6001","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133091","1483139167","1483139191","1483133091","1","8","0","-1","24","6076","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133101","1483139189","1483139210","1483133101","1","8","0","-1","21","6088","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133110","1483139211","1483139238","1483133110","1","8","0","-1","27","6101","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133112","1483139224","1483139248","1483133112","1","8","0","-1","24","6112","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133177","1483139268","1483139293","1483133177","1","8","0","-1","25","6091","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133190","1483139293","1483139321","1483133190","1","8","0","-1","28","6103","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133201","1483139294","1483139319","1483133201","1","8","0","-1","25","6093","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133202","1483139300","1483139329","1483133202","1","8","0","-1","29","6098","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133220","1483139330","1483139359","1483133220","1","8","0","-1","29","6110","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133232","1483139342","1483139363","1483133232","1","8","0","-1","21","6110","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133233","1483139360","1483139382","1483133233","1","8","0","-1","22","6127","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133235","1483139364","1483139386","1483133235","1","8","0","-1","22","6129","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133324","1483139517","1483139536","1483133324","1","8","0","-1","19","6193","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133373","1483139579","1483139607","1483133373","1","8","0","-1","28","6206","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133378","1483139580","1483139603","1483133378","1","8","0","-1","23","6202","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133382","1483139591","1483139613","1483133382","1","8","0","-1","22","6209","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133435","1483139694","1483139716","1483133435","1","8","0","-1","22","6259","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133511","1483139775","1483139799","1483133511","1","8","0","-1","24","6264","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133517","1483139789","1483139806","1483133517","1","8","0","-1","17","6272","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133519","1483139790","1483139819","1483133519","1","8","0","-1","29","6271","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133522","1483139792","1483139812","1483133522","1","8","0","-1","20","6270","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992788","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133525","1483139800","1483139823","1483133525","1","8","0","-1","23","6275","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133682","1483140057","1483140084","1483133682","1","8","0","-1","27","6375","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133732","1483140176","1483140202","1483133732","1","8","0","-1","26","6444","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133809","1483140316","1483140343","1483133809","1","8","0","-1","27","6507","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133817","1483140361","1483140385","1483133817","1","8","0","-1","24","6544","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133823","1483140365","1483140388","1483133823","1","8","0","-1","23","6542","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133824","1483140373","1483140397","1483133824","1","8","0","-1","24","6549","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992932","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133885","1483140461","1483140482","1483133885","1","8","0","-1","21","6576","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134167","1483140795","1483140819","1483134167","1","8","0","-1","24","6628","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134171","1483140796","1483140821","1483134171","1","8","0","-1","25","6625","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134177","1483140803","1483140825","1483134177","1","8","0","-1","22","6626","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134191","1483140821","1483140848","1483134191","1","8","0","-1","27","6630","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134303","1483140879","1483140908","1483134303","1","8","0","-1","29","6576","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134348","1483140943","1483140968","1483134348","1","8","0","-1","25","6595","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134371","1483140964","1483140981","1483134371","1","8","0","-1","17","6593","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134443","1483141027","1483141049","1483134443","1","8","0","-1","22","6584","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134461","1483141047","1483141069","1483134461","1","8","0","-1","22","6586","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134477","1483141050","1483141072","1483134477","1","8","0","-1","22","6573","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134511","1483141065","1483141094","1483134511","1","8","0","-1","29","6554","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134528","1483141070","1483141098","1483134528","1","8","0","-1","28","6542","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134660","1483141200","1483141229","1483134660","1","8","0","-1","29","6540","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134787","1483141408","1483141433","1483134787","1","8","0","-1","25","6621","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134942","1483141537","1483141563","1483134942","1","8","0","-1","26","6595","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134954","1483141549","1483141570","1483134954","1","8","0","-1","21","6595","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134960","1483141555","1483141580","1483134960","1","8","0","-1","25","6595","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135017","1483141588","1483141613","1483135017","1","8","0","-1","25","6571","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135037","1483141609","1483141633","1483135037","1","8","0","-1","24","6572","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135060","1483141622","1483141651","1483135060","1","8","0","-1","29","6562","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135093","1483141631","1483141658","1483135093","1","8","0","-1","27","6538","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135105","1483141637","1483141660","1483135105","1","8","0","-1","23","6532","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135114","1483141652","1483141675","1483135114","1","8","0","-1","23","6538","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135134","1483141661","1483141689","1483135134","1","8","0","-1","28","6527","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135146","1483141671","1483141687","1483135146","1","8","0","-1","16","6525","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135151","1483141676","1483141701","1483135151","1","8","0","-1","25","6525","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135154","1483141686","1483141704","1483135154","1","8","0","-1","18","6532","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135166","1483141688","1483141710","1483135166","1","8","0","-1","22","6522","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135176","1483141690","1483141717","1483135176","1","8","0","-1","27","6514","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135304","1483141831","1483141860","1483135304","1","8","0","-1","29","6527","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135307","1483141837","1483141860","1483135307","1","8","0","-1","23","6530","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135355","1483141861","1483141886","1483135355","1","8","0","-1","25","6506","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135438","1483141933","1483141957","1483135438","1","8","0","-1","24","6495","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135514","1483142009","1483142035","1483135514","1","8","0","-1","26","6495","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135538","1483142036","1483142062","1483135538","1","8","0","-1","26","6498","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993406","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135634","1483142132","1483142153","1483135634","1","8","0","-1","21","6498","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135658","1483142140","1483142151","1483135658","1","8","0","-1","11","6482","88","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135680","1483142154","1483142175","1483135680","1","8","0","-1","21","6474","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993422","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135714","1483142196","1483142224","1483135714","1","8","0","-1","28","6482","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135796","1483142270","1483142294","1483135796","1","8","0","-1","24","6474","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135802","1483142288","1483142311","1483135802","1","8","0","-1","23","6486","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135877","1483142325","1483142348","1483135877","1","8","0","-1","23","6448","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135918","1483142349","1483142376","1483135918","1","8","0","-1","27","6431","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135919","1483142350","1483142377","1483135919","1","8","0","-1","27","6431","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135923","1483142368","1483142394","1483135923","1","8","0","-1","26","6445","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135935","1483142378","1483142401","1483135935","1","8","0","-1","23","6443","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177155","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116434","1483120090","1483120104","1483116434","1","8","0","-1","14","3656","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177158","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116435","1483120105","1483120124","1483116435","1","8","0","-1","19","3670","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177162","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116436","1483120125","1483120140","1483116436","1","8","0","-1","15","3689","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177166","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116436","1483120140","1483120159","1483116436","1","8","0","-1","19","3704","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177170","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116437","1483120159","1483120173","1483116437","1","8","0","-1","14","3722","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177173","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116438","1483120173","1483120187","1483116438","1","8","0","-1","14","3735","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177177","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116438","1483120187","1483120206","1483116438","1","8","0","-1","19","3749","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177181","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116439","1483120206","1483120228","1483116439","1","8","0","-1","22","3767","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177185","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116440","1483120228","1483120242","1483116440","1","8","0","-1","14","3788","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177191","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116441","1483120243","1483120254","1483116441","1","8","0","-1","11","3802","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177193","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116442","1483120254","1483120269","1483116442","1","8","0","-1","15","3812","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177195","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116442","1483120269","1483120285","1483116442","1","8","0","-1","16","3827","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177198","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116442","1483120285","1483120308","1483116442","1","8","0","-1","23","3843","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177202","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116443","1483120309","1483120322","1483116443","1","8","0","-1","13","3866","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177206","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116444","1483120322","1483120336","1483116444","1","8","0","-1","14","3878","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177209","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116444","1483120336","1483120356","1483116444","1","8","0","-1","20","3892","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177213","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116445","1483120356","1483120378","1483116445","1","8","0","-1","22","3911","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177217","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116446","1483120378","1483120391","1483116446","1","8","0","-1","13","3932","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177221","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116447","1483120392","1483120408","1483116447","1","8","0","-1","16","3945","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177224","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116447","1483120408","1483120420","1483116447","1","8","0","-1","12","3961","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177228","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116448","1483120420","1483120437","1483116448","1","8","0","-1","17","3972","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177232","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116449","1483120438","1483120452","1483116449","1","8","0","-1","14","3989","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177236","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116450","1483120453","1483120464","1483116450","1","8","0","-1","11","4003","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177239","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116450","1483120464","1483120487","1483116450","1","8","0","-1","23","4014","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177247","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116452","1483120524","1483120549","1483116452","1","8","0","-1","25","4072","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177251","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116453","1483120549","1483120568","1483116453","1","8","0","-1","19","4096","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177254","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116453","1483120568","1483120579","1483116453","1","8","0","-1","11","4115","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177259","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116454","1483120580","1483120605","1483116454","1","8","0","-1","25","4126","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177263","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116455","1483120606","1483120618","1483116455","1","8","0","-1","12","4151","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177267","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116456","1483120618","1483120628","1483116456","1","8","0","-1","10","4162","80","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177271","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116457","1483120629","1483120654","1483116457","1","8","0","-1","25","4172","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177283","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116459","1483120724","1483120740","1483116459","1","8","0","-1","16","4265","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177288","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116460","1483120740","1483120757","1483116460","1","8","0","-1","17","4280","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177291","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116461","1483120758","1483120785","1483116461","1","8","0","-1","27","4297","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177295","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116461","1483120785","1483120799","1483116461","1","8","0","-1","14","4324","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177299","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116462","1483120800","1483120814","1483116462","1","8","0","-1","14","4338","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177311","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116465","1483120893","1483120909","1483116465","1","8","0","-1","16","4428","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177317","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116466","1483120941","1483120954","1483116466","1","8","0","-1","13","4475","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177321","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116466","1483120954","1483120970","1483116466","1","8","0","-1","16","4488","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177325","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116467","1483120970","1483120986","1483116467","1","8","0","-1","16","4503","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177328","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116468","1483120986","1483121000","1483116468","1","8","0","-1","14","4518","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177332","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116469","1483121000","1483121021","1483116469","1","8","0","-1","21","4531","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177340","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116470","1483121077","1483121104","1483116470","1","8","0","-1","27","4607","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177343","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116471","1483121104","1483121120","1483116471","1","8","0","-1","16","4633","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177348","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116472","1483121120","1483121132","1483116472","1","8","0","-1","12","4648","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177352","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116473","1483121133","1483121149","1483116473","1","8","0","-1","16","4660","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177356","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116473","1483121149","1483121164","1483116473","1","8","0","-1","15","4676","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177359","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116474","1483121164","1483121185","1483116474","1","8","0","-1","21","4690","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177363","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116475","1483121185","1483121207","1483116475","1","8","0","-1","22","4710","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177368","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116476","1483121208","1483121232","1483116476","1","8","0","-1","24","4732","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177372","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116477","1483121233","1483121248","1483116477","1","8","0","-1","15","4756","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177375","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116477","1483121248","1483121263","1483116477","1","8","0","-1","15","4771","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177379","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116478","1483121263","1483121276","1483116478","1","8","0","-1","13","4785","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177383","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116479","1483121276","1483121292","1483116479","1","8","0","-1","16","4797","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177387","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116480","1483121292","1483121306","1483116480","1","8","0","-1","14","4812","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177391","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116480","1483121306","1483121319","1483116480","1","8","0","-1","13","4826","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177394","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116481","1483121319","1483121348","1483116481","1","8","0","-1","29","4838","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177402","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116482","1483121389","1483121410","1483116482","1","8","0","-1","21","4907","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177410","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116484","1483121446","1483121470","1483116484","1","8","0","-1","24","4962","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177414","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116485","1483121470","1483121498","1483116485","1","8","0","-1","28","4985","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177423","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116487","1483121537","1483121562","1483116487","1","8","0","-1","25","5050","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177438","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116490","1483121778","1483121799","1483116490","1","8","0","-1","21","5288","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177442","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116490","1483121799","1483121816","1483116490","1","8","0","-1","17","5309","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177446","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116491","1483121817","1483121834","1483116491","1","8","0","-1","17","5326","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177449","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116492","1483121834","1483121848","1483116492","1","8","0","-1","14","5342","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177453","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116492","1483121849","1483121861","1483116492","1","8","0","-1","12","5357","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177457","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116493","1483121862","1483121884","1483116493","1","8","0","-1","22","5369","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177461","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116494","1483121885","1483121906","1483116494","1","8","0","-1","21","5391","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177464","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116495","1483121907","1483121932","1483116495","1","8","0","-1","25","5412","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177468","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116495","1483121932","1483121947","1483116495","1","8","0","-1","15","5437","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177472","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116496","1483121948","1483121959","1483116496","1","8","0","-1","11","5452","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177476","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116497","1483121959","1483121976","1483116497","1","8","0","-1","17","5462","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177479","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116497","1483121976","1483121991","1483116497","1","8","0","-1","15","5479","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177483","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116498","1483121991","1483122010","1483116498","1","8","0","-1","19","5493","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177487","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116499","1483122010","1483122032","1483116499","1","8","0","-1","22","5511","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177498","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116501","1483122114","1483122129","1483116501","1","8","0","-1","15","5613","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177502","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116502","1483122130","1483122141","1483116502","1","8","0","-1","11","5628","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177506","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116503","1483122142","1483122157","1483116503","1","8","0","-1","15","5639","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177509","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116503","1483122158","1483122172","1483116503","1","8","0","-1","14","5655","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177513","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116504","1483122173","1483122185","1483116504","1","8","0","-1","12","5669","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177517","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116505","1483122185","1483122196","1483116505","1","8","0","-1","11","5680","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177527","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116507","1483122261","1483122274","1483116507","1","8","0","-1","13","5754","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177530","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116507","1483122274","1483122294","1483116507","1","8","0","-1","20","5767","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177535","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116509","1483122294","1483122310","1483116509","1","8","0","-1","16","5785","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177537","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116509","1483122310","1483122328","1483116509","1","8","0","-1","18","5801","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177540","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116509","1483122329","1483122350","1483116509","1","8","0","-1","21","5820","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177545","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116510","1483122351","1483122364","1483116510","1","8","0","-1","13","5841","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177548","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116511","1483122365","1483122376","1483116511","1","8","0","-1","11","5854","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177552","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116512","1483122377","1483122402","1483116512","1","8","0","-1","25","5865","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177556","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116513","1483122402","1483122423","1483116513","1","8","0","-1","21","5889","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177560","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116513","1483122424","1483122442","1483116513","1","8","0","-1","18","5911","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177563","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116514","1483122442","1483122460","1483116514","1","8","0","-1","18","5928","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177567","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116515","1483122460","1483122482","1483116515","1","8","0","-1","22","5945","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177571","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116515","1483122482","1483122501","1483116515","1","8","0","-1","19","5967","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177575","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116516","1483122502","1483122517","1483116516","1","8","0","-1","15","5986","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177578","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116517","1483122517","1483122530","1483116517","1","8","0","-1","13","6000","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177582","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116518","1483122530","1483122552","1483116518","1","8","0","-1","22","6012","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177586","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116518","1483122553","1483122578","1483116518","1","8","0","-1","25","6035","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177590","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116519","1483122578","1483122598","1483116519","1","8","0","-1","20","6059","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177597","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116521","1483122636","1483122651","1483116521","1","8","0","-1","15","6115","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177607","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116523","1483122688","1483122710","1483116523","1","8","0","-1","22","6165","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177611","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116523","1483122740","1483122762","1483116523","1","8","0","-1","22","6217","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177623","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116526","1483122839","1483122857","1483116526","1","8","0","-1","18","6313","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177627","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116526","1483122857","1483122876","1483116526","1","8","0","-1","19","6331","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177630","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116527","1483122876","1483122896","1483116527","1","8","0","-1","20","6349","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177634","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116528","1483122897","1483122924","1483116528","1","8","0","-1","27","6369","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177638","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116529","1483122924","1483122943","1483116529","1","8","0","-1","19","6395","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177642","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116529","1483122943","1483122961","1483116529","1","8","0","-1","18","6414","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177645","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116530","1483122961","1483122987","1483116530","1","8","0","-1","26","6431","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177654","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116532","1483123035","1483123054","1483116532","1","8","0","-1","19","6503","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177658","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116533","1483123054","1483123071","1483116533","1","8","0","-1","17","6521","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177662","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116533","1483123071","1483123091","1483116533","1","8","0","-1","20","6538","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177665","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116534","1483123092","1483123113","1483116534","1","8","0","-1","21","6558","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177669","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116535","1483123114","1483123131","1483116535","1","8","0","-1","17","6579","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177673","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116536","1483123131","1483123149","1483116536","1","8","0","-1","18","6595","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177677","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116536","1483123149","1483123173","1483116536","1","8","0","-1","24","6613","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177717","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116545","1483123619","1483123643","1483116545","1","8","0","-1","24","7074","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177721","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116546","1483123644","1483123670","1483116546","1","8","0","-1","26","7098","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177725","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116546","1483123670","1483123697","1483116546","1","8","0","-1","27","7124","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177729","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116547","1483123697","1483123724","1483116547","1","8","0","-1","27","7150","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177732","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116548","1483123725","1483123747","1483116548","1","8","0","-1","22","7177","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177752","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116552","1483123887","1483123906","1483116552","1","8","0","-1","19","7335","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177778","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116557","1483124137","1483124158","1483116557","1","8","0","-1","21","7580","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177783","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116558","1483124159","1483124175","1483116558","1","8","0","-1","16","7601","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177786","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116558","1483124175","1483124196","1483116558","1","8","0","-1","21","7617","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177790","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116559","1483124196","1483124220","1483116559","1","8","0","-1","24","7637","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177798","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116561","1483124254","1483124281","1483116561","1","8","0","-1","27","7693","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177801","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116561","1483124281","1483124307","1483116561","1","8","0","-1","26","7720","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177805","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116562","1483124308","1483124335","1483116562","1","8","0","-1","27","7746","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177813","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116564","1483124368","1483124388","1483116564","1","8","0","-1","20","7804","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177820","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116565","1483124424","1483124444","1483116565","1","8","0","-1","20","7859","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177824","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116566","1483124444","1483124460","1483116566","1","8","0","-1","16","7878","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177828","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116567","1483124460","1483124484","1483116567","1","8","0","-1","24","7893","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177835","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116568","1483124530","1483124554","1483116568","1","8","0","-1","24","7962","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177839","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116569","1483124554","1483124578","1483116569","1","8","0","-1","24","7985","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177844","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116570","1483124579","1483124600","1483116570","1","8","0","-1","21","8009","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177855","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116572","1483124672","1483124688","1483116572","1","8","0","-1","16","8100","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177859","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116573","1483124688","1483124706","1483116573","1","8","0","-1","18","8115","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177866","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116574","1483124746","1483124773","1483116574","1","8","0","-1","27","8172","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177870","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116575","1483124773","1483124793","1483116575","1","8","0","-1","20","8198","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177874","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116576","1483124793","1483124816","1483116576","1","8","0","-1","23","8217","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177885","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116578","1483124888","1483124910","1483116578","1","8","0","-1","22","8310","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177887","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116578","1483124910","1483124930","1483116578","1","8","0","-1","20","8332","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177891","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116579","1483124931","1483124949","1483116579","1","8","0","-1","18","8352","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177895","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116580","1483124950","1483124979","1483116580","1","8","0","-1","29","8370","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177898","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116580","1483124979","1483125004","1483116580","1","8","0","-1","25","8399","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177902","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116581","1483125005","1483125024","1483116581","1","8","0","-1","19","8424","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177906","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116582","1483125024","1483125052","1483116582","1","8","0","-1","28","8442","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177910","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116583","1483125052","1483125075","1483116583","1","8","0","-1","23","8469","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177917","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116584","1483125108","1483125129","1483116584","1","8","0","-1","21","8524","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177921","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116585","1483125129","1483125149","1483116585","1","8","0","-1","20","8544","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177932","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116587","1483125212","1483125239","1483116587","1","8","0","-1","27","8625","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177940","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116589","1483125270","1483125289","1483116589","1","8","0","-1","19","8681","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177944","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116589","1483125290","1483125309","1483116589","1","8","0","-1","19","8701","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177947","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116590","1483125309","1483125330","1483116590","1","8","0","-1","21","8719","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177951","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116591","1483125330","1483125344","1483116591","1","8","0","-1","14","8739","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177955","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116592","1483125344","1483125371","1483116592","1","8","0","-1","27","8752","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177960","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116593","1483125372","1483125395","1483116593","1","8","0","-1","23","8779","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177964","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116593","1483125395","1483125412","1483116593","1","8","0","-1","17","8802","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177966","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116594","1483125412","1483125428","1483116594","1","8","0","-1","16","8818","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177970","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116595","1483125428","1483125450","1483116595","1","8","0","-1","22","8833","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177974","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116595","1483125450","1483125467","1483116595","1","8","0","-1","17","8855","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177978","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116596","1483125467","1483125493","1483116596","1","8","0","-1","26","8871","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177982","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116597","1483125494","1483125511","1483116597","1","8","0","-1","17","8897","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177985","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116598","1483125512","1483125525","1483116598","1","8","0","-1","13","8914","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177989","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116598","1483125525","1483125549","1483116598","1","8","0","-1","24","8927","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177995","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116600","1483125549","1483125572","1483116600","1","8","0","-1","23","8949","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177999","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116601","1483125572","1483125591","1483116601","1","8","0","-1","19","8971","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178002","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116601","1483125592","1483125609","1483116601","1","8","0","-1","17","8991","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178015","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116604","1483125680","1483125708","1483116604","1","8","0","-1","28","9076","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178027","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116606","1483125786","1483125804","1483116606","1","8","0","-1","18","9180","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178031","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116607","1483125804","1483125822","1483116607","1","8","0","-1","18","9197","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178038","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116609","1483125860","1483125887","1483116609","1","8","0","-1","27","9251","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178042","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116609","1483125887","1483125906","1483116609","1","8","0","-1","19","9278","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178046","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116610","1483125906","1483125922","1483116610","1","8","0","-1","16","9296","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178053","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116611","1483125955","1483125984","1483116611","1","8","0","-1","29","9344","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178057","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116612","1483125985","1483126004","1483116612","1","8","0","-1","19","9373","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178059","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116613","1483126005","1483126025","1483116613","1","8","0","-1","20","9392","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178067","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116614","1483126059","1483126087","1483116614","1","8","0","-1","28","9445","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178070","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116615","1483126087","1483126109","1483116615","1","8","0","-1","22","9472","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178074","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116615","1483126109","1483126127","1483116615","1","8","0","-1","18","9494","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178078","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116616","1483126128","1483126151","1483116616","1","8","0","-1","23","9512","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178085","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116618","1483126197","1483126224","1483116618","1","8","0","-1","27","9579","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178089","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116618","1483126224","1483126248","1483116618","1","8","0","-1","24","9606","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178093","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116619","1483126249","1483126267","1483116619","1","8","0","-1","18","9630","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178097","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116620","1483126268","1483126287","1483116620","1","8","0","-1","19","9648","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178105","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116622","1483126323","1483126340","1483116622","1","8","0","-1","17","9701","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178109","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116622","1483126341","1483126360","1483116622","1","8","0","-1","19","9719","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178120","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116625","1483126450","1483126475","1483116625","1","8","0","-1","25","9825","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178137","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116628","1483126586","1483126607","1483116628","1","8","0","-1","21","9958","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178152","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116631","1483126828","1483126849","1483116631","1","8","0","-1","21","10197","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178156","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116632","1483126849","1483126876","1483116632","1","8","0","-1","27","10217","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178160","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116633","1483126877","1483126895","1483116633","1","8","0","-1","18","10244","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178164","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116633","1483126895","1483126912","1483116633","1","8","0","-1","17","10262","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178168","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116634","1483126912","1483126928","1483116634","1","8","0","-1","16","10278","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178171","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116635","1483126928","1483126952","1483116635","1","8","0","-1","24","10293","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178175","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116636","1483126952","1483126980","1483116636","1","8","0","-1","28","10316","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178181","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116637","1483127012","1483127036","1483116637","1","8","0","-1","24","10375","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178185","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116638","1483127036","1483127052","1483116638","1","8","0","-1","16","10398","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178188","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116638","1483127052","1483127074","1483116638","1","8","0","-1","22","10414","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178192","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116639","1483127075","1483127100","1483116639","1","8","0","-1","25","10436","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178196","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116640","1483127100","1483127124","1483116640","1","8","0","-1","24","10460","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178200","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116641","1483127124","1483127138","1483116641","1","8","0","-1","14","10483","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178203","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116641","1483127138","1483127154","1483116641","1","8","0","-1","16","10497","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178215","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116644","1483127228","1483127245","1483116644","1","8","0","-1","17","10584","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178218","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116644","1483127245","1483127262","1483116644","1","8","0","-1","17","10601","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178222","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116645","1483127262","1483127279","1483116645","1","8","0","-1","17","10617","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178226","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116646","1483127279","1483127304","1483116646","1","8","0","-1","25","10633","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178230","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116647","1483127304","1483127321","1483116647","1","8","0","-1","17","10657","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178233","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116647","1483127322","1483127334","1483116647","1","8","0","-1","12","10675","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178238","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116648","1483127335","1483127357","1483116648","1","8","0","-1","22","10687","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178242","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116649","1483127357","1483127383","1483116649","1","8","0","-1","26","10708","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178247","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116650","1483127384","1483127401","1483116650","1","8","0","-1","17","10734","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178251","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116651","1483127401","1483127425","1483116651","1","8","0","-1","24","10750","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178254","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116652","1483127425","1483127446","1483116652","1","8","0","-1","21","10773","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178259","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116653","1483127446","1483127464","1483116653","1","8","0","-1","18","10793","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178263","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116653","1483127464","1483127478","1483116653","1","8","0","-1","14","10811","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178280","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116657","1483127630","1483127658","1483116657","1","8","0","-1","28","10973","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178282","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116657","1483127658","1483127675","1483116657","1","8","0","-1","17","11001","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178288","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116658","1483127708","1483127731","1483116658","1","8","0","-1","23","11050","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178292","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116659","1483127732","1483127748","1483116659","1","8","0","-1","16","11073","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178296","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116660","1483127748","1483127765","1483116660","1","8","0","-1","17","11088","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178305","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116662","1483127817","1483127841","1483116662","1","8","0","-1","24","11155","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178316","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116664","1483127918","1483127939","1483116664","1","8","0","-1","21","11254","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178321","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116665","1483127940","1483127960","1483116665","1","8","0","-1","20","11275","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178324","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116666","1483127960","1483127977","1483116666","1","8","0","-1","17","11294","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178339","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116669","1483128127","1483128154","1483116669","1","8","0","-1","27","11458","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178348","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116671","1483128195","1483128224","1483116671","1","8","0","-1","29","11524","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178352","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116671","1483128225","1483128248","1483116671","1","8","0","-1","23","11554","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178355","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116672","1483128248","1483128276","1483116672","1","8","0","-1","28","11576","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178371","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116675","1483128443","1483128470","1483116675","1","8","0","-1","27","11768","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178374","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116676","1483128470","1483128491","1483116676","1","8","0","-1","21","11794","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178447","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116691","1483129542","1483129569","1483116691","1","8","0","-1","27","12851","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178451","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116691","1483129569","1483129596","1483116691","1","8","0","-1","27","12878","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178473","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116696","1483129811","1483129840","1483116696","1","8","0","-1","29","13115","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178481","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116697","1483129886","1483129912","1483116697","1","8","0","-1","26","13189","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178494","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116700","1483130046","1483130074","1483116700","1","8","0","-1","28","13346","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178502","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116701","1483130204","1483130230","1483116701","1","8","0","-1","26","13503","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178508","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116702","1483130310","1483130339","1483116702","1","8","0","-1","29","13608","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178512","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116702","1483130373","1483130399","1483116702","1","8","0","-1","26","13671","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178514","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116702","1483130399","1483130425","1483116702","1","8","0","-1","26","13697","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178519","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116703","1483130459","1483130484","1483116703","1","8","0","-1","25","13756","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178527","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116704","1483130590","1483130618","1483116704","1","8","0","-1","28","13886","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178540","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116706","1483130886","1483130912","1483116706","1","8","0","-1","26","14180","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178546","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116707","1483130979","1483130995","1483116707","1","8","0","-1","16","14272","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178548","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116707","1483130995","1483131017","1483116707","1","8","0","-1","22","14288","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178550","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116708","1483131017","1483131040","1483116708","1","8","0","-1","23","14309","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178558","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116709","1483131150","1483131169","1483116709","1","8","0","-1","19","14441","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178560","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116709","1483131169","1483131188","1483116709","1","8","0","-1","19","14460","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178562","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116709","1483131189","1483131210","1483116709","1","8","0","-1","21","14480","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178564","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116710","1483131210","1483131226","1483116710","1","8","0","-1","16","14500","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178566","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116710","1483131226","1483131245","1483116710","1","8","0","-1","19","14516","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178570","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116711","1483131278","1483131300","1483116711","1","8","0","-1","22","14567","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178583","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116713","1483131503","1483131532","1483116713","1","8","0","-1","29","14790","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178589","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116714","1483131601","1483131616","1483116714","1","8","0","-1","15","14887","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178591","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116714","1483131616","1483131635","1483116714","1","8","0","-1","19","14902","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178603","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116715","1483131821","1483131846","1483116715","1","8","0","-1","25","15106","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178607","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116716","1483131880","1483131897","1483116716","1","8","0","-1","17","15164","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178609","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116716","1483131898","1483131918","1483116716","1","8","0","-1","20","15182","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178611","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116717","1483131919","1483131937","1483116717","1","8","0","-1","18","15202","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178613","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116717","1483131937","1483131963","1483116717","1","8","0","-1","26","15220","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178627","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116719","1483132265","1483132289","1483116719","1","8","0","-1","24","15546","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178633","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116720","1483132361","1483132387","1483116720","1","8","0","-1","26","15641","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178635","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116720","1483132388","1483132411","1483116720","1","8","0","-1","23","15668","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178637","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116720","1483132411","1483132436","1483116720","1","8","0","-1","25","15691","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178639","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116720","1483132436","1483132464","1483116720","1","8","0","-1","28","15716","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178645","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116721","1483132531","1483132551","1483116721","1","8","0","-1","20","15810","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178647","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116722","1483132552","1483132578","1483116722","1","8","0","-1","26","15830","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178650","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116722","1483132579","1483132596","1483116722","1","8","0","-1","17","15857","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178652","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116722","1483132596","1483132614","1483116722","1","8","0","-1","18","15874","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178654","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116723","1483132614","1483132635","1483116723","1","8","0","-1","21","15891","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178658","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116723","1483132669","1483132693","1483116723","1","8","0","-1","24","15946","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178666","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116724","1483132871","1483132896","1483116724","1","8","0","-1","25","16147","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178671","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116725","1483132944","1483132966","1483116725","1","8","0","-1","22","16219","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178673","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116725","1483132966","1483132993","1483116725","1","8","0","-1","27","16241","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178678","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116726","1483133029","1483133049","1483116726","1","8","0","-1","20","16303","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178680","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116726","1483133049","1483133077","1483116726","1","8","0","-1","28","16323","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178682","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116727","1483133077","1483133099","1483116727","1","8","0","-1","22","16350","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178686","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116727","1483133137","1483133159","1483116727","1","8","0","-1","22","16410","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178688","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116728","1483133159","1483133178","1483116728","1","8","0","-1","19","16431","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178690","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116728","1483133179","1483133199","1483116728","1","8","0","-1","20","16451","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178692","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116728","1483133199","1483133222","1483116728","1","8","0","-1","23","16471","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178694","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116728","1483133222","1483133243","1483116728","1","8","0","-1","21","16494","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178696","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116729","1483133243","1483133260","1483116729","1","8","0","-1","17","16514","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178698","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116729","1483133260","1483133280","1483116729","1","8","0","-1","20","16531","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178703","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116730","1483133313","1483133339","1483116730","1","8","0","-1","26","16583","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178711","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116731","1483133489","1483133515","1483116731","1","8","0","-1","26","16758","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178715","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116731","1483133545","1483133567","1483116731","1","8","0","-1","22","16814","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178717","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116732","1483133567","1483133590","1483116732","1","8","0","-1","23","16835","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178719","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116732","1483133590","1483133608","1483116732","1","8","0","-1","18","16858","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178721","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116732","1483133608","1483133631","1483116732","1","8","0","-1","23","16876","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178723","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116732","1483133631","1483133659","1483116732","1","8","0","-1","28","16899","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178725","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116733","1483133660","1483133686","1483116733","1","8","0","-1","26","16927","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178727","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116733","1483133687","1483133708","1483116733","1","8","0","-1","21","16954","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178729","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116733","1483133709","1483133727","1483116733","1","8","0","-1","18","16976","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178731","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116734","1483133727","1483133753","1483116734","1","8","0","-1","26","16993","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178733","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116734","1483133753","1483133775","1483116734","1","8","0","-1","22","17019","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178737","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116734","1483133809","1483133825","1483116734","1","8","0","-1","16","17075","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178739","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116735","1483133826","1483133842","1483116735","1","8","0","-1","16","17091","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178741","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116735","1483133842","1483133859","1483116735","1","8","0","-1","17","17107","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178743","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116735","1483133860","1483133880","1483116735","1","8","0","-1","20","17125","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178745","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116735","1483133880","1483133908","1483116736","1","8","0","-1","28","17145","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178755","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116737","1483134100","1483134125","1483116737","1","8","0","-1","25","17363","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178761","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116738","1483134206","1483134229","1483116738","1","8","0","-1","23","17468","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178764","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116738","1483134229","1483134246","1483116738","1","8","0","-1","17","17491","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178766","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116739","1483134246","1483134264","1483116739","1","8","0","-1","18","17507","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178768","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116739","1483134264","1483134282","1483116739","1","8","0","-1","18","17525","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178770","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116739","1483134283","1483134303","1483116739","1","8","0","-1","20","17544","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178772","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116739","1483134304","1483134332","1483116739","1","8","0","-1","28","17565","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178774","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116740","1483134332","1483134351","1483116740","1","8","0","-1","19","17592","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178776","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116740","1483134352","1483134376","1483116740","1","8","0","-1","24","17612","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178780","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116741","1483134409","1483134436","1483116741","1","8","0","-1","27","17668","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178782","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116741","1483134437","1483134453","1483116741","1","8","0","-1","16","17696","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178784","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116741","1483134453","1483134469","1483116741","1","8","0","-1","16","17712","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178786","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116741","1483134470","1483134484","1483116741","1","8","0","-1","14","17729","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178788","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116742","1483134484","1483134505","1483116742","1","8","0","-1","21","17742","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178790","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116742","1483134506","1483134527","1483116742","1","8","0","-1","21","17764","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178792","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116742","1483134527","1483134545","1483116742","1","8","0","-1","18","17785","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178796","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116743","1483134577","1483134601","1483116743","1","8","0","-1","24","17834","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178800","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116743","1483134678","1483134702","1483116743","1","8","0","-1","24","17935","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178802","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116743","1483134703","1483134731","1483116743","1","8","0","-1","28","17960","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6111113","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483126547","1483140171","1483140196","1483126547","2","24","0","-1","25","13624","600","0","0:0","COMPLETED","24","60000Mn","64800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["178806","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116744","1483134769","1483134796","1483116744","1","8","0","-1","27","18025","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178808","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116744","1483134797","1483134821","1483116744","1","8","0","-1","24","18053","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178810","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116745","1483134821","1483134847","1483116745","1","8","0","-1","26","18076","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178812","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116745","1483134848","1483134873","1483116745","1","8","0","-1","25","18103","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178816","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116746","1483134874","1483134895","1483116746","1","8","0","-1","21","18128","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178818","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116746","1483134896","1483134920","1483116746","1","8","0","-1","24","18150","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178822","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116746","1483134956","1483134977","1483116746","1","8","0","-1","21","18210","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178824","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116747","1483134978","1483134998","1483116747","1","8","0","-1","20","18231","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178826","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116747","1483134999","1483135018","1483116747","1","8","0","-1","19","18252","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178828","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116747","1483135018","1483135037","1483116747","1","8","0","-1","19","18271","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178830","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116748","1483135038","1483135054","1483116748","1","8","0","-1","16","18290","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178834","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116748","1483135087","1483135105","1483116748","1","8","0","-1","18","18339","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178836","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116748","1483135105","1483135128","1483116748","1","8","0","-1","23","18357","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178850","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116750","1483135425","1483135450","1483116750","1","8","0","-1","25","18675","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178852","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116751","1483135451","1483135475","1483116751","1","8","0","-1","24","18700","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178854","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116751","1483135476","1483135505","1483116751","1","8","0","-1","29","18725","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178858","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116751","1483135544","1483135569","1483116751","1","8","0","-1","25","18793","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178860","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116752","1483135570","1483135590","1483116752","1","8","0","-1","20","18818","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178862","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116752","1483135591","1483135615","1483116752","1","8","0","-1","24","18839","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178866","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116752","1483135651","1483135679","1483116752","1","8","0","-1","28","18899","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178868","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116753","1483135679","1483135706","1483116753","1","8","0","-1","27","18926","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178870","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116753","1483135706","1483135734","1483116753","1","8","0","-1","28","18953","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178872","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116753","1483135734","1483135754","1483116753","1","8","0","-1","20","18981","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178874","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116753","1483135755","1483135772","1483116753","1","8","0","-1","17","19002","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178876","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116754","1483135772","1483135790","1483116754","1","8","0","-1","18","19018","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178880","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116754","1483135824","1483135847","1483116754","1","8","0","-1","23","19070","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178882","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116755","1483135847","1483135870","1483116755","1","8","0","-1","23","19092","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178896","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116756","1483136198","1483136223","1483116756","1","8","0","-1","25","19442","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178898","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116757","1483136224","1483136250","1483116757","1","8","0","-1","26","19467","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178900","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116757","1483136250","1483136276","1483116757","1","8","0","-1","26","19493","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178902","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116757","1483136277","1483136298","1483116757","1","8","0","-1","21","19520","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178904","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116758","1483136298","1483136320","1483116758","1","8","0","-1","22","19540","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178906","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116758","1483136321","1483136345","1483116758","1","8","0","-1","24","19563","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178908","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116758","1483136346","1483136374","1483116758","1","8","0","-1","28","19588","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178910","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116758","1483136375","1483136401","1483116758","1","8","0","-1","26","19617","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178912","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116759","1483136402","1483136431","1483116759","1","8","0","-1","29","19643","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178914","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116759","1483136431","1483136454","1483116759","1","8","0","-1","23","19672","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178918","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116759","1483136487","1483136513","1483116759","1","8","0","-1","26","19728","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178920","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116760","1483136513","1483136530","1483116760","1","8","0","-1","17","19753","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178922","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116760","1483136531","1483136550","1483116760","1","8","0","-1","19","19771","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178924","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116760","1483136550","1483136570","1483116760","1","8","0","-1","20","19790","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178928","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116761","1483136605","1483136631","1483116761","1","8","0","-1","26","19844","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178930","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116761","1483136631","1483136657","1483116761","1","8","0","-1","26","19870","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178949","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116764","1483136999","1483137023","1483116764","1","8","0","-1","24","20235","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178951","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116764","1483137023","1483137044","1483116764","1","8","0","-1","21","20259","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178953","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116764","1483137044","1483137069","1483116764","1","8","0","-1","25","20280","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178955","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116765","1483137070","1483137091","1483116765","1","8","0","-1","21","20305","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178957","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116765","1483137092","1483137112","1483116765","1","8","0","-1","20","20327","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178959","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116765","1483137113","1483137136","1483116765","1","8","0","-1","23","20348","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178963","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116766","1483137176","1483137199","1483116766","1","8","0","-1","23","20410","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178965","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116766","1483137199","1483137228","1483116766","1","8","0","-1","29","20433","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178967","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116766","1483137228","1483137250","1483116766","1","8","0","-1","22","20462","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178969","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116766","1483137250","1483137275","1483116766","1","8","0","-1","25","20484","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178971","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116767","1483137275","1483137295","1483116767","1","8","0","-1","20","20508","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178982","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116768","1483137509","1483137537","1483116768","1","8","0","-1","28","20741","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178988","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116769","1483137616","1483137642","1483116769","1","8","0","-1","26","20847","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179004","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116771","1483137927","1483137947","1483116771","1","8","0","-1","20","21156","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179012","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116772","1483138069","1483138087","1483116772","1","8","0","-1","18","21297","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179030","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116775","1483138574","1483138595","1483116775","1","8","0","-1","21","21799","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179032","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116775","1483138596","1483138613","1483116775","1","8","0","-1","17","21821","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179036","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116776","1483138648","1483138666","1483116776","1","8","0","-1","18","21872","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179038","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116776","1483138666","1483138687","1483116776","1","8","0","-1","21","21890","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179040","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116777","1483138688","1483138716","1483116777","1","8","0","-1","28","21911","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179042","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116777","1483138717","1483138745","1483116777","1","8","0","-1","28","21940","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179044","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116777","1483138745","1483138765","1483116777","1","8","0","-1","20","21968","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179046","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116777","1483138766","1483138787","1483116777","1","8","0","-1","21","21989","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179048","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116778","1483138788","1483138807","1483116778","1","8","0","-1","19","22010","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179052","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116778","1483138839","1483138859","1483116778","1","8","0","-1","20","22061","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179054","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116778","1483138860","1483138876","1483116778","1","8","0","-1","16","22082","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179056","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116779","1483138877","1483138893","1483116779","1","8","0","-1","16","22098","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179058","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116779","1483138893","1483138909","1483116779","1","8","0","-1","16","22114","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179064","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116780","1483138956","1483138979","1483116780","1","8","0","-1","23","22176","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179070","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116781","1483139111","1483139139","1483116781","1","8","0","-1","28","22330","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179076","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116782","1483139208","1483139228","1483116782","1","8","0","-1","20","22426","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179078","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116782","1483139229","1483139255","1483116782","1","8","0","-1","26","22447","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179080","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116782","1483139255","1483139278","1483116782","1","8","0","-1","23","22473","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179082","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116782","1483139278","1483139295","1483116782","1","8","0","-1","17","22496","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179084","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116783","1483139295","1483139322","1483116783","1","8","0","-1","27","22512","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179086","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116783","1483139322","1483139345","1483116783","1","8","0","-1","23","22539","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179088","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116783","1483139345","1483139371","1483116783","1","8","0","-1","26","22562","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179090","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116784","1483139371","1483139390","1483116784","1","8","0","-1","19","22587","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179092","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116784","1483139391","1483139413","1483116784","1","8","0","-1","22","22607","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179094","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116784","1483139414","1483139442","1483116784","1","8","0","-1","28","22630","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179096","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116784","1483139442","1483139459","1483116784","1","8","0","-1","17","22658","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179098","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116785","1483139460","1483139481","1483116785","1","8","0","-1","21","22675","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179100","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116785","1483139481","1483139495","1483116785","1","8","0","-1","14","22696","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179102","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116785","1483139496","1483139523","1483116785","1","8","0","-1","27","22711","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179104","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116786","1483139523","1483139538","1483116786","1","8","0","-1","15","22737","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179109","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116786","1483139578","1483139604","1483116786","1","8","0","-1","26","22792","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179117","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116787","1483139773","1483139798","1483116787","1","8","0","-1","25","22986","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179119","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116788","1483139798","1483139822","1483116788","1","8","0","-1","24","23010","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179121","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116788","1483139823","1483139844","1483116788","1","8","0","-1","21","23035","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179123","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116788","1483139844","1483139867","1483116788","1","8","0","-1","23","23056","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179125","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116788","1483139868","1483139889","1483116788","1","8","0","-1","21","23080","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179127","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116789","1483139889","1483139907","1483116789","1","8","0","-1","18","23100","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179130","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116789","1483139907","1483139932","1483116789","1","8","0","-1","25","23118","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179132","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116790","1483139932","1483139953","1483116790","1","8","0","-1","21","23142","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179134","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116790","1483139953","1483139974","1483116790","1","8","0","-1","21","23163","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179136","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116790","1483139975","1483140000","1483116790","1","8","0","-1","25","23185","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179138","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116790","1483140000","1483140017","1483116790","1","8","0","-1","17","23210","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179140","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116791","1483140018","1483140034","1483116791","1","8","0","-1","16","23227","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179142","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116791","1483140035","1483140057","1483116791","1","8","0","-1","22","23244","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179144","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116791","1483140058","1483140074","1483116791","1","8","0","-1","16","23267","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179147","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116792","1483140074","1483140097","1483116792","1","8","0","-1","23","23282","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179149","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116792","1483140097","1483140121","1483116792","1","8","0","-1","24","23305","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179151","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116792","1483140122","1483140147","1483116792","1","8","0","-1","25","23330","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179158","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116793","1483140265","1483140288","1483116793","1","8","0","-1","23","23472","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179160","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116794","1483140289","1483140318","1483116794","1","8","0","-1","29","23495","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179162","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116794","1483140318","1483140341","1483116794","1","8","0","-1","23","23524","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179164","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116794","1483140341","1483140361","1483116794","1","8","0","-1","20","23547","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179166","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116794","1483140361","1483140382","1483116794","1","8","0","-1","21","23567","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179168","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116795","1483140382","1483140411","1483116795","1","8","0","-1","29","23587","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179170","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116795","1483140411","1483140437","1483116795","1","8","0","-1","26","23616","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179172","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116795","1483140437","1483140463","1483116795","1","8","0","-1","26","23642","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179174","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116796","1483140463","1483140485","1483116796","1","8","0","-1","22","23667","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179176","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116796","1483140486","1483140510","1483116796","1","8","0","-1","24","23690","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179178","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116796","1483140511","1483140539","1483116796","1","8","0","-1","28","23715","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179180","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116796","1483140539","1483140564","1483116796","1","8","0","-1","25","23743","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179184","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116797","1483140594","1483140621","1483116797","1","8","0","-1","27","23797","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179186","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116797","1483140621","1483140637","1483116797","1","8","0","-1","16","23824","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179188","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116798","1483140637","1483140651","1483116798","1","8","0","-1","14","23839","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179190","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116798","1483140652","1483140674","1483116798","1","8","0","-1","22","23854","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179192","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116798","1483140674","1483140698","1483116798","1","8","0","-1","24","23876","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179194","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116798","1483140698","1483140723","1483116798","1","8","0","-1","25","23900","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179204","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116800","1483140910","1483140935","1483116800","1","8","0","-1","25","24110","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179208","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116800","1483140978","1483140999","1483116800","1","8","0","-1","21","24178","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179213","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116801","1483141031","1483141052","1483116801","1","8","0","-1","21","24230","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179215","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116801","1483141052","1483141070","1483116801","1","8","0","-1","18","24251","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179217","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116802","1483141071","1483141092","1483116802","1","8","0","-1","21","24269","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179219","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116802","1483141092","1483141115","1483116802","1","8","0","-1","23","24290","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179221","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116802","1483141116","1483141136","1483116802","1","8","0","-1","20","24314","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179225","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116803","1483141172","1483141193","1483116803","1","8","0","-1","21","24369","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179227","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116803","1483141193","1483141212","1483116803","1","8","0","-1","19","24390","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179229","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116803","1483141213","1483141230","1483116803","1","8","0","-1","17","24410","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179231","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116804","1483141231","1483141253","1483116804","1","8","0","-1","22","24427","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179233","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116804","1483141253","1483141272","1483116804","1","8","0","-1","19","24449","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179235","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116804","1483141273","1483141290","1483116804","1","8","0","-1","17","24469","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179241","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116805","1483141334","1483141356","1483116805","1","8","0","-1","22","24529","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179245","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116806","1483141434","1483141462","1483116806","1","8","0","-1","28","24628","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179247","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116806","1483141463","1483141491","1483116806","1","8","0","-1","28","24657","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179251","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116807","1483141528","1483141555","1483116807","1","8","0","-1","27","24721","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179257","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116807","1483141629","1483141651","1483116807","1","8","0","-1","22","24822","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179259","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116808","1483141651","1483141670","1483116808","1","8","0","-1","19","24843","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179261","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116808","1483141670","1483141690","1483116808","1","8","0","-1","20","24862","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179277","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116810","1483141973","1483141994","1483116810","1","8","0","-1","21","25163","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179279","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116811","1483141994","1483142023","1483116811","1","8","0","-1","29","25183","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1003521","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483046136","1483081449","1483081454","1483046136","1","24","0","-1","5","35313","120","0","29:0","FAILED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6106586","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483004941","1483116904","1483116933","1483004941","1","8","0","-1","29","111963","232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6100150","Robertson","UTC","","Bunting, Yellow-browed","Screwdriver","curry","1482698330","1483078060","1483078062","1482698330","1","16","0","-1","2","379730","32","0","1:0","FAILED","16","2147486448Mn","259200","white","Geosciences","Polar Programs","Polar Aeronomy and Astrophysics"],["968115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055846","1483055846","1483056007","1483055846","1","8","0","-1","161","0","1288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055966","1483055966","1483056024","1483055966","1","8","0","-1","58","0","464","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056024","1483056024","1483056106","1483056024","1","8","0","-1","82","0","656","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056024","1483056024","1483056071","1483056024","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056052","1483056052","1483056123","1483056052","1","8","0","-1","71","0","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056078","1483056078","1483056120","1483056078","1","8","0","-1","42","0","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056090","1483056090","1483056144","1483056090","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056099","1483056099","1483056132","1483056099","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056106","1483056106","1483056138","1483056106","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968187","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056109","1483056109","1483056141","1483056109","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056121","1483056121","1483056161","1483056121","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056124","1483056124","1483056154","1483056124","1","8","0","-1","30","0","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968201","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056145","1483056145","1483056207","1483056145","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056155","1483056155","1483056226","1483056155","1","8","0","-1","71","0","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056159","1483056159","1483056227","1483056159","1","8","0","-1","68","0","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056162","1483056162","1483056304","1483056162","1","8","0","-1","142","0","1136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056162","1483056162","1483056232","1483056162","1","8","0","-1","70","0","560","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056255","1483056255","1483056286","1483056255","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056305","1483056305","1483056446","1483056305","1","8","0","-1","141","0","1128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056332","1483056332","1483056366","1483056332","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056380","1483056380","1483056434","1483056380","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056386","1483056386","1483056440","1483056386","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056391","1483056391","1483056430","1483056391","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056400","1483056400","1483056432","1483056400","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056447","1483056447","1483056504","1483056447","1","8","0","-1","57","0","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056459","1483056459","1483056511","1483056459","1","8","0","-1","52","0","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056459","1483056459","1483056555","1483056459","1","8","0","-1","96","0","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056462","1483056462","1483056503","1483056462","1","8","0","-1","41","0","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056468","1483056468","1483056541","1483056468","1","8","0","-1","73","0","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056504","1483056504","1483056555","1483056504","1","8","0","-1","51","0","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056556","1483056556","1483056590","1483056556","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056733","1483056733","1483056789","1483056733","1","8","0","-1","56","0","448","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056753","1483056753","1483056832","1483056753","1","8","0","-1","79","0","632","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056816","1483056816","1483056850","1483056816","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056820","1483056820","1483056866","1483056820","1","8","0","-1","46","0","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056878","1483056878","1483056913","1483056878","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056936","1483056936","1483056967","1483056936","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057081","1483057081","1483057138","1483057081","1","8","0","-1","57","0","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057084","1483057084","1483057120","1483057084","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057116","1483057116","1483057153","1483057116","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057151","1483057151","1483057205","1483057151","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057154","1483057154","1483057225","1483057154","1","8","0","-1","71","0","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057157","1483057157","1483057298","1483057157","1","8","0","-1","141","0","1128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057166","1483057166","1483057242","1483057166","1","8","0","-1","76","0","608","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057171","1483057171","1483057221","1483057171","1","8","0","-1","50","0","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057186","1483057186","1483057218","1483057186","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057219","1483057219","1483057250","1483057219","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057243","1483057243","1483057297","1483057243","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057251","1483057251","1483057302","1483057251","1","8","0","-1","51","0","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057252","1483057252","1483057285","1483057252","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057252","1483057252","1483057283","1483057252","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057258","1483057258","1483057296","1483057258","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057346","1483057346","1483057399","1483057346","1","8","0","-1","53","0","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057389","1483057389","1483057434","1483057389","1","8","0","-1","45","0","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057400","1483057400","1483057457","1483057400","1","8","0","-1","57","0","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057438","1483057438","1483057476","1483057438","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057439","1483057439","1483057504","1483057439","1","8","0","-1","65","0","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057458","1483057458","1483057597","1483057458","1","8","0","-1","139","0","1112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057513","1483057513","1483057546","1483057513","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057516","1483057516","1483057560","1483057516","1","8","0","-1","44","0","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057547","1483057547","1483057587","1483057547","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057555","1483057555","1483057596","1483057555","1","8","0","-1","41","0","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057561","1483057561","1483057629","1483057561","1","8","0","-1","68","0","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057576","1483057576","1483057630","1483057576","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057581","1483057581","1483057617","1483057581","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057588","1483057588","1483057647","1483057588","1","8","0","-1","59","0","472","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057597","1483057597","1483057657","1483057597","1","8","0","-1","60","0","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057618","1483057618","1483057667","1483057618","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057630","1483057630","1483057682","1483057630","1","8","0","-1","52","0","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057788","1483057788","1483057828","1483057788","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057805","1483057805","1483057846","1483057805","1","8","0","-1","41","0","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057822","1483057822","1483057856","1483057822","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057823","1483057823","1483057874","1483057823","1","8","0","-1","51","0","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057847","1483057847","1483057915","1483057847","1","8","0","-1","68","0","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057904","1483057904","1483057951","1483057904","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057945","1483057945","1483058056","1483057945","1","8","0","-1","111","0","888","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058057","1483058057","1483058093","1483058057","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058058","1483058058","1483058093","1483058058","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968800","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058065","1483058065","1483058096","1483058065","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058135","1483058135","1483058169","1483058135","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058145","1483058145","1483058177","1483058145","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058198","1483058198","1483058261","1483058198","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058209","1483058209","1483058333","1483058209","1","8","0","-1","124","0","992","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058262","1483058262","1483058307","1483058262","1","8","0","-1","45","0","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058289","1483058289","1483058322","1483058289","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058347","1483058347","1483058385","1483058347","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058358","1483058358","1483058397","1483058358","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058364","1483058364","1483058431","1483058364","1","8","0","-1","67","0","536","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058386","1483058386","1483058450","1483058386","1","8","0","-1","64","0","512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058386","1483058386","1483058418","1483058386","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968928","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058504","1483058504","1483058557","1483058504","1","8","0","-1","53","0","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058517","1483058517","1483058564","1483058517","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058579","1483058579","1483058612","1483058579","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058608","1483058608","1483058667","1483058608","1","8","0","-1","59","0","472","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058613","1483058613","1483058688","1483058613","1","8","0","-1","75","0","600","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058623","1483058623","1483058685","1483058623","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058630","1483058630","1483058690","1483058630","1","8","0","-1","60","0","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058642","1483058642","1483058679","1483058642","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968974","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058668","1483058668","1483058730","1483058668","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058731","1483058731","1483058826","1483058731","1","8","0","-1","95","0","760","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968992","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058770","1483058770","1483058837","1483058770","1","8","0","-1","67","0","536","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058779","1483058779","1483058847","1483058779","1","8","0","-1","68","0","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058783","1483058783","1483058831","1483058783","1","8","0","-1","48","0","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058861","1483058861","1483058892","1483058861","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058888","1483058888","1483058947","1483058888","1","8","0","-1","59","0","472","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058911","1483058911","1483059071","1483058911","1","8","0","-1","160","0","1280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058948","1483058948","1483059084","1483058948","1","8","0","-1","136","0","1088","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059085","1483059085","1483059223","1483059085","1","8","0","-1","138","0","1104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059101","1483059101","1483059174","1483059101","1","8","0","-1","73","0","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059107","1483059107","1483059238","1483059107","1","8","0","-1","131","0","1048","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059175","1483059175","1483059253","1483059175","1","8","0","-1","78","0","624","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059212","1483059212","1483059377","1483059212","1","8","0","-1","165","0","1320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059224","1483059224","1483059384","1483059224","1","8","0","-1","160","0","1280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059227","1483059227","1483059482","1483059227","1","8","0","-1","255","0","2040","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059236","1483059236","1483059343","1483059236","1","8","0","-1","107","0","856","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059254","1483059254","1483059292","1483059254","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059343","1483059343","1483059395","1483059343","1","8","0","-1","52","0","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059483","1483059483","1483059539","1483059483","1","8","0","-1","56","0","448","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059495","1483059495","1483059566","1483059495","1","8","0","-1","71","0","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059498","1483059498","1483059563","1483059498","1","8","0","-1","65","0","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059501","1483059501","1483059597","1483059501","1","8","0","-1","96","0","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059567","1483059567","1483059603","1483059567","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059607","1483059607","1483059685","1483059607","1","8","0","-1","78","0","624","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059613","1483059613","1483059649","1483059613","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059633","1483059633","1483059704","1483059633","1","8","0","-1","71","0","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059638","1483059638","1483059677","1483059638","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059650","1483059650","1483059706","1483059650","1","8","0","-1","56","0","448","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059677","1483059677","1483059717","1483059677","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059677","1483059677","1483059725","1483059677","1","8","0","-1","48","0","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059718","1483059718","1483059816","1483059718","1","8","0","-1","98","0","784","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059827","1483059827","1483059901","1483059827","1","8","0","-1","74","0","592","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059854","1483059854","1483059894","1483059854","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059882","1483059882","1483059917","1483059882","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059895","1483059895","1483060060","1483059895","1","8","0","-1","165","0","1320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059895","1483059895","1483059957","1483059895","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059918","1483059918","1483059965","1483059918","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059958","1483059958","1483059999","1483059958","1","8","0","-1","41","0","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059966","1483059966","1483059998","1483059966","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059999","1483059999","1483060044","1483059999","1","8","0","-1","45","0","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060015","1483060015","1483060066","1483060015","1","8","0","-1","51","0","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060060","1483060060","1483060106","1483060060","1","8","0","-1","46","0","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969257","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060072","1483060072","1483060121","1483060072","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060106","1483060106","1483060136","1483060106","1","8","0","-1","30","0","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060162","1483060162","1483060217","1483060162","1","8","0","-1","55","0","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060172","1483060172","1483060222","1483060172","1","8","0","-1","50","0","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060173","1483060173","1483060226","1483060173","1","8","0","-1","53","0","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060176","1483060176","1483060214","1483060176","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060226","1483060226","1483060291","1483060226","1","8","0","-1","65","0","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060249","1483060249","1483060316","1483060249","1","8","0","-1","67","0","536","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060282","1483060282","1483060331","1483060282","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060292","1483060292","1483060338","1483060292","1","8","0","-1","46","0","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969319","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060297","1483060297","1483060332","1483060297","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969333","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060352","1483060352","1483060395","1483060352","1","8","0","-1","43","0","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969335","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060365","1483060365","1483060407","1483060365","1","8","0","-1","42","0","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969349","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060396","1483060396","1483060469","1483060396","1","8","0","-1","73","0","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060397","1483060397","1483060546","1483060397","1","8","0","-1","149","0","1192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060408","1483060408","1483060448","1483060408","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060420","1483060420","1483060457","1483060420","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060449","1483060449","1483060488","1483060449","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060489","1483060489","1483060542","1483060489","1","8","0","-1","53","0","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060547","1483060547","1483060584","1483060547","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969394","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060552","1483060552","1483060619","1483060552","1","8","0","-1","67","0","536","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969402","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060595","1483060595","1483060637","1483060595","1","8","0","-1","42","0","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060664","1483060664","1483060708","1483060664","1","8","0","-1","44","0","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060665","1483060665","1483060703","1483060665","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060704","1483060704","1483060736","1483060704","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060709","1483060709","1483060740","1483060709","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060730","1483060730","1483060802","1483060730","1","8","0","-1","72","0","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060741","1483060741","1483060775","1483060741","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060764","1483060764","1483060801","1483060764","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060785","1483060785","1483060828","1483060785","1","8","0","-1","43","0","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060802","1483060802","1483060838","1483060802","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060829","1483060829","1483060862","1483060829","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060838","1483060838","1483060877","1483060838","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060850","1483060850","1483060923","1483060850","1","8","0","-1","73","0","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060905","1483060905","1483060953","1483060905","1","8","0","-1","48","0","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060962","1483060962","1483060997","1483060962","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969527","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060975","1483060975","1483061013","1483060975","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060979","1483060979","1483061052","1483060979","1","8","0","-1","73","0","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060981","1483060981","1483061058","1483060981","1","8","0","-1","77","0","616","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061012","1483061012","1483061092","1483061012","1","8","0","-1","80","0","640","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061081","1483061081","1483061120","1483061081","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061086","1483061086","1483061120","1483061086","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061103","1483061103","1483061140","1483061103","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061121","1483061121","1483061152","1483061121","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061130","1483061130","1483061161","1483061130","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061138","1483061138","1483061175","1483061138","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061141","1483061141","1483061177","1483061141","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969579","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061158","1483061158","1483061312","1483061158","1","8","0","-1","154","0","1232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061162","1483061162","1483061221","1483061162","1","8","0","-1","59","0","472","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061176","1483061176","1483061208","1483061176","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061209","1483061209","1483061258","1483061209","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061221","1483061221","1483061270","1483061221","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061259","1483061259","1483061290","1483061259","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061313","1483061313","1483061396","1483061313","1","8","0","-1","83","0","664","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061319","1483061319","1483061358","1483061319","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061397","1483061397","1483061432","1483061397","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061401","1483061401","1483061437","1483061401","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061433","1483061433","1483061484","1483061433","1","8","0","-1","51","0","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061448","1483061448","1483061491","1483061448","1","8","0","-1","43","0","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061464","1483061464","1483061511","1483061464","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061469","1483061469","1483061508","1483061469","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061485","1483061485","1483061547","1483061485","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061492","1483061492","1483061567","1483061492","1","8","0","-1","75","0","600","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061509","1483061509","1483061547","1483061509","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061525","1483061525","1483061585","1483061525","1","8","0","-1","60","0","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061529","1483061529","1483061593","1483061529","1","8","0","-1","64","0","512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061548","1483061548","1483061601","1483061548","1","8","0","-1","53","0","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061548","1483061548","1483061585","1483061548","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061551","1483061551","1483061614","1483061551","1","8","0","-1","63","0","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061568","1483061568","1483061615","1483061568","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061586","1483061586","1483061650","1483061586","1","8","0","-1","64","0","512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061601","1483061601","1483061697","1483061601","1","8","0","-1","96","0","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061760","1483061760","1483061792","1483061760","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969755","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061761","1483061761","1483061824","1483061761","1","8","0","-1","63","0","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969757","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061767","1483061767","1483061812","1483061767","1","8","0","-1","45","0","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969761","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061780","1483061780","1483061920","1483061780","1","8","0","-1","140","0","1120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969765","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061793","1483061793","1483061833","1483061793","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061857","1483061857","1483061894","1483061857","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061880","1483061880","1483061920","1483061880","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061921","1483061921","1483062035","1483061921","1","8","0","-1","114","0","912","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061921","1483061921","1483061973","1483061921","1","8","0","-1","52","0","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061954","1483061954","1483062016","1483061954","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062011","1483062011","1483062041","1483062011","1","8","0","-1","30","0","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062017","1483062017","1483062049","1483062017","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062042","1483062042","1483062078","1483062042","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062049","1483062049","1483062106","1483062049","1","8","0","-1","57","0","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062050","1483062050","1483062102","1483062050","1","8","0","-1","52","0","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062057","1483062057","1483062101","1483062057","1","8","0","-1","44","0","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062060","1483062060","1483062157","1483062060","1","8","0","-1","97","0","776","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062079","1483062079","1483062119","1483062079","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062132","1483062132","1483062172","1483062132","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062136","1483062136","1483062185","1483062136","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062186","1483062186","1483062222","1483062186","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062194","1483062194","1483062228","1483062194","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062199","1483062199","1483062246","1483062199","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062202","1483062202","1483062238","1483062202","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062223","1483062223","1483062262","1483062223","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062227","1483062227","1483062265","1483062227","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062247","1483062247","1483062278","1483062247","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062278","1483062278","1483062329","1483062278","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062329","1483062329","1483062388","1483062329","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062342","1483062342","1483062440","1483062342","1","8","0","-1","98","0","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062343","1483062343","1483062384","1483062343","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062403","1483062403","1483062442","1483062403","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969966","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062427","1483062427","1483062498","1483062427","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062436","1483062436","1483062496","1483062436","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062441","1483062441","1483062475","1483062441","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062508","1483062508","1483062559","1483062508","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062567","1483062567","1483062607","1483062567","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062583","1483062583","1483062641","1483062583","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062604","1483062604","1483062655","1483062604","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970019","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062634","1483062634","1483062678","1483062634","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062640","1483062640","1483062674","1483062640","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062649","1483062649","1483062708","1483062649","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062655","1483062655","1483062697","1483062655","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062675","1483062675","1483062767","1483062675","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970035","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062678","1483062678","1483062849","1483062678","1","8","0","-1","171","0","1368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062821","1483062821","1483062868","1483062821","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062895","1483062895","1483063035","1483062895","1","8","0","-1","140","0","1120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062955","1483062955","1483063090","1483062955","1","8","0","-1","135","0","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063052","1483063052","1483063194","1483063052","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063091","1483063091","1483063193","1483063091","1","8","0","-1","102","0","816","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063094","1483063094","1483063213","1483063094","1","8","0","-1","119","0","952","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063168","1483063168","1483063273","1483063168","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063194","1483063194","1483063465","1483063194","1","8","0","-1","271","0","2168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063195","1483063195","1483063307","1483063195","1","8","0","-1","112","0","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063274","1483063274","1483063321","1483063274","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063322","1483063322","1483063370","1483063322","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063354","1483063354","1483063386","1483063354","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970147","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063357","1483063357","1483063407","1483063357","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063360","1483063360","1483063417","1483063360","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970153","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063371","1483063371","1483063424","1483063371","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970155","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063387","1483063387","1483063440","1483063387","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063411","1483063411","1483063457","1483063411","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063425","1483063425","1483063469","1483063425","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063458","1483063458","1483063524","1483063458","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970173","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063466","1483063466","1483063612","1483063466","1","8","0","-1","146","0","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063469","1483063469","1483063557","1483063469","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063503","1483063503","1483063576","1483063503","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063524","1483063524","1483063574","1483063524","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063547","1483063547","1483063586","1483063547","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970187","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063558","1483063558","1483063600","1483063558","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063574","1483063574","1483063626","1483063574","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063701","1483063701","1483063808","1483063701","1","8","0","-1","107","0","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063710","1483063710","1483063777","1483063710","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063766","1483063766","1483063823","1483063766","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063798","1483063798","1483063854","1483063798","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063809","1483063809","1483063886","1483063809","1","8","0","-1","77","0","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063816","1483063816","1483063871","1483063816","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063824","1483063824","1483063867","1483063824","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063868","1483063868","1483063972","1483063868","1","8","0","-1","104","0","832","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063872","1483063872","1483063934","1483063872","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063887","1483063887","1483063919","1483063887","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063918","1483063918","1483063957","1483063918","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063935","1483063935","1483063969","1483063935","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063972","1483063972","1483064003","1483063972","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064040","1483064040","1483064100","1483064040","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064057","1483064057","1483064092","1483064057","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970319","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064057","1483064057","1483064090","1483064057","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970333","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064111","1483064111","1483064150","1483064111","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970335","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064115","1483064115","1483064146","1483064115","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064161","1483064161","1483064212","1483064161","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970356","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064173","1483064173","1483064305","1483064173","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064182","1483064182","1483064219","1483064182","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064199","1483064199","1483064241","1483064199","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064211","1483064211","1483064257","1483064211","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064220","1483064220","1483064267","1483064220","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064248","1483064248","1483064297","1483064248","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064258","1483064258","1483064309","1483064258","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970380","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064262","1483064262","1483064298","1483064262","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064268","1483064268","1483064314","1483064268","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064319","1483064319","1483064360","1483064319","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064320","1483064320","1483064371","1483064320","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064368","1483064368","1483064405","1483064368","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064406","1483064406","1483064457","1483064406","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064407","1483064407","1483064440","1483064407","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064418","1483064418","1483064456","1483064418","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064457","1483064457","1483064498","1483064457","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064458","1483064458","1483064510","1483064458","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064468","1483064468","1483064505","1483064468","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064478","1483064478","1483064510","1483064478","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064529","1483064529","1483064561","1483064529","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064541","1483064541","1483064574","1483064541","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064549","1483064549","1483064583","1483064549","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064692","1483064692","1483064724","1483064692","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064725","1483064725","1483064755","1483064725","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064732","1483064732","1483064773","1483064732","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064747","1483064747","1483064784","1483064747","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064780","1483064780","1483064810","1483064780","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064785","1483064785","1483064838","1483064785","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064811","1483064811","1483064841","1483064811","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064830","1483064830","1483064865","1483064830","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064854","1483064854","1483064900","1483064854","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064890","1483064890","1483064924","1483064890","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064890","1483064890","1483064941","1483064890","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064901","1483064901","1483064939","1483064901","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064918","1483064918","1483064965","1483064918","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064924","1483064924","1483064967","1483064924","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064931","1483064931","1483064964","1483064931","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064966","1483064966","1483065010","1483064966","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064978","1483064978","1483065018","1483064978","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065027","1483065027","1483065070","1483065027","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065044","1483065044","1483065080","1483065044","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065103","1483065103","1483065143","1483065103","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970675","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065114","1483065114","1483065152","1483065114","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065190","1483065190","1483065226","1483065190","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065247","1483065247","1483065382","1483065247","1","8","0","-1","135","0","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065250","1483065250","1483065297","1483065250","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065253","1483065253","1483065296","1483065253","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065280","1483065280","1483065313","1483065280","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065286","1483065286","1483065351","1483065286","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065297","1483065297","1483065362","1483065297","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065297","1483065297","1483065362","1483065297","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065314","1483065314","1483065371","1483065314","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065352","1483065352","1483065422","1483065352","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065488","1483065488","1483065576","1483065488","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065577","1483065577","1483065623","1483065577","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065588","1483065588","1483065619","1483065588","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970800","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065624","1483065624","1483065654","1483065624","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065633","1483065633","1483065694","1483065633","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065640","1483065640","1483065680","1483065640","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065651","1483065651","1483065705","1483065651","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065681","1483065681","1483065715","1483065681","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065705","1483065705","1483065742","1483065705","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065716","1483065716","1483065754","1483065716","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065716","1483065716","1483065755","1483065716","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065746","1483065746","1483065795","1483065746","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065755","1483065755","1483065805","1483065755","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065835","1483065835","1483065877","1483065835","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065888","1483065888","1483065926","1483065888","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065927","1483065927","1483065958","1483065927","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970924","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065970","1483065970","1483066013","1483065970","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970928","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065979","1483065979","1483066015","1483065979","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066030","1483066030","1483066069","1483066030","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066035","1483066035","1483066080","1483066035","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970952","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066050","1483066050","1483066080","1483066050","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066053","1483066053","1483066095","1483066053","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066130","1483066130","1483066178","1483066130","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066154","1483066154","1483066193","1483066154","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066178","1483066178","1483066209","1483066178","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066215","1483066215","1483066262","1483066215","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066221","1483066221","1483066261","1483066221","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066291","1483066291","1483066334","1483066291","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066292","1483066292","1483066334","1483066292","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066302","1483066302","1483066349","1483066302","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066330","1483066330","1483066373","1483066330","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066335","1483066335","1483066392","1483066335","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066350","1483066350","1483066392","1483066350","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066397","1483066397","1483066432","1483066397","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066412","1483066412","1483066470","1483066412","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066420","1483066420","1483066465","1483066420","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066435","1483066435","1483066495","1483066435","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066577","1483066577","1483066614","1483066577","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066584","1483066584","1483066662","1483066584","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066604","1483066604","1483066698","1483066604","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066650","1483066650","1483066782","1483066650","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066653","1483066653","1483066784","1483066653","1","8","0","-1","131","0","1048","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066693","1483066693","1483066787","1483066693","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066782","1483066782","1483066889","1483066782","1","8","0","-1","107","0","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066785","1483066785","1483066873","1483066785","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066787","1483066787","1483066859","1483066787","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066837","1483066837","1483066953","1483066837","1","8","0","-1","116","0","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066859","1483066859","1483067036","1483066859","1","8","0","-1","177","0","1416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066865","1483066865","1483067036","1483066865","1","8","0","-1","171","0","1368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066894","1483066894","1483066954","1483066894","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067064","1483067064","1483067138","1483067064","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067436","1483067436","1483067592","1483067436","1","8","0","-1","156","0","1248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067494","1483067494","1483067559","1483067494","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067507","1483067507","1483067572","1483067507","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067635","1483067635","1483067709","1483067635","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067680","1483067680","1483067809","1483067680","1","8","0","-1","129","0","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067697","1483067697","1483067753","1483067697","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067697","1483067697","1483067764","1483067697","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067710","1483067710","1483067741","1483067710","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067742","1483067742","1483067776","1483067742","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067761","1483067761","1483067833","1483067761","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067777","1483067777","1483067921","1483067777","1","8","0","-1","144","0","1152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067804","1483067804","1483067864","1483067804","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067810","1483067810","1483067854","1483067810","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067924","1483067924","1483068044","1483067924","1","8","0","-1","120","0","960","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971349","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067938","1483067938","1483067992","1483067938","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067954","1483067954","1483067986","1483067954","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068016","1483068016","1483068050","1483068016","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068039","1483068039","1483068070","1483068039","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068045","1483068045","1483068077","1483068045","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068061","1483068061","1483068118","1483068061","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068067","1483068067","1483068098","1483068067","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068137","1483068137","1483068176","1483068137","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971432","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068137","1483068137","1483068171","1483068137","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068153","1483068153","1483068193","1483068153","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068157","1483068157","1483068198","1483068157","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068185","1483068185","1483068221","1483068185","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068360","1483068360","1483068398","1483068360","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068438","1483068438","1483068468","1483068438","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068444","1483068444","1483068478","1483068444","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068447","1483068447","1483068493","1483068447","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068456","1483068456","1483068488","1483068456","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068473","1483068473","1483068510","1483068473","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068479","1483068479","1483068519","1483068479","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068484","1483068484","1483068516","1483068484","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068516","1483068516","1483068643","1483068516","1","8","0","-1","127","0","1016","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971579","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068519","1483068519","1483068559","1483068519","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068560","1483068560","1483068595","1483068560","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068600","1483068600","1483068644","1483068600","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068660","1483068660","1483068705","1483068660","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068665","1483068665","1483068703","1483068665","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068704","1483068704","1483068752","1483068704","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068719","1483068719","1483068845","1483068719","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068730","1483068730","1483068791","1483068730","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068770","1483068770","1483068806","1483068770","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068792","1483068792","1483068825","1483068792","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068802","1483068802","1483068867","1483068802","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068807","1483068807","1483068869","1483068807","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068846","1483068846","1483068890","1483068846","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068855","1483068855","1483068898","1483068855","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068867","1483068867","1483068930","1483068867","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068867","1483068867","1483068953","1483068867","1","8","0","-1","86","0","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068870","1483068870","1483069040","1483068870","1","8","0","-1","170","0","1360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068877","1483068877","1483068973","1483068877","1","8","0","-1","96","0","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068979","1483068979","1483069020","1483068979","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069000","1483069000","1483069038","1483069000","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069065","1483069065","1483069119","1483069065","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069117","1483069117","1483069149","1483069117","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069120","1483069120","1483069164","1483069120","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069163","1483069163","1483069194","1483069163","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069192","1483069192","1483069224","1483069192","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069209","1483069209","1483069249","1483069209","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069221","1483069221","1483069261","1483069221","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069250","1483069250","1483069293","1483069250","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069261","1483069261","1483069366","1483069261","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069294","1483069294","1483069365","1483069294","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069311","1483069311","1483069388","1483069311","1","8","0","-1","77","0","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069366","1483069366","1483069446","1483069366","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069431","1483069431","1483069510","1483069431","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069444","1483069444","1483069683","1483069444","1","8","0","-1","239","0","1912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069447","1483069447","1483069575","1483069447","1","8","0","-1","128","0","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069462","1483069462","1483069614","1483069462","1","8","0","-1","152","0","1216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069485","1483069485","1483069540","1483069485","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069525","1483069525","1483069589","1483069525","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069614","1483069614","1483069658","1483069614","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069652","1483069652","1483069682","1483069652","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069655","1483069655","1483069687","1483069655","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069659","1483069659","1483069689","1483069659","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069684","1483069684","1483069715","1483069684","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069856","1483069856","1483069894","1483069856","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069859","1483069859","1483069903","1483069859","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069950","1483069950","1483069984","1483069950","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069959","1483069959","1483070036","1483069959","1","8","0","-1","77","0","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069959","1483069959","1483069990","1483069959","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070007","1483070007","1483070039","1483070007","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070053","1483070053","1483070087","1483070053","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070129","1483070129","1483070235","1483070129","1","8","0","-1","106","0","848","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070160","1483070160","1483070191","1483070160","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070192","1483070192","1483070233","1483070192","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070222","1483070222","1483070260","1483070222","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070228","1483070228","1483070259","1483070228","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070338","1483070338","1483070401","1483070338","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972259","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070438","1483070438","1483070506","1483070438","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070483","1483070483","1483070514","1483070483","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070587","1483070587","1483070620","1483070587","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070610","1483070610","1483070672","1483070610","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070673","1483070673","1483070748","1483070673","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070822","1483070822","1483070942","1483070822","1","8","0","-1","120","0","960","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070826","1483070826","1483070878","1483070826","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071022","1483071022","1483071056","1483071022","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071024","1483071024","1483071114","1483071024","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071179","1483071179","1483071217","1483071179","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071214","1483071214","1483071254","1483071214","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071217","1483071217","1483071248","1483071217","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071224","1483071224","1483071265","1483071224","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071249","1483071249","1483071285","1483071249","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071255","1483071255","1483071305","1483071255","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071298","1483071298","1483071329","1483071298","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071330","1483071330","1483071362","1483071330","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071339","1483071339","1483071406","1483071339","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071363","1483071363","1483071420","1483071363","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972637","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071419","1483071419","1483071478","1483071419","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071503","1483071503","1483071562","1483071503","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972675","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071506","1483071506","1483071560","1483071506","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071561","1483071561","1483071593","1483071561","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071566","1483071566","1483071611","1483071566","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071617","1483071617","1483071697","1483071617","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071660","1483071660","1483071736","1483071660","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071696","1483071696","1483071766","1483071696","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071710","1483071710","1483071834","1483071710","1","8","0","-1","124","0","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071723","1483071723","1483071837","1483071723","1","8","0","-1","114","0","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071765","1483071765","1483071841","1483071765","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071771","1483071771","1483071837","1483071771","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071808","1483071808","1483071890","1483071808","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071838","1483071838","1483071914","1483071838","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071891","1483071891","1483071933","1483071891","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071915","1483071915","1483071956","1483071915","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071918","1483071918","1483071969","1483071918","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071934","1483071934","1483071967","1483071934","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071957","1483071957","1483072001","1483071957","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071968","1483071968","1483072008","1483071968","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071986","1483071986","1483072020","1483071986","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071991","1483071991","1483072033","1483071991","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072002","1483072002","1483072061","1483072002","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072002","1483072002","1483072071","1483072002","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072009","1483072009","1483072133","1483072009","1","8","0","-1","124","0","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072134","1483072134","1483072184","1483072134","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072140","1483072140","1483072190","1483072140","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072174","1483072174","1483072223","1483072174","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072221","1483072221","1483072256","1483072221","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072257","1483072257","1483072320","1483072257","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072260","1483072260","1483072321","1483072260","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072278","1483072278","1483072308","1483072278","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072309","1483072309","1483072350","1483072309","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072321","1483072321","1483072367","1483072321","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072351","1483072351","1483072408","1483072351","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072354","1483072354","1483072396","1483072354","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072368","1483072368","1483072404","1483072368","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072377","1483072377","1483072415","1483072377","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072405","1483072405","1483072456","1483072405","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072415","1483072415","1483072462","1483072415","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972926","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072449","1483072449","1483072482","1483072449","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972932","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072457","1483072457","1483072499","1483072457","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072472","1483072472","1483072513","1483072472","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072500","1483072500","1483072568","1483072500","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072549","1483072549","1483072597","1483072549","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972965","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072554","1483072554","1483072587","1483072554","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072569","1483072569","1483072602","1483072569","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072588","1483072588","1483072628","1483072588","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072597","1483072597","1483072641","1483072597","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072603","1483072603","1483072735","1483072603","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072606","1483072606","1483072641","1483072606","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072609","1483072609","1483072678","1483072609","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072629","1483072629","1483072667","1483072629","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072642","1483072642","1483072677","1483072642","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072681","1483072681","1483072715","1483072681","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072721","1483072721","1483072762","1483072721","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072727","1483072727","1483072766","1483072727","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072737","1483072737","1483072870","1483072737","1","8","0","-1","133","0","1064","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072871","1483072871","1483072902","1483072871","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072894","1483072894","1483072934","1483072894","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072935","1483072935","1483073001","1483072935","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072956","1483072956","1483072995","1483072956","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073012","1483073012","1483073057","1483073012","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073051","1483073051","1483073091","1483073051","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073058","1483073058","1483073114","1483073058","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973123","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073070","1483073070","1483073107","1483073070","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073163","1483073163","1483073196","1483073163","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073167","1483073167","1483073211","1483073167","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073212","1483073212","1483073257","1483073212","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073234","1483073234","1483073269","1483073234","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073248","1483073248","1483073279","1483073248","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073257","1483073257","1483073312","1483073257","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073280","1483073280","1483073314","1483073280","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073318","1483073318","1483073362","1483073318","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073341","1483073341","1483073415","1483073341","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973218","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073358","1483073358","1483073405","1483073358","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073393","1483073393","1483073428","1483073393","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073416","1483073416","1483073471","1483073416","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073422","1483073422","1483073456","1483073422","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073429","1483073429","1483073469","1483073429","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073450","1483073450","1483073480","1483073450","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073465","1483073465","1483073509","1483073465","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073481","1483073481","1483073526","1483073481","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073481","1483073481","1483073618","1483073481","1","8","0","-1","137","0","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073493","1483073493","1483073542","1483073493","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073509","1483073509","1483073584","1483073509","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073624","1483073624","1483073660","1483073624","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073641","1483073641","1483073674","1483073641","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073675","1483073675","1483073707","1483073675","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073727","1483073727","1483073770","1483073727","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973327","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073731","1483073731","1483073773","1483073731","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973329","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073731","1483073731","1483073776","1483073731","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073800","1483073800","1483073837","1483073800","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073800","1483073800","1483073848","1483073800","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073808","1483073808","1483073842","1483073808","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073824","1483073824","1483073876","1483073824","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073838","1483073838","1483073890","1483073838","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073843","1483073843","1483073901","1483073843","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073848","1483073848","1483073878","1483073848","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073919","1483073919","1483073973","1483073919","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073957","1483073957","1483074049","1483073957","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073985","1483073985","1483074039","1483073985","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074040","1483074040","1483074070","1483074040","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973410","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074046","1483074046","1483074081","1483074046","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074082","1483074082","1483074114","1483074082","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074109","1483074109","1483074150","1483074109","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973434","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074132","1483074132","1483074174","1483074132","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074139","1483074139","1483074188","1483074139","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074151","1483074151","1483074280","1483074151","1","8","0","-1","129","0","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074157","1483074157","1483074195","1483074157","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973446","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074171","1483074171","1483074236","1483074171","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074189","1483074189","1483074230","1483074189","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074278","1483074278","1483074308","1483074278","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074382","1483074382","1483074417","1483074382","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074391","1483074391","1483074444","1483074391","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074409","1483074409","1483074440","1483074409","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074411","1483074411","1483074442","1483074411","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074455","1483074455","1483074493","1483074455","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074467","1483074467","1483074506","1483074467","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074507","1483074507","1483074568","1483074507","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074514","1483074514","1483074562","1483074514","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074543","1483074543","1483074573","1483074543","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074636","1483074636","1483074763","1483074636","1","8","0","-1","127","0","1016","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074672","1483074672","1483074707","1483074672","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074677","1483074677","1483074708","1483074677","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074751","1483074751","1483074782","1483074751","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074756","1483074756","1483074792","1483074756","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074783","1483074783","1483074871","1483074783","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074790","1483074790","1483074840","1483074790","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074793","1483074793","1483074853","1483074793","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973677","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074841","1483074841","1483074876","1483074841","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074851","1483074851","1483074885","1483074851","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074853","1483074853","1483074902","1483074853","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074974","1483074974","1483075011","1483074974","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075012","1483075012","1483075076","1483075012","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075037","1483075037","1483075100","1483075037","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075067","1483075067","1483075112","1483075067","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075077","1483075077","1483075122","1483075077","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075105","1483075105","1483075161","1483075105","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075113","1483075113","1483075147","1483075113","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075162","1483075162","1483075294","1483075162","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075176","1483075176","1483075305","1483075176","1","8","0","-1","129","0","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075239","1483075239","1483075374","1483075239","1","8","0","-1","135","0","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075295","1483075295","1483075423","1483075295","1","8","0","-1","128","0","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075374","1483075374","1483075630","1483075374","1","8","0","-1","256","0","2048","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075526","1483075526","1483075569","1483075526","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075548","1483075548","1483075608","1483075548","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075570","1483075570","1483075610","1483075570","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075578","1483075578","1483075618","1483075578","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075593","1483075593","1483075635","1483075593","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075609","1483075609","1483075672","1483075609","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075619","1483075619","1483075760","1483075619","1","8","0","-1","141","0","1128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075630","1483075630","1483075685","1483075630","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075636","1483075636","1483075708","1483075636","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075653","1483075653","1483075727","1483075653","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973863","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075686","1483075686","1483075756","1483075686","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973867","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075708","1483075708","1483075739","1483075708","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075719","1483075719","1483075793","1483075719","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075728","1483075728","1483075766","1483075728","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075868","1483075868","1483075935","1483075868","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075910","1483075910","1483075954","1483075910","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075936","1483075936","1483076008","1483075936","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075947","1483075947","1483076017","1483075947","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075955","1483075955","1483075994","1483075955","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075995","1483075995","1483076034","1483075995","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076003","1483076003","1483076062","1483076003","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076006","1483076006","1483076037","1483076006","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076009","1483076009","1483076073","1483076009","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076013","1483076013","1483076103","1483076013","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076018","1483076018","1483076108","1483076018","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076034","1483076034","1483076103","1483076034","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076038","1483076038","1483076132","1483076038","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076104","1483076104","1483076154","1483076104","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076132","1483076132","1483076187","1483076132","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076169","1483076169","1483076230","1483076169","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076188","1483076188","1483076256","1483076188","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076239","1483076239","1483076275","1483076239","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076242","1483076242","1483076293","1483076242","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076257","1483076257","1483076299","1483076257","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076280","1483076280","1483076322","1483076280","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076294","1483076294","1483076338","1483076294","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076324","1483076324","1483076368","1483076324","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076331","1483076331","1483076389","1483076331","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076349","1483076349","1483076384","1483076349","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076354","1483076354","1483076426","1483076354","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076369","1483076369","1483076401","1483076369","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076390","1483076390","1483076423","1483076390","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076390","1483076390","1483076427","1483076390","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076402","1483076402","1483076445","1483076402","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076473","1483076473","1483076503","1483076473","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076499","1483076499","1483076567","1483076499","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076554","1483076554","1483076587","1483076554","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076588","1483076588","1483076638","1483076588","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076596","1483076596","1483076638","1483076596","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076606","1483076606","1483076660","1483076606","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076651","1483076651","1483076713","1483076651","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974119","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076657","1483076657","1483076704","1483076657","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974121","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076661","1483076661","1483076730","1483076661","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974123","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076665","1483076665","1483076802","1483076665","1","8","0","-1","137","0","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974129","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076705","1483076705","1483076746","1483076705","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974131","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076714","1483076714","1483076745","1483076714","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076742","1483076742","1483076780","1483076742","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974139","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076746","1483076746","1483076788","1483076746","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076760","1483076760","1483076810","1483076760","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076913","1483076913","1483076943","1483076913","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076966","1483076966","1483077029","1483076966","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076998","1483076998","1483077031","1483076998","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077011","1483077011","1483077054","1483077011","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077028","1483077028","1483077087","1483077028","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077088","1483077088","1483077133","1483077088","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077091","1483077091","1483077158","1483077091","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077091","1483077091","1483077154","1483077091","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077094","1483077094","1483077237","1483077094","1","8","0","-1","143","0","1144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077186","1483077186","1483077216","1483077186","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077270","1483077270","1483077320","1483077270","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077279","1483077279","1483077347","1483077279","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077329","1483077329","1483077360","1483077329","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077336","1483077336","1483077366","1483077336","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077361","1483077361","1483077392","1483077361","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077367","1483077367","1483077413","1483077367","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077371","1483077371","1483077415","1483077371","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077375","1483077375","1483077434","1483077375","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077379","1483077379","1483077415","1483077379","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077393","1483077393","1483077452","1483077393","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077416","1483077416","1483077450","1483077416","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077425","1483077425","1483077465","1483077425","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077435","1483077435","1483077484","1483077435","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077444","1483077444","1483077480","1483077444","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077453","1483077453","1483077515","1483077453","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077465","1483077465","1483077522","1483077465","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077551","1483077551","1483077584","1483077551","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077579","1483077579","1483077634","1483077579","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077599","1483077599","1483077741","1483077599","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077635","1483077635","1483077684","1483077635","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077654","1483077654","1483077725","1483077654","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077658","1483077658","1483077698","1483077658","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077664","1483077664","1483077717","1483077664","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077685","1483077685","1483077747","1483077685","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077718","1483077718","1483077767","1483077718","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077726","1483077726","1483077792","1483077726","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077732","1483077732","1483077802","1483077732","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077742","1483077742","1483077805","1483077742","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077757","1483077757","1483077818","1483077757","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077793","1483077793","1483077874","1483077793","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077806","1483077806","1483077990","1483077806","1","8","0","-1","184","0","1472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077819","1483077819","1483077850","1483077819","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077831","1483077831","1483077879","1483077831","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077880","1483077880","1483077933","1483077880","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077949","1483077949","1483078007","1483077949","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077974","1483077974","1483078015","1483077974","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078021","1483078021","1483078059","1483078021","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078060","1483078060","1483078110","1483078060","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974527","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078096","1483078096","1483078141","1483078096","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078109","1483078109","1483078209","1483078109","1","8","0","-1","100","0","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078130","1483078130","1483078181","1483078130","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078142","1483078142","1483078177","1483078142","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078158","1483078158","1483078192","1483078158","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078177","1483078177","1483078212","1483078177","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078186","1483078186","1483078216","1483078186","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078193","1483078193","1483078229","1483078193","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078230","1483078230","1483078273","1483078230","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078245","1483078245","1483078367","1483078245","1","8","0","-1","122","0","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078250","1483078250","1483078283","1483078250","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078251","1483078251","1483078302","1483078251","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078272","1483078272","1483078309","1483078272","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078352","1483078352","1483078478","1483078352","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078366","1483078366","1483078399","1483078366","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078458","1483078458","1483078497","1483078458","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078458","1483078458","1483078530","1483078458","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078479","1483078479","1483078531","1483078479","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078519","1483078519","1483078550","1483078519","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078522","1483078522","1483078555","1483078522","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974689","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078532","1483078532","1483078566","1483078532","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974715","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078611","1483078611","1483078666","1483078611","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078719","1483078719","1483078784","1483078719","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078724","1483078724","1483078789","1483078724","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078738","1483078738","1483078768","1483078738","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974757","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078774","1483078774","1483078853","1483078774","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078785","1483078785","1483078959","1483078785","1","8","0","-1","174","0","1392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078817","1483078817","1483078872","1483078817","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078846","1483078846","1483078891","1483078846","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078854","1483078854","1483078923","1483078854","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078854","1483078854","1483078917","1483078854","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078918","1483078918","1483078972","1483078918","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974788","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078924","1483078924","1483078972","1483078924","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078933","1483078933","1483078997","1483078933","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079093","1483079093","1483079235","1483079093","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079236","1483079236","1483079305","1483079236","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079273","1483079273","1483079437","1483079273","1","8","0","-1","164","0","1312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079286","1483079286","1483079391","1483079286","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079292","1483079292","1483079468","1483079292","1","8","0","-1","176","0","1408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079296","1483079296","1483079340","1483079296","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079306","1483079306","1483079367","1483079306","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974863","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079341","1483079341","1483079397","1483079341","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079345","1483079345","1483079390","1483079345","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974867","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079368","1483079368","1483079412","1483079368","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079391","1483079391","1483079442","1483079391","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079398","1483079398","1483079444","1483079398","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079568","1483079568","1483079607","1483079568","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079608","1483079608","1483079686","1483079608","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079663","1483079663","1483079703","1483079663","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079691","1483079691","1483079787","1483079691","1","8","0","-1","96","0","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079703","1483079703","1483079872","1483079703","1","8","0","-1","169","0","1352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079715","1483079715","1483079776","1483079715","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079745","1483079745","1483079817","1483079745","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079773","1483079773","1483079845","1483079773","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079776","1483079776","1483079848","1483079776","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079788","1483079788","1483079831","1483079788","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079818","1483079818","1483079895","1483079818","1","8","0","-1","77","0","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079920","1483079920","1483080020","1483079920","1","8","0","-1","100","0","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079926","1483079926","1483080095","1483079926","1","8","0","-1","169","0","1352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080011","1483080011","1483080041","1483080011","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080041","1483080041","1483080088","1483080041","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080049","1483080049","1483080096","1483080049","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080110","1483080110","1483080151","1483080110","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080113","1483080113","1483080154","1483080113","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080120","1483080120","1483080179","1483080120","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080187","1483080187","1483080224","1483080187","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080190","1483080190","1483080224","1483080190","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080198","1483080198","1483080238","1483080198","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080304","1483080304","1483080336","1483080304","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080388","1483080388","1483080428","1483080388","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080392","1483080392","1483080437","1483080392","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975127","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080399","1483080399","1483080439","1483080399","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975129","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080406","1483080406","1483080440","1483080406","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975135","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080429","1483080429","1483080463","1483080429","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080441","1483080441","1483080488","1483080441","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080510","1483080510","1483080548","1483080510","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080519","1483080519","1483080550","1483080519","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080538","1483080538","1483080571","1483080538","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080547","1483080547","1483080578","1483080547","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080631","1483080631","1483080667","1483080631","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080742","1483080742","1483080858","1483080742","1","8","0","-1","116","0","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080764","1483080764","1483080800","1483080764","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080772","1483080772","1483080819","1483080772","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080801","1483080801","1483080846","1483080801","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080803","1483080803","1483080842","1483080803","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080804","1483080804","1483080844","1483080804","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080865","1483080865","1483080904","1483080865","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080868","1483080868","1483081000","1483080868","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080871","1483080871","1483080915","1483080871","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080881","1483080881","1483080925","1483080881","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080904","1483080904","1483080939","1483080904","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080940","1483080940","1483080974","1483080940","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080974","1483080974","1483081007","1483080974","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081009","1483081009","1483081049","1483081009","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081019","1483081019","1483081052","1483081019","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081041","1483081041","1483081080","1483081041","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081139","1483081139","1483081186","1483081139","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081144","1483081144","1483081279","1483081144","1","8","0","-1","135","0","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081147","1483081147","1483081184","1483081147","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081216","1483081216","1483081246","1483081216","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081237","1483081237","1483081269","1483081237","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081270","1483081270","1483081301","1483081270","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081270","1483081270","1483081325","1483081270","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081271","1483081271","1483081319","1483081271","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081280","1483081280","1483081324","1483081280","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081293","1483081293","1483081345","1483081293","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975446","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081301","1483081301","1483081336","1483081301","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081320","1483081320","1483081379","1483081320","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081388","1483081388","1483081444","1483081388","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081389","1483081389","1483081445","1483081389","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081446","1483081446","1483081537","1483081446","1","8","0","-1","91","0","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081449","1483081449","1483081543","1483081449","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081568","1483081568","1483081601","1483081568","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081591","1483081591","1483081621","1483081591","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975527","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081606","1483081606","1483081647","1483081606","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081621","1483081621","1483081667","1483081621","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081629","1483081629","1483081686","1483081629","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081638","1483081638","1483081671","1483081638","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081783","1483081783","1483081815","1483081783","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081878","1483081878","1483081912","1483081878","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081886","1483081886","1483081917","1483081886","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081897","1483081897","1483081934","1483081897","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081910","1483081910","1483081941","1483081910","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081990","1483081990","1483082027","1483081990","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081996","1483081996","1483082028","1483081996","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081998","1483081998","1483082045","1483081998","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082027","1483082027","1483082061","1483082027","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082029","1483082029","1483082059","1483082029","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082061","1483082061","1483082100","1483082061","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082128","1483082128","1483082165","1483082128","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082142","1483082142","1483082185","1483082142","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082201","1483082201","1483082255","1483082201","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082237","1483082237","1483082279","1483082237","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082240","1483082240","1483082297","1483082240","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082244","1483082244","1483082279","1483082244","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082256","1483082256","1483082346","1483082256","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082280","1483082280","1483082319","1483082280","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082345","1483082345","1483082411","1483082345","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082348","1483082348","1483082387","1483082348","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082351","1483082351","1483082381","1483082351","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082382","1483082382","1483082414","1483082382","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082398","1483082398","1483082528","1483082398","1","8","0","-1","130","0","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975824","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082465","1483082465","1483082498","1483082465","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082493","1483082493","1483082535","1483082493","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082498","1483082498","1483082541","1483082498","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082583","1483082583","1483082652","1483082583","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082597","1483082597","1483082724","1483082597","1","8","0","-1","127","0","1016","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082629","1483082629","1483082753","1483082629","1","8","0","-1","124","0","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082653","1483082653","1483082724","1483082653","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082722","1483082722","1483082855","1483082722","1","8","0","-1","133","0","1064","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082725","1483082725","1483082837","1483082725","1","8","0","-1","112","0","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082750","1483082750","1483082831","1483082750","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082754","1483082754","1483082825","1483082754","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082754","1483082754","1483082867","1483082754","1","8","0","-1","113","0","904","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082801","1483082801","1483082944","1483082801","1","8","0","-1","143","0","1144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082826","1483082826","1483082981","1483082826","1","8","0","-1","155","0","1240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082832","1483082832","1483082984","1483082832","1","8","0","-1","152","0","1216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082945","1483082945","1483083003","1483082945","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082955","1483082955","1483083022","1483082955","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082985","1483082985","1483083025","1483082985","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083004","1483083004","1483083053","1483083004","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083023","1483083023","1483083080","1483083023","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083024","1483083024","1483083100","1483083024","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083102","1483083102","1483083141","1483083102","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083175","1483083175","1483083210","1483083175","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083176","1483083176","1483083254","1483083176","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083189","1483083189","1483083350","1483083189","1","8","0","-1","161","0","1288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975992","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083211","1483083211","1483083259","1483083211","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083260","1483083260","1483083301","1483083260","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083283","1483083283","1483083350","1483083283","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083302","1483083302","1483083364","1483083302","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976016","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083308","1483083308","1483083343","1483083308","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083358","1483083358","1483083442","1483083358","1","8","0","-1","84","0","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976035","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083382","1483083382","1483083443","1483083382","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976037","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083387","1483083387","1483083427","1483083387","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976041","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083428","1483083428","1483083461","1483083428","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976079","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083496","1483083496","1483083540","1483083496","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976081","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083501","1483083501","1483083559","1483083501","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976083","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083512","1483083512","1483083548","1483083512","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083693","1483083693","1483083725","1483083693","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083725","1483083725","1483083756","1483083725","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083726","1483083726","1483083769","1483083726","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083760","1483083760","1483083841","1483083760","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083763","1483083763","1483083798","1483083763","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083976","1483083976","1483084042","1483083976","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083982","1483083982","1483084044","1483083982","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083995","1483083995","1483084053","1483083995","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084071","1483084071","1483084105","1483084071","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084083","1483084083","1483084129","1483084083","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084157","1483084157","1483084193","1483084157","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084189","1483084189","1483084220","1483084189","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084249","1483084249","1483084289","1483084249","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084260","1483084260","1483084306","1483084260","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084288","1483084288","1483084385","1483084288","1","8","0","-1","97","0","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084307","1483084307","1483084376","1483084307","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084395","1483084395","1483084428","1483084395","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084445","1483084445","1483084521","1483084445","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084534","1483084534","1483084590","1483084534","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084572","1483084572","1483084627","1483084572","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084576","1483084576","1483084610","1483084576","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084576","1483084576","1483084606","1483084576","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084596","1483084596","1483084628","1483084596","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084611","1483084611","1483084652","1483084611","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084628","1483084628","1483084665","1483084628","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084636","1483084636","1483084779","1483084636","1","8","0","-1","143","0","1144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084653","1483084653","1483084695","1483084653","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084666","1483084666","1483084705","1483084666","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084696","1483084696","1483084747","1483084696","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084703","1483084703","1483084745","1483084703","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084739","1483084739","1483084831","1483084739","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084746","1483084746","1483084869","1483084746","1","8","0","-1","123","0","984","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084779","1483084779","1483084843","1483084779","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084783","1483084783","1483084842","1483084783","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084842","1483084842","1483084915","1483084842","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084843","1483084843","1483084883","1483084843","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084960","1483084960","1483084992","1483084960","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085066","1483085066","1483085096","1483085066","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085074","1483085074","1483085132","1483085074","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085087","1483085087","1483085127","1483085087","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085269","1483085269","1483085302","1483085269","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085301","1483085301","1483085339","1483085301","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085304","1483085304","1483085364","1483085304","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976807","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085427","1483085427","1483085461","1483085427","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085430","1483085430","1483085468","1483085430","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085609","1483085609","1483085654","1483085609","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085625","1483085625","1483085657","1483085625","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085650","1483085650","1483085701","1483085650","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085708","1483085708","1483085755","1483085708","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085711","1483085711","1483085749","1483085711","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085725","1483085725","1483085759","1483085725","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085736","1483085736","1483085768","1483085736","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085750","1483085750","1483085819","1483085750","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085752","1483085752","1483085794","1483085752","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085755","1483085755","1483085792","1483085755","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085840","1483085840","1483085893","1483085840","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085850","1483085850","1483085928","1483085850","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085869","1483085869","1483085909","1483085869","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085881","1483085881","1483085918","1483085881","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085912","1483085912","1483085954","1483085912","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085935","1483085935","1483085968","1483085935","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085978","1483085978","1483086016","1483085978","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085989","1483085989","1483086056","1483085989","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086017","1483086017","1483086083","1483086017","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086025","1483086025","1483086084","1483086025","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086032","1483086032","1483086075","1483086032","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086045","1483086045","1483086111","1483086045","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086084","1483086084","1483086148","1483086084","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086096","1483086096","1483086144","1483086096","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086111","1483086111","1483086159","1483086111","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086138","1483086138","1483086188","1483086138","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086142","1483086142","1483086228","1483086142","1","8","0","-1","86","0","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086309","1483086309","1483086383","1483086309","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086328","1483086328","1483086393","1483086328","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086333","1483086333","1483086365","1483086333","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086395","1483086395","1483086426","1483086395","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086413","1483086413","1483086443","1483086413","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086413","1483086413","1483086502","1483086413","1","8","0","-1","89","0","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086474","1483086474","1483086505","1483086474","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086514","1483086514","1483086607","1483086514","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086699","1483086699","1483086737","1483086699","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086708","1483086708","1483086739","1483086708","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086721","1483086721","1483086751","1483086721","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086752","1483086752","1483086787","1483086752","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086758","1483086758","1483086790","1483086758","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086758","1483086758","1483086788","1483086758","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086768","1483086768","1483086807","1483086768","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086883","1483086883","1483086916","1483086883","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086906","1483086906","1483086963","1483086906","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086947","1483086947","1483086988","1483086947","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977394","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086956","1483086956","1483087008","1483086956","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086974","1483086974","1483087004","1483086974","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087005","1483087005","1483087054","1483087005","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087008","1483087008","1483087040","1483087008","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087009","1483087009","1483087043","1483087009","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087009","1483087009","1483087043","1483087009","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087074","1483087074","1483087149","1483087074","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087075","1483087075","1483087128","1483087075","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087122","1483087122","1483087184","1483087122","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087221","1483087221","1483087357","1483087221","1","8","0","-1","136","0","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087222","1483087222","1483087255","1483087222","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087242","1483087242","1483087348","1483087242","1","8","0","-1","106","0","848","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977490","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087297","1483087297","1483087341","1483087297","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087340","1483087340","1483087387","1483087340","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087355","1483087355","1483087396","1483087355","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087358","1483087358","1483087401","1483087358","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087388","1483087388","1483087421","1483087388","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087402","1483087402","1483087440","1483087402","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087415","1483087415","1483087464","1483087415","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087422","1483087422","1483087473","1483087422","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087429","1483087429","1483087538","1483087429","1","8","0","-1","109","0","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087441","1483087441","1483087492","1483087441","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087460","1483087460","1483087519","1483087460","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087493","1483087493","1483087524","1483087493","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087555","1483087555","1483087598","1483087555","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087569","1483087569","1483087729","1483087569","1","8","0","-1","160","0","1280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087569","1483087569","1483087625","1483087569","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087629","1483087629","1483087674","1483087629","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087675","1483087675","1483087739","1483087675","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087687","1483087687","1483087737","1483087687","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087696","1483087696","1483087754","1483087696","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087730","1483087730","1483087786","1483087730","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087738","1483087738","1483087806","1483087738","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977623","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087760","1483087760","1483087848","1483087760","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087787","1483087787","1483087845","1483087787","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087866","1483087866","1483087910","1483087866","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087936","1483087936","1483087978","1483087936","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087992","1483087992","1483088076","1483087992","1","8","0","-1","84","0","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977715","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088004","1483088004","1483088041","1483088004","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088092","1483088092","1483088137","1483088092","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977755","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088098","1483088098","1483088138","1483088098","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977761","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088129","1483088129","1483088159","1483088129","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088168","1483088168","1483088217","1483088168","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088176","1483088176","1483088207","1483088176","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977779","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088176","1483088176","1483088211","1483088176","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088212","1483088212","1483088248","1483088212","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088215","1483088215","1483088262","1483088215","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088218","1483088218","1483088272","1483088218","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088499","1483088499","1483088531","1483088499","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977922","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088532","1483088532","1483088565","1483088532","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977974","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088701","1483088701","1483088750","1483088701","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088706","1483088706","1483088762","1483088706","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977984","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088734","1483088734","1483088780","1483088734","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088746","1483088746","1483088791","1483088746","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088840","1483088840","1483088887","1483088840","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088884","1483088884","1483088962","1483088884","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088888","1483088888","1483088927","1483088888","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088941","1483088941","1483088973","1483088941","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088957","1483088957","1483089011","1483088957","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089016","1483089016","1483089075","1483089016","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089042","1483089042","1483089097","1483089042","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089076","1483089076","1483089140","1483089076","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089098","1483089098","1483089160","1483089098","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089118","1483089118","1483089159","1483089118","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089134","1483089134","1483089185","1483089134","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089155","1483089155","1483089206","1483089155","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089160","1483089160","1483089214","1483089160","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089186","1483089186","1483089247","1483089186","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089207","1483089207","1483089267","1483089207","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089215","1483089215","1483089272","1483089215","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089227","1483089227","1483089320","1483089227","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089247","1483089247","1483089361","1483089247","1","8","0","-1","114","0","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089267","1483089267","1483089353","1483089267","1","8","0","-1","86","0","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089389","1483089389","1483089422","1483089389","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089397","1483089397","1483089473","1483089397","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089423","1483089423","1483089474","1483089423","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089501","1483089501","1483089540","1483089501","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089504","1483089504","1483089541","1483089504","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089518","1483089518","1483089606","1483089518","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089538","1483089538","1483089608","1483089538","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089626","1483089626","1483089658","1483089626","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089659","1483089659","1483089703","1483089659","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089870","1483089870","1483089902","1483089870","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978356","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089873","1483089873","1483089909","1483089873","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089887","1483089887","1483089919","1483089887","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089910","1483089910","1483089949","1483089910","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089918","1483089918","1483089955","1483089918","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089931","1483089931","1483089965","1483089931","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089955","1483089955","1483090003","1483089955","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089966","1483089966","1483090083","1483089966","1","8","0","-1","117","0","936","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089966","1483089966","1483090018","1483089966","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089979","1483089979","1483090026","1483089979","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089999","1483089999","1483090034","1483089999","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978402","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090004","1483090004","1483090040","1483090004","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090040","1483090040","1483090075","1483090040","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978422","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090056","1483090056","1483090095","1483090056","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090075","1483090075","1483090107","1483090075","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090135","1483090135","1483090172","1483090135","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090138","1483090138","1483090170","1483090138","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090156","1483090156","1483090213","1483090156","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090160","1483090160","1483090196","1483090160","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090207","1483090207","1483090247","1483090207","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090241","1483090241","1483090316","1483090241","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090248","1483090248","1483090342","1483090248","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090262","1483090262","1483090306","1483090262","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090289","1483090289","1483090357","1483090289","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090307","1483090307","1483090381","1483090307","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090340","1483090340","1483090461","1483090340","1","8","0","-1","121","0","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090343","1483090343","1483090430","1483090343","1","8","0","-1","87","0","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090356","1483090356","1483090428","1483090356","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090382","1483090382","1483090464","1483090382","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090428","1483090428","1483090550","1483090428","1","8","0","-1","122","0","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090429","1483090429","1483090499","1483090429","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978527","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090500","1483090500","1483090602","1483090500","1","8","0","-1","102","0","816","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090574","1483090574","1483090620","1483090574","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090614","1483090614","1483090651","1483090614","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090650","1483090650","1483090699","1483090650","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090700","1483090700","1483090745","1483090700","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090734","1483090734","1483090797","1483090734","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090738","1483090738","1483090794","1483090738","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090745","1483090745","1483090799","1483090745","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090837","1483090837","1483090876","1483090837","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090843","1483090843","1483090890","1483090843","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090851","1483090851","1483090896","1483090851","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090895","1483090895","1483090976","1483090895","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090954","1483090954","1483091011","1483090954","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090982","1483090982","1483091033","1483090982","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978649","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091012","1483091012","1483091059","1483091012","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091016","1483091016","1483091066","1483091016","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091027","1483091027","1483091087","1483091027","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978661","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091041","1483091041","1483091114","1483091041","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091060","1483091060","1483091152","1483091060","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091067","1483091067","1483091149","1483091067","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091087","1483091087","1483091121","1483091087","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091114","1483091114","1483091145","1483091114","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091122","1483091122","1483091169","1483091122","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091146","1483091146","1483091193","1483091146","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091150","1483091150","1483091180","1483091150","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091201","1483091201","1483091325","1483091201","1","8","0","-1","124","0","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091237","1483091237","1483091281","1483091237","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091237","1483091237","1483091277","1483091237","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091253","1483091253","1483091292","1483091253","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091326","1483091326","1483091359","1483091326","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091342","1483091342","1483091377","1483091342","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091426","1483091426","1483091469","1483091426","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091451","1483091451","1483091494","1483091451","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091478","1483091478","1483091511","1483091478","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091498","1483091498","1483091531","1483091498","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091512","1483091512","1483091560","1483091512","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091521","1483091521","1483091562","1483091521","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091526","1483091526","1483091566","1483091526","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091527","1483091527","1483091563","1483091527","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091555","1483091555","1483091589","1483091555","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091561","1483091561","1483091594","1483091561","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091564","1483091564","1483091626","1483091564","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091575","1483091575","1483091701","1483091575","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091590","1483091590","1483091649","1483091590","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091594","1483091594","1483091647","1483091594","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091616","1483091616","1483091648","1483091616","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091648","1483091648","1483091678","1483091648","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091713","1483091713","1483091753","1483091713","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091732","1483091732","1483091791","1483091732","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091840","1483091840","1483091951","1483091840","1","8","0","-1","111","0","888","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091861","1483091861","1483091898","1483091861","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091865","1483091865","1483091912","1483091865","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091873","1483091873","1483091909","1483091873","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091886","1483091886","1483091928","1483091886","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091910","1483091910","1483091950","1483091910","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091913","1483091913","1483091954","1483091913","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091919","1483091919","1483091949","1483091919","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978965","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091929","1483091929","1483091970","1483091929","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091951","1483091951","1483091989","1483091951","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091971","1483091971","1483092036","1483091971","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092037","1483092037","1483092068","1483092037","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092058","1483092058","1483092107","1483092058","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092100","1483092100","1483092139","1483092100","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092103","1483092103","1483092149","1483092103","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092115","1483092115","1483092244","1483092115","1","8","0","-1","129","0","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092121","1483092121","1483092167","1483092121","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092150","1483092150","1483092196","1483092150","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092172","1483092172","1483092204","1483092172","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092197","1483092197","1483092235","1483092197","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092202","1483092202","1483092252","1483092202","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979055","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092205","1483092205","1483092237","1483092205","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979073","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092253","1483092253","1483092371","1483092253","1","8","0","-1","118","0","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979075","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092261","1483092261","1483092316","1483092261","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979077","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092266","1483092266","1483092335","1483092266","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979079","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092270","1483092270","1483092312","1483092270","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979091","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092339","1483092339","1483092376","1483092339","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979095","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092344","1483092344","1483092394","1483092344","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979099","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092355","1483092355","1483092405","1483092355","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092406","1483092406","1483092454","1483092406","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092409","1483092409","1483092448","1483092409","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979123","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092422","1483092422","1483092467","1483092422","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979127","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092449","1483092449","1483092510","1483092449","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979135","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092466","1483092466","1483092519","1483092466","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092511","1483092511","1483092576","1483092511","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092519","1483092519","1483092568","1483092519","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092569","1483092569","1483092659","1483092569","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092572","1483092572","1483092742","1483092572","1","8","0","-1","170","0","1360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979171","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092577","1483092577","1483092617","1483092577","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092618","1483092618","1483092655","1483092618","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092651","1483092651","1483092683","1483092651","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979187","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092660","1483092660","1483092690","1483092660","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092778","1483092778","1483092810","1483092778","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092847","1483092847","1483092885","1483092847","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092881","1483092881","1483092916","1483092881","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092905","1483092905","1483092944","1483092905","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092944","1483092944","1483092978","1483092944","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092948","1483092948","1483093060","1483092948","1","8","0","-1","112","0","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092955","1483092955","1483092987","1483092955","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093052","1483093052","1483093108","1483093052","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093088","1483093088","1483093122","1483093088","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093109","1483093109","1483093139","1483093109","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093144","1483093144","1483093190","1483093144","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093160","1483093160","1483093276","1483093160","1","8","0","-1","116","0","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093191","1483093191","1483093244","1483093191","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093205","1483093205","1483093236","1483093205","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093237","1483093237","1483093268","1483093237","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093276","1483093276","1483093308","1483093276","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093301","1483093301","1483093349","1483093301","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093304","1483093304","1483093370","1483093304","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093309","1483093309","1483093380","1483093309","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093350","1483093350","1483093401","1483093350","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093381","1483093381","1483093442","1483093381","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093429","1483093429","1483093472","1483093429","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093443","1483093443","1483093481","1483093443","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093477","1483093477","1483093511","1483093477","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093482","1483093482","1483093537","1483093482","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093574","1483093574","1483093633","1483093574","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093586","1483093586","1483093637","1483093586","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093627","1483093627","1483093658","1483093627","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093633","1483093633","1483093696","1483093633","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093639","1483093639","1483093678","1483093639","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093679","1483093679","1483093723","1483093679","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093686","1483093686","1483093717","1483093686","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093689","1483093689","1483093721","1483093689","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093692","1483093692","1483093738","1483093692","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093697","1483093697","1483093779","1483093697","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093780","1483093780","1483093877","1483093780","1","8","0","-1","97","0","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093866","1483093866","1483093979","1483093866","1","8","0","-1","113","0","904","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093919","1483093919","1483094071","1483093919","1","8","0","-1","152","0","1216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093957","1483093957","1483094093","1483093957","1","8","0","-1","136","0","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093980","1483093980","1483094131","1483093980","1","8","0","-1","151","0","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093989","1483093989","1483094023","1483093989","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094010","1483094010","1483094044","1483094010","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094045","1483094045","1483094079","1483094045","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094080","1483094080","1483094123","1483094080","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094116","1483094116","1483094157","1483094116","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094158","1483094158","1483094215","1483094158","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094209","1483094209","1483094263","1483094209","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094270","1483094270","1483094318","1483094270","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094310","1483094310","1483094348","1483094310","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094334","1483094334","1483094490","1483094334","1","8","0","-1","156","0","1248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094340","1483094340","1483094390","1483094340","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094349","1483094349","1483094405","1483094349","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094358","1483094358","1483094401","1483094358","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094395","1483094395","1483094430","1483094395","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094402","1483094402","1483094469","1483094402","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979685","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094403","1483094403","1483094469","1483094403","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979687","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094406","1483094406","1483094470","1483094406","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094431","1483094431","1483094479","1483094431","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094469","1483094469","1483094521","1483094469","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094470","1483094470","1483094532","1483094470","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094477","1483094477","1483094558","1483094477","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094480","1483094480","1483094632","1483094480","1","8","0","-1","152","0","1216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094522","1483094522","1483094574","1483094522","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094525","1483094525","1483094564","1483094525","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094533","1483094533","1483094571","1483094533","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094559","1483094559","1483094590","1483094559","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094565","1483094565","1483094604","1483094565","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094642","1483094642","1483094689","1483094642","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094668","1483094668","1483094810","1483094668","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094677","1483094677","1483094741","1483094677","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094736","1483094736","1483094766","1483094736","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094746","1483094746","1483094783","1483094746","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094750","1483094750","1483094801","1483094750","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094784","1483094784","1483094829","1483094784","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094790","1483094790","1483094830","1483094790","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094802","1483094802","1483094832","1483094802","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094830","1483094830","1483094972","1483094830","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094833","1483094833","1483094911","1483094833","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094854","1483094854","1483094908","1483094854","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094885","1483094885","1483094920","1483094885","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094894","1483094894","1483094952","1483094894","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094909","1483094909","1483094967","1483094909","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094912","1483094912","1483094945","1483094912","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094915","1483094915","1483094974","1483094915","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094920","1483094920","1483094974","1483094920","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094975","1483094975","1483095073","1483094975","1","8","0","-1","98","0","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095034","1483095034","1483095075","1483095034","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095035","1483095035","1483095092","1483095035","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095093","1483095093","1483095133","1483095093","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095159","1483095159","1483095189","1483095159","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095173","1483095173","1483095204","1483095173","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095205","1483095205","1483095255","1483095205","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095214","1483095214","1483095258","1483095214","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095240","1483095240","1483095282","1483095240","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095308","1483095308","1483095347","1483095308","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095348","1483095348","1483095389","1483095348","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095376","1483095376","1483095418","1483095376","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979966","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095386","1483095386","1483095423","1483095386","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979994","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095512","1483095512","1483095574","1483095512","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095528","1483095528","1483095564","1483095528","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095547","1483095547","1483095591","1483095547","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095575","1483095575","1483095607","1483095575","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095586","1483095586","1483095653","1483095586","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095592","1483095592","1483095663","1483095592","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095600","1483095600","1483095747","1483095600","1","8","0","-1","147","0","1176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980039","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095696","1483095696","1483095766","1483095696","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095696","1483095696","1483095756","1483095696","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095710","1483095710","1483095753","1483095710","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095817","1483095817","1483095886","1483095817","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095825","1483095825","1483095901","1483095825","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095847","1483095847","1483095893","1483095847","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095887","1483095887","1483095954","1483095887","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095930","1483095930","1483095983","1483095930","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095964","1483095964","1483096075","1483095964","1","8","0","-1","111","0","888","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096002","1483096002","1483096120","1483096002","1","8","0","-1","118","0","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096094","1483096094","1483096125","1483096094","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096106","1483096106","1483096244","1483096106","1","8","0","-1","138","0","1104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096111","1483096111","1483096159","1483096111","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096121","1483096121","1483096159","1483096121","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096121","1483096121","1483096186","1483096121","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096160","1483096160","1483096224","1483096160","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096245","1483096245","1483096337","1483096245","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096254","1483096254","1483096297","1483096254","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096351","1483096351","1483096388","1483096351","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096359","1483096359","1483096401","1483096359","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096389","1483096389","1483096441","1483096389","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096392","1483096392","1483096446","1483096392","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096422","1483096422","1483096483","1483096422","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096442","1483096442","1483096500","1483096442","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096446","1483096446","1483096551","1483096446","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096484","1483096484","1483096541","1483096484","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980227","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096489","1483096489","1483096548","1483096489","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096501","1483096501","1483096595","1483096501","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096506","1483096506","1483096675","1483096506","1","8","0","-1","169","0","1352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096542","1483096542","1483096639","1483096542","1","8","0","-1","97","0","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096549","1483096549","1483096821","1483096549","1","8","0","-1","272","0","2176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096596","1483096596","1483096773","1483096596","1","8","0","-1","177","0","1416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096640","1483096640","1483096719","1483096640","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096675","1483096675","1483096763","1483096675","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980259","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096692","1483096692","1483096794","1483096692","1","8","0","-1","102","0","816","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096720","1483096720","1483096751","1483096720","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096731","1483096731","1483096761","1483096731","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096752","1483096752","1483096799","1483096752","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096795","1483096795","1483096845","1483096795","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096800","1483096800","1483096831","1483096800","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096829","1483096829","1483096899","1483096829","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096832","1483096832","1483096893","1483096832","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096836","1483096836","1483096886","1483096836","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096846","1483096846","1483096995","1483096846","1","8","0","-1","149","0","1192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096850","1483096850","1483096909","1483096850","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096872","1483096872","1483096955","1483096872","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096887","1483096887","1483096968","1483096887","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096894","1483096894","1483096930","1483096894","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096900","1483096900","1483096935","1483096900","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096910","1483096910","1483096949","1483096910","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096930","1483096930","1483096973","1483096930","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096950","1483096950","1483096993","1483096950","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980319","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096955","1483096955","1483097002","1483096955","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097070","1483097070","1483097103","1483097070","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097103","1483097103","1483097152","1483097103","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097153","1483097153","1483097210","1483097153","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097170","1483097170","1483097209","1483097170","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097184","1483097184","1483097267","1483097184","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097210","1483097210","1483097291","1483097210","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097215","1483097215","1483097248","1483097215","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097246","1483097246","1483097304","1483097246","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097249","1483097249","1483097282","1483097249","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097260","1483097260","1483097295","1483097260","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097266","1483097266","1483097317","1483097266","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097283","1483097283","1483097331","1483097283","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097296","1483097296","1483097340","1483097296","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097305","1483097305","1483097346","1483097305","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097318","1483097318","1483097349","1483097318","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097350","1483097350","1483097406","1483097350","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097351","1483097351","1483097504","1483097351","1","8","0","-1","153","0","1224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097496","1483097496","1483097544","1483097496","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097501","1483097501","1483097540","1483097501","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097505","1483097505","1483097545","1483097505","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097520","1483097520","1483097600","1483097520","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097546","1483097546","1483097595","1483097546","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097562","1483097562","1483097605","1483097562","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097594","1483097594","1483097642","1483097594","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097595","1483097595","1483097633","1483097595","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097606","1483097606","1483097653","1483097606","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097626","1483097626","1483097680","1483097626","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097643","1483097643","1483097674","1483097643","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097652","1483097652","1483097697","1483097652","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097684","1483097684","1483097751","1483097684","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097688","1483097688","1483097753","1483097688","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097698","1483097698","1483097737","1483097698","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097773","1483097773","1483097809","1483097773","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097774","1483097774","1483097816","1483097774","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097791","1483097791","1483097840","1483097791","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097840","1483097840","1483097886","1483097840","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097841","1483097841","1483097916","1483097841","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097856","1483097856","1483098010","1483097856","1","8","0","-1","154","0","1232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097887","1483097887","1483097939","1483097887","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097926","1483097926","1483097966","1483097926","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097956","1483097956","1483098024","1483097956","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097967","1483097967","1483098018","1483097967","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097995","1483097995","1483098037","1483097995","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098010","1483098010","1483098044","1483098010","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098011","1483098011","1483098065","1483098011","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098019","1483098019","1483098075","1483098019","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098025","1483098025","1483098101","1483098025","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098035","1483098035","1483098120","1483098035","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098038","1483098038","1483098121","1483098038","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098045","1483098045","1483098101","1483098045","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098065","1483098065","1483098154","1483098065","1","8","0","-1","89","0","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098076","1483098076","1483098167","1483098076","1","8","0","-1","91","0","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098102","1483098102","1483098147","1483098102","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098120","1483098120","1483098157","1483098120","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098147","1483098147","1483098182","1483098147","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098259","1483098259","1483098315","1483098259","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098302","1483098302","1483098369","1483098302","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098329","1483098329","1483098374","1483098329","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098334","1483098334","1483098392","1483098334","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098341","1483098341","1483098413","1483098341","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098345","1483098345","1483098424","1483098345","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098370","1483098370","1483098412","1483098370","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098393","1483098393","1483098466","1483098393","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098425","1483098425","1483098479","1483098425","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098466","1483098466","1483098521","1483098466","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098480","1483098480","1483098568","1483098480","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098480","1483098480","1483098551","1483098480","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098491","1483098491","1483098533","1483098491","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098501","1483098501","1483098544","1483098501","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098561","1483098561","1483098661","1483098561","1","8","0","-1","100","0","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098569","1483098569","1483098683","1483098569","1","8","0","-1","114","0","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098667","1483098667","1483098700","1483098667","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098753","1483098753","1483098792","1483098753","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098764","1483098764","1483098800","1483098764","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098775","1483098775","1483098926","1483098775","1","8","0","-1","151","0","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098793","1483098793","1483098874","1483098793","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098801","1483098801","1483098852","1483098801","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098820","1483098820","1483098855","1483098820","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098825","1483098825","1483098874","1483098825","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098856","1483098856","1483098890","1483098856","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980821","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098874","1483098874","1483098909","1483098874","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098883","1483098883","1483098914","1483098883","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098891","1483098891","1483098921","1483098891","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098891","1483098891","1483098939","1483098891","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098909","1483098909","1483098944","1483098909","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098921","1483098921","1483098964","1483098921","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098924","1483098924","1483098967","1483098924","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098927","1483098927","1483098958","1483098927","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098940","1483098940","1483098988","1483098940","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099045","1483099045","1483099075","1483099045","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099066","1483099066","1483099106","1483099066","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099129","1483099129","1483099196","1483099129","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099132","1483099132","1483099179","1483099132","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099148","1483099148","1483099191","1483099148","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099158","1483099158","1483099202","1483099158","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099180","1483099180","1483099213","1483099180","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099192","1483099192","1483099225","1483099192","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099203","1483099203","1483099258","1483099203","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099208","1483099208","1483099245","1483099208","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099213","1483099213","1483099260","1483099213","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099226","1483099226","1483099268","1483099226","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099259","1483099259","1483099322","1483099259","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099284","1483099284","1483099360","1483099284","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099310","1483099310","1483099378","1483099310","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099322","1483099322","1483099357","1483099322","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099410","1483099410","1483099449","1483099410","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099449","1483099449","1483099512","1483099449","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099450","1483099450","1483099497","1483099450","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099489","1483099489","1483099524","1483099489","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099498","1483099498","1483099544","1483099498","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099510","1483099510","1483099585","1483099510","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099513","1483099513","1483099548","1483099513","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099549","1483099549","1483099580","1483099549","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099560","1483099560","1483099600","1483099560","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099581","1483099581","1483099625","1483099581","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099584","1483099584","1483099639","1483099584","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981025","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099584","1483099584","1483099676","1483099584","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981033","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099626","1483099626","1483099681","1483099626","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981035","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099640","1483099640","1483099689","1483099640","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981045","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099690","1483099690","1483099759","1483099690","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981047","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099701","1483099701","1483099743","1483099701","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981089","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099854","1483099854","1483099890","1483099854","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981093","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099891","1483099891","1483099974","1483099891","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981095","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099895","1483099895","1483099959","1483099895","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981099","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099915","1483099915","1483099962","1483099915","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099957","1483099957","1483099993","1483099957","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981105","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099960","1483099960","1483100005","1483099960","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099982","1483099982","1483100074","1483099982","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099994","1483099994","1483100075","1483099994","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100004","1483100004","1483100108","1483100004","1","8","0","-1","104","0","832","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981121","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100018","1483100018","1483100079","1483100018","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981131","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100076","1483100076","1483100221","1483100076","1","8","0","-1","145","0","1160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100080","1483100080","1483100227","1483100080","1","8","0","-1","147","0","1176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100109","1483100109","1483100243","1483100109","1","8","0","-1","134","0","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100308","1483100308","1483100472","1483100308","1","8","0","-1","164","0","1312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100500","1483100500","1483100550","1483100500","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100506","1483100506","1483100559","1483100506","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100533","1483100533","1483100596","1483100533","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100547","1483100547","1483100612","1483100547","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100551","1483100551","1483100618","1483100551","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100560","1483100560","1483100626","1483100560","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100565","1483100565","1483100618","1483100565","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981199","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100597","1483100597","1483100639","1483100597","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981201","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100613","1483100613","1483100665","1483100613","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100618","1483100618","1483100673","1483100618","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100627","1483100627","1483100695","1483100627","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100639","1483100639","1483100787","1483100639","1","8","0","-1","148","0","1184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100820","1483100820","1483100875","1483100820","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100844","1483100844","1483100895","1483100844","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981259","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100848","1483100848","1483100918","1483100848","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100896","1483100896","1483100948","1483100896","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100919","1483100919","1483100993","1483100919","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100949","1483100949","1483101017","1483100949","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100960","1483100960","1483101032","1483100960","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100973","1483100973","1483101060","1483100973","1","8","0","-1","87","0","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100994","1483100994","1483101080","1483100994","1","8","0","-1","86","0","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100995","1483100995","1483101071","1483100995","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101019","1483101019","1483101077","1483101019","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101033","1483101033","1483101086","1483101033","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101060","1483101060","1483101123","1483101060","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101072","1483101072","1483101175","1483101072","1","8","0","-1","103","0","824","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101078","1483101078","1483101178","1483101078","1","8","0","-1","100","0","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101181","1483101181","1483101215","1483101181","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101222","1483101222","1483101290","1483101222","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101245","1483101245","1483101292","1483101245","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101291","1483101291","1483101321","1483101291","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101322","1483101322","1483101352","1483101322","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101353","1483101353","1483101395","1483101353","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101358","1483101358","1483101412","1483101358","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101372","1483101372","1483101508","1483101372","1","8","0","-1","136","0","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101381","1483101381","1483101424","1483101381","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101396","1483101396","1483101442","1483101396","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101424","1483101424","1483101475","1483101424","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101432","1483101432","1483101473","1483101432","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101447","1483101447","1483101500","1483101447","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101464","1483101464","1483101502","1483101464","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101475","1483101475","1483101519","1483101475","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101520","1483101520","1483101568","1483101520","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101568","1483101568","1483101615","1483101568","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981455","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101582","1483101582","1483101612","1483101582","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101612","1483101612","1483101642","1483101612","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101623","1483101623","1483101671","1483101623","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101654","1483101654","1483101698","1483101654","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101668","1483101668","1483101716","1483101668","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101685","1483101685","1483101727","1483101685","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101699","1483101699","1483101741","1483101699","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101726","1483101726","1483101759","1483101726","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101742","1483101742","1483101792","1483101742","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101750","1483101750","1483101800","1483101750","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101760","1483101760","1483101797","1483101760","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981512","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101760","1483101760","1483101794","1483101760","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101792","1483101792","1483101822","1483101792","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101814","1483101814","1483101943","1483101814","1","8","0","-1","129","0","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101819","1483101819","1483101858","1483101819","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101897","1483101897","1483101940","1483101897","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981579","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101944","1483101944","1483101976","1483101944","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101982","1483101982","1483102021","1483101982","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102021","1483102021","1483102052","1483102021","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102032","1483102032","1483102071","1483102032","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102043","1483102043","1483102093","1483102043","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102064","1483102064","1483102098","1483102064","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102065","1483102065","1483102101","1483102065","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102079","1483102079","1483102124","1483102079","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981623","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102094","1483102094","1483102139","1483102094","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102102","1483102102","1483102138","1483102102","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102125","1483102125","1483102163","1483102125","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102126","1483102126","1483102161","1483102126","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102162","1483102162","1483102222","1483102162","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102274","1483102274","1483102318","1483102274","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102357","1483102357","1483102406","1483102357","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981711","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102364","1483102364","1483102418","1483102364","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981715","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102381","1483102381","1483102431","1483102381","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981719","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102403","1483102403","1483102441","1483102403","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981725","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102432","1483102432","1483102477","1483102432","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981729","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102441","1483102441","1483102488","1483102441","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981733","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102466","1483102466","1483102501","1483102466","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102477","1483102477","1483102526","1483102477","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102517","1483102517","1483102553","1483102517","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102527","1483102527","1483102592","1483102527","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102593","1483102593","1483102655","1483102593","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102707","1483102707","1483102765","1483102707","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102727","1483102727","1483102828","1483102727","1","8","0","-1","101","0","808","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102731","1483102731","1483102913","1483102731","1","8","0","-1","182","0","1456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102766","1483102766","1483102859","1483102766","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102829","1483102829","1483102867","1483102829","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102885","1483102885","1483102933","1483102885","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102933","1483102933","1483102985","1483102933","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102936","1483102936","1483103018","1483102936","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102942","1483102942","1483102986","1483102942","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102951","1483102951","1483102998","1483102951","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102966","1483102966","1483103003","1483102966","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102983","1483102983","1483103018","1483102983","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103017","1483103017","1483103054","1483103017","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103019","1483103019","1483103064","1483103019","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103028","1483103028","1483103058","1483103028","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103065","1483103065","1483103100","1483103065","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103091","1483103091","1483103123","1483103091","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103127","1483103127","1483103166","1483103127","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103187","1483103187","1483103218","1483103187","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103190","1483103190","1483103246","1483103190","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103194","1483103194","1483103316","1483103194","1","8","0","-1","122","0","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103199","1483103199","1483103238","1483103199","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103219","1483103219","1483103254","1483103219","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103239","1483103239","1483103274","1483103239","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103255","1483103255","1483103302","1483103255","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103264","1483103264","1483103312","1483103264","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981965","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103271","1483103271","1483103315","1483103271","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103275","1483103275","1483103322","1483103275","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103383","1483103383","1483103417","1483103383","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103399","1483103399","1483103447","1483103399","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103469","1483103469","1483103537","1483103469","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103473","1483103473","1483103505","1483103473","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103497","1483103497","1483103557","1483103497","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103538","1483103538","1483103604","1483103538","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982057","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103543","1483103543","1483103594","1483103543","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982065","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103578","1483103578","1483103619","1483103578","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982073","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103595","1483103595","1483103651","1483103595","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982075","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103604","1483103604","1483103653","1483103604","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982079","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103618","1483103618","1483103672","1483103618","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103652","1483103652","1483103698","1483103652","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982101","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103699","1483103699","1483103757","1483103699","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103706","1483103706","1483103781","1483103706","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982111","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103734","1483103734","1483103766","1483103734","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103757","1483103757","1483103800","1483103757","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103758","1483103758","1483103800","1483103758","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103766","1483103766","1483103826","1483103766","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103787","1483103787","1483103880","1483103787","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103801","1483103801","1483103848","1483103801","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103840","1483103840","1483103883","1483103840","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103881","1483103881","1483103936","1483103881","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103883","1483103883","1483103916","1483103883","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103884","1483103884","1483103925","1483103884","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103908","1483103908","1483103940","1483103908","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103917","1483103917","1483103957","1483103917","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103925","1483103925","1483103964","1483103925","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103941","1483103941","1483104104","1483103941","1","8","0","-1","163","0","1304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103958","1483103958","1483104020","1483103958","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103965","1483103965","1483104061","1483103965","1","8","0","-1","96","0","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103982","1483103982","1483104027","1483103982","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104028","1483104028","1483104154","1483104028","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982199","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104136","1483104136","1483104268","1483104136","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104155","1483104155","1483104281","1483104155","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104269","1483104269","1483104316","1483104269","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104282","1483104282","1483104330","1483104282","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104317","1483104317","1483104391","1483104317","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104326","1483104326","1483104365","1483104326","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104331","1483104331","1483104403","1483104331","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104351","1483104351","1483104406","1483104351","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104377","1483104377","1483104425","1483104377","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104404","1483104404","1483104453","1483104404","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104407","1483104407","1483104451","1483104407","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104426","1483104426","1483104473","1483104426","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104426","1483104426","1483104496","1483104426","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104437","1483104437","1483104533","1483104437","1","8","0","-1","96","0","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104452","1483104452","1483104586","1483104452","1","8","0","-1","134","0","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104452","1483104452","1483104531","1483104452","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104473","1483104473","1483104529","1483104473","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104496","1483104496","1483104558","1483104496","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104650","1483104650","1483104816","1483104650","1","8","0","-1","166","0","1328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104706","1483104706","1483104756","1483104706","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104741","1483104741","1483104813","1483104741","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104788","1483104788","1483104825","1483104788","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104796","1483104796","1483104840","1483104796","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104814","1483104814","1483104879","1483104814","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104826","1483104826","1483104862","1483104826","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104838","1483104838","1483104873","1483104838","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104863","1483104863","1483104926","1483104863","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104869","1483104869","1483104954","1483104869","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104873","1483104873","1483104958","1483104873","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104880","1483104880","1483104973","1483104880","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104904","1483104904","1483104975","1483104904","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104958","1483104958","1483104998","1483104958","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104974","1483104974","1483105027","1483104974","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105027","1483105027","1483105079","1483105027","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105065","1483105065","1483105140","1483105065","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105098","1483105098","1483105188","1483105098","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982406","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105141","1483105141","1483105189","1483105141","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105160","1483105160","1483105224","1483105160","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105222","1483105222","1483105259","1483105222","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105237","1483105237","1483105298","1483105237","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105287","1483105287","1483105346","1483105287","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105315","1483105315","1483105370","1483105315","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105338","1483105338","1483105403","1483105338","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105346","1483105346","1483105394","1483105346","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105346","1483105346","1483105414","1483105346","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105356","1483105356","1483105397","1483105356","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105427","1483105427","1483105501","1483105427","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105428","1483105428","1483105589","1483105428","1","8","0","-1","161","0","1288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105531","1483105531","1483105588","1483105531","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105620","1483105620","1483105775","1483105620","1","8","0","-1","155","0","1240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105621","1483105621","1483105677","1483105621","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105702","1483105702","1483105744","1483105702","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105717","1483105717","1483105779","1483105717","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105722","1483105722","1483105783","1483105722","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105763","1483105763","1483105795","1483105763","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105775","1483105775","1483105819","1483105775","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105780","1483105780","1483105818","1483105780","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105784","1483105784","1483105838","1483105784","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105819","1483105819","1483105863","1483105819","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105866","1483105866","1483105924","1483105866","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105929","1483105929","1483106000","1483105929","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105967","1483105967","1483106001","1483105967","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105986","1483105986","1483106030","1483105986","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106000","1483106000","1483106065","1483106000","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106001","1483106001","1483106047","1483106001","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106017","1483106017","1483106050","1483106017","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106031","1483106031","1483106074","1483106031","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106048","1483106048","1483106138","1483106048","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106066","1483106066","1483106135","1483106066","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106074","1483106074","1483106168","1483106074","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106119","1483106119","1483106191","1483106119","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106130","1483106130","1483106186","1483106130","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106136","1483106136","1483106208","1483106136","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106139","1483106139","1483106197","1483106139","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106186","1483106186","1483106267","1483106186","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106192","1483106192","1483106281","1483106192","1","8","0","-1","89","0","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106198","1483106198","1483106361","1483106198","1","8","0","-1","163","0","1304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982675","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106281","1483106281","1483106320","1483106281","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106316","1483106316","1483106375","1483106316","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982687","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106338","1483106338","1483106426","1483106338","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106374","1483106374","1483106417","1483106374","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982711","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106418","1483106418","1483106498","1483106418","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982713","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106425","1483106425","1483106476","1483106425","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982717","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106449","1483106449","1483106607","1483106449","1","8","0","-1","158","0","1264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982723","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106477","1483106477","1483106536","1483106477","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982725","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106499","1483106499","1483106561","1483106499","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982727","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106505","1483106505","1483106556","1483106505","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982729","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106515","1483106515","1483106598","1483106515","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982735","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106537","1483106537","1483106584","1483106537","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106546","1483106546","1483106621","1483106546","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982739","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106556","1483106556","1483106682","1483106556","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106561","1483106561","1483106679","1483106561","1","8","0","-1","118","0","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106585","1483106585","1483106790","1483106585","1","8","0","-1","205","0","1640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106599","1483106599","1483106730","1483106599","1","8","0","-1","131","0","1048","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982747","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106608","1483106608","1483106744","1483106608","1","8","0","-1","136","0","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106711","1483106711","1483106792","1483106711","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106768","1483106768","1483106806","1483106768","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106868","1483106868","1483106968","1483106868","1","8","0","-1","100","0","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106869","1483106869","1483106915","1483106869","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106884","1483106884","1483106962","1483106884","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106892","1483106892","1483106923","1483106892","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106899","1483106899","1483106949","1483106899","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106916","1483106916","1483106959","1483106916","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982826","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106950","1483106950","1483107081","1483106950","1","8","0","-1","131","0","1048","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106955","1483106955","1483107005","1483106955","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106960","1483106960","1483107036","1483106960","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107037","1483107037","1483107084","1483107037","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107038","1483107038","1483107100","1483107038","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107082","1483107082","1483107145","1483107082","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107085","1483107085","1483107170","1483107085","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982863","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107101","1483107101","1483107206","1483107101","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107124","1483107124","1483107199","1483107124","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107146","1483107146","1483107257","1483107146","1","8","0","-1","111","0","888","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107199","1483107199","1483107381","1483107199","1","8","0","-1","182","0","1456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107207","1483107207","1483107319","1483107207","1","8","0","-1","112","0","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107258","1483107258","1483107547","1483107258","1","8","0","-1","289","0","2312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107278","1483107278","1483107477","1483107278","1","8","0","-1","199","0","1592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107316","1483107316","1483107390","1483107316","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107320","1483107320","1483107378","1483107320","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107382","1483107382","1483107449","1483107382","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107391","1483107391","1483107444","1483107391","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107445","1483107445","1483107489","1483107445","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107450","1483107450","1483107481","1483107450","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107559","1483107559","1483107601","1483107559","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107602","1483107602","1483107653","1483107602","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107700","1483107700","1483107732","1483107700","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107712","1483107712","1483107855","1483107712","1","8","0","-1","143","0","1144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107719","1483107719","1483107766","1483107719","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107733","1483107733","1483107794","1483107733","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107754","1483107754","1483107793","1483107754","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107764","1483107764","1483107817","1483107764","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107767","1483107767","1483107815","1483107767","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107794","1483107794","1483107841","1483107794","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107814","1483107814","1483107873","1483107814","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107817","1483107817","1483107861","1483107817","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107965","1483107965","1483108019","1483107965","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108008","1483108008","1483108056","1483108008","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108020","1483108020","1483108097","1483108020","1","8","0","-1","77","0","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983089","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108081","1483108081","1483108119","1483108081","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983091","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108095","1483108095","1483108144","1483108095","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983095","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108098","1483108098","1483108132","1483108098","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983099","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108116","1483108116","1483108155","1483108116","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108126","1483108126","1483108164","1483108126","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983105","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108133","1483108133","1483108169","1483108133","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108165","1483108165","1483108208","1483108165","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108345","1483108345","1483108376","1483108345","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108362","1483108362","1483108404","1483108362","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108388","1483108388","1483108450","1483108388","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108399","1483108399","1483108443","1483108399","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108405","1483108405","1483108459","1483108405","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108439","1483108439","1483108470","1483108439","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108451","1483108451","1483108497","1483108451","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108457","1483108457","1483108537","1483108457","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108460","1483108460","1483108520","1483108460","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108471","1483108471","1483108621","1483108471","1","8","0","-1","150","0","1200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108479","1483108479","1483108531","1483108479","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108520","1483108520","1483108565","1483108520","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108621","1483108621","1483108657","1483108621","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108650","1483108650","1483108799","1483108650","1","8","0","-1","149","0","1192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108658","1483108658","1483108712","1483108658","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108748","1483108748","1483108783","1483108748","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108757","1483108757","1483108791","1483108757","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108765","1483108765","1483108825","1483108765","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108783","1483108783","1483108823","1483108783","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108800","1483108800","1483108850","1483108800","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108824","1483108824","1483108903","1483108824","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108824","1483108824","1483108973","1483108824","1","8","0","-1","149","0","1192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108850","1483108850","1483108934","1483108850","1","8","0","-1","84","0","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108935","1483108935","1483108970","1483108935","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983343","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108992","1483108992","1483109031","1483108992","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109004","1483109004","1483109042","1483109004","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109043","1483109043","1483109118","1483109043","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109049","1483109049","1483109116","1483109049","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109083","1483109083","1483109163","1483109083","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109117","1483109117","1483109196","1483109117","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109127","1483109127","1483109199","1483109127","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109164","1483109164","1483109229","1483109164","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109191","1483109191","1483109258","1483109191","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109194","1483109194","1483109302","1483109194","1","8","0","-1","108","0","864","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109197","1483109197","1483109304","1483109197","1","8","0","-1","107","0","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109200","1483109200","1483109391","1483109200","1","8","0","-1","191","0","1528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109259","1483109259","1483109292","1483109259","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109289","1483109289","1483109330","1483109289","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109293","1483109293","1483109336","1483109293","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109303","1483109303","1483109351","1483109303","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109330","1483109330","1483109383","1483109330","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109410","1483109410","1483109515","1483109410","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109445","1483109445","1483109486","1483109445","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109449","1483109449","1483109488","1483109449","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109452","1483109452","1483109493","1483109452","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109494","1483109494","1483109538","1483109494","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109514","1483109514","1483109547","1483109514","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109544","1483109544","1483109585","1483109544","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109558","1483109558","1483109610","1483109558","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109567","1483109567","1483109605","1483109567","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109581","1483109581","1483109627","1483109581","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109614","1483109614","1483109664","1483109614","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109628","1483109628","1483109676","1483109628","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109634","1483109634","1483109684","1483109634","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109638","1483109638","1483109672","1483109638","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109691","1483109691","1483109739","1483109691","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109735","1483109735","1483109772","1483109735","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109740","1483109740","1483109774","1483109740","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109790","1483109790","1483109839","1483109790","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109840","1483109840","1483109939","1483109840","1","8","0","-1","99","0","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109843","1483109843","1483109885","1483109843","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109849","1483109849","1483109899","1483109849","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109868","1483109868","1483109907","1483109868","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109886","1483109886","1483109931","1483109886","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109896","1483109896","1483109939","1483109896","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983598","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109912","1483109912","1483109954","1483109912","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109932","1483109932","1483109970","1483109932","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109940","1483109940","1483109991","1483109940","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109954","1483109954","1483109990","1483109954","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109965","1483109965","1483110021","1483109965","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109968","1483109968","1483110024","1483109968","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109971","1483109971","1483110036","1483109971","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110058","1483110058","1483110115","1483110058","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110109","1483110109","1483110140","1483110109","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110166","1483110166","1483110219","1483110166","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110192","1483110192","1483110235","1483110192","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110206","1483110206","1483110277","1483110206","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110220","1483110220","1483110276","1483110220","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110277","1483110277","1483110309","1483110277","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110309","1483110309","1483110359","1483110309","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983703","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110323","1483110323","1483110361","1483110323","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110353","1483110353","1483110419","1483110353","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983711","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110360","1483110360","1483110459","1483110360","1","8","0","-1","99","0","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983717","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110383","1483110383","1483110487","1483110383","1","8","0","-1","104","0","832","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983727","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110441","1483110441","1483110513","1483110441","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110510","1483110510","1483110584","1483110510","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110576","1483110576","1483110637","1483110576","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110589","1483110589","1483110743","1483110589","1","8","0","-1","154","0","1232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110626","1483110626","1483110719","1483110626","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110638","1483110638","1483110782","1483110638","1","8","0","-1","144","0","1152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110672","1483110672","1483110816","1483110672","1","8","0","-1","144","0","1152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110681","1483110681","1483110832","1483110681","1","8","0","-1","151","0","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110690","1483110690","1483110829","1483110690","1","8","0","-1","139","0","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110720","1483110720","1483110854","1483110720","1","8","0","-1","134","0","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983779","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110783","1483110783","1483110933","1483110783","1","8","0","-1","150","0","1200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110817","1483110817","1483110930","1483110817","1","8","0","-1","113","0","904","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110833","1483110833","1483110975","1483110833","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110854","1483110854","1483110938","1483110854","1","8","0","-1","84","0","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110858","1483110858","1483110951","1483110858","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110964","1483110964","1483111134","1483110964","1","8","0","-1","170","0","1360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983807","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111063","1483111063","1483111187","1483111063","1","8","0","-1","124","0","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111074","1483111074","1483111173","1483111074","1","8","0","-1","99","0","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111186","1483111186","1483111241","1483111186","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111188","1483111188","1483111252","1483111188","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111199","1483111199","1483111261","1483111199","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111225","1483111225","1483111290","1483111225","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111242","1483111242","1483111299","1483111242","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111246","1483111246","1483111304","1483111246","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111253","1483111253","1483111329","1483111253","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111262","1483111262","1483111347","1483111262","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111291","1483111291","1483111364","1483111291","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111300","1483111300","1483111373","1483111300","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111330","1483111330","1483111415","1483111330","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111348","1483111348","1483111426","1483111348","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111364","1483111364","1483111411","1483111364","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111374","1483111374","1483111423","1483111374","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111495","1483111495","1483111534","1483111495","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111504","1483111504","1483111573","1483111504","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111534","1483111534","1483111615","1483111534","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111546","1483111546","1483111662","1483111546","1","8","0","-1","116","0","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111559","1483111559","1483111619","1483111559","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111599","1483111599","1483111670","1483111599","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111635","1483111635","1483111666","1483111635","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111652","1483111652","1483111734","1483111652","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111653","1483111653","1483111697","1483111653","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111663","1483111663","1483111698","1483111663","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111671","1483111671","1483111736","1483111671","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111688","1483111688","1483111742","1483111688","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111693","1483111693","1483111785","1483111693","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111698","1483111698","1483111764","1483111698","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111742","1483111742","1483111847","1483111742","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111764","1483111764","1483111812","1483111764","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111779","1483111779","1483111817","1483111779","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111812","1483111812","1483111842","1483111812","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111813","1483111813","1483111854","1483111813","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111818","1483111818","1483111851","1483111818","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111848","1483111848","1483111879","1483111848","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111888","1483111888","1483111930","1483111888","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111944","1483111944","1483111976","1483111944","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111953","1483111953","1483111994","1483111953","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984033","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112011","1483112011","1483112144","1483112011","1","8","0","-1","133","0","1064","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984037","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112026","1483112026","1483112062","1483112026","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984039","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112032","1483112032","1483112099","1483112032","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984043","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112052","1483112052","1483112082","1483112052","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984049","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112075","1483112075","1483112117","1483112075","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984051","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112081","1483112081","1483112126","1483112081","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984055","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112090","1483112090","1483112124","1483112090","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984057","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112100","1483112100","1483112136","1483112100","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984075","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112145","1483112145","1483112277","1483112145","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112284","1483112284","1483112329","1483112284","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984127","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112332","1483112332","1483112370","1483112332","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984131","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112342","1483112342","1483112376","1483112342","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112377","1483112377","1483112415","1483112377","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112396","1483112396","1483112432","1483112396","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112413","1483112413","1483112445","1483112413","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112416","1483112416","1483112454","1483112416","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112443","1483112443","1483112485","1483112443","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112651","1483112651","1483112692","1483112651","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112659","1483112659","1483112700","1483112659","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112701","1483112701","1483112770","1483112701","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984257","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112712","1483112712","1483112750","1483112712","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984259","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112735","1483112735","1483112800","1483112735","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112742","1483112742","1483112774","1483112742","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112792","1483112792","1483112822","1483112792","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112798","1483112798","1483112830","1483112798","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112801","1483112801","1483112837","1483112801","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112804","1483112804","1483112848","1483112804","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112822","1483112822","1483112961","1483112822","1","8","0","-1","139","0","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112830","1483112830","1483112875","1483112830","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112904","1483112904","1483112943","1483112904","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112943","1483112943","1483112976","1483112943","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984321","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112950","1483112950","1483113014","1483112950","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984333","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112977","1483112977","1483113073","1483112977","1","8","0","-1","96","0","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984339","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113013","1483113013","1483113119","1483113013","1","8","0","-1","106","0","848","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113098","1483113098","1483113130","1483113098","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113109","1483113109","1483113239","1483113109","1","8","0","-1","130","0","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113120","1483113120","1483113156","1483113120","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113123","1483113123","1483113158","1483113123","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113131","1483113131","1483113178","1483113131","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113179","1483113179","1483113227","1483113179","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113183","1483113183","1483113228","1483113183","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113199","1483113199","1483113233","1483113199","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113213","1483113213","1483113244","1483113213","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113370","1483113370","1483113405","1483113370","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113371","1483113371","1483113406","1483113371","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113379","1483113379","1483113417","1483113379","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113394","1483113394","1483113441","1483113394","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113407","1483113407","1483113451","1483113407","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113486","1483113486","1483113554","1483113486","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113560","1483113560","1483113814","1483113560","1","8","0","-1","254","0","2032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113624","1483113624","1483113772","1483113624","1","8","0","-1","148","0","1184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113644","1483113644","1483113725","1483113644","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113732","1483113732","1483113769","1483113732","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113770","1483113770","1483113817","1483113770","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113839","1483113839","1483113883","1483113839","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113856","1483113856","1483113894","1483113856","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113918","1483113918","1483113958","1483113918","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113930","1483113930","1483113980","1483113930","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113959","1483113959","1483113992","1483113959","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113980","1483113980","1483114019","1483113980","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113993","1483113993","1483114032","1483113993","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113997","1483113997","1483114047","1483113997","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114007","1483114007","1483114045","1483114007","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114012","1483114012","1483114047","1483114012","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114020","1483114020","1483114067","1483114020","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114203","1483114203","1483114243","1483114203","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114221","1483114221","1483114286","1483114221","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114244","1483114244","1483114278","1483114244","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114335","1483114335","1483114365","1483114335","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114348","1483114348","1483114469","1483114348","1","8","0","-1","121","0","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114354","1483114354","1483114417","1483114354","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114361","1483114361","1483114403","1483114361","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114366","1483114366","1483114398","1483114366","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114399","1483114399","1483114440","1483114399","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114502","1483114502","1483114554","1483114502","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114520","1483114520","1483114560","1483114520","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114592","1483114592","1483114632","1483114592","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114642","1483114642","1483114687","1483114642","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114663","1483114663","1483114799","1483114663","1","8","0","-1","136","0","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114674","1483114674","1483114728","1483114674","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984807","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114688","1483114688","1483114745","1483114688","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114691","1483114691","1483114731","1483114691","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114705","1483114705","1483114739","1483114705","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114725","1483114725","1483114772","1483114725","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114740","1483114740","1483114775","1483114740","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114746","1483114746","1483114808","1483114746","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114826","1483114826","1483114860","1483114826","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114835","1483114835","1483114895","1483114835","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114928","1483114928","1483114962","1483114928","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114946","1483114946","1483115029","1483114946","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114955","1483114955","1483115129","1483114955","1","8","0","-1","174","0","1392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115001","1483115001","1483115091","1483115001","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115012","1483115012","1483115063","1483115012","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115047","1483115047","1483115081","1483115047","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115054","1483115054","1483115092","1483115054","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115063","1483115063","1483115112","1483115063","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115077","1483115077","1483115107","1483115077","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115082","1483115082","1483115154","1483115082","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115092","1483115092","1483115148","1483115092","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115092","1483115092","1483115123","1483115092","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115108","1483115108","1483115154","1483115108","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115130","1483115130","1483115166","1483115130","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115155","1483115155","1483115189","1483115155","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115213","1483115213","1483115244","1483115213","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115245","1483115245","1483115294","1483115245","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115295","1483115295","1483115347","1483115295","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115303","1483115303","1483115390","1483115303","1","8","0","-1","87","0","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115318","1483115318","1483115381","1483115318","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115326","1483115326","1483115369","1483115326","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115391","1483115391","1483115437","1483115391","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115408","1483115408","1483115453","1483115408","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115421","1483115421","1483115507","1483115421","1","8","0","-1","86","0","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115429","1483115429","1483115587","1483115429","1","8","0","-1","158","0","1264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115438","1483115438","1483115496","1483115438","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115454","1483115454","1483115510","1483115454","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115497","1483115497","1483115569","1483115497","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115508","1483115508","1483115577","1483115508","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115531","1483115531","1483115563","1483115531","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115544","1483115544","1483115591","1483115544","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115661","1483115661","1483115721","1483115661","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115665","1483115665","1483115791","1483115665","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115666","1483115666","1483115715","1483115666","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115734","1483115734","1483115769","1483115734","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115754","1483115754","1483115797","1483115754","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115760","1483115760","1483115802","1483115760","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115791","1483115791","1483115823","1483115791","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115813","1483115813","1483115877","1483115813","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115835","1483115835","1483115871","1483115835","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115855","1483115855","1483115898","1483115855","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115872","1483115872","1483115907","1483115872","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115949","1483115949","1483116011","1483115949","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115949","1483115949","1483116009","1483115949","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115950","1483115950","1483116072","1483115950","1","8","0","-1","122","0","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116070","1483116070","1483116101","1483116070","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116088","1483116088","1483116128","1483116088","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116167","1483116167","1483116204","1483116167","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116199","1483116199","1483116247","1483116199","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116199","1483116199","1483116239","1483116199","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116204","1483116204","1483116238","1483116204","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116296","1483116296","1483116334","1483116296","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116320","1483116320","1483116358","1483116320","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168478","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061291","1483061291","1483061330","1483061291","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168529","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061641","1483061641","1483061685","1483061641","1","8","0","-1","44","0","352","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168572","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061921","1483061921","1483061952","1483061921","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168991","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064965","1483064965","1483065003","1483064965","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169291","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067148","1483067148","1483067192","1483067148","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169520","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068645","1483068645","1483068686","1483068645","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170128","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072002","1483072002","1483072041","1483072002","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170232","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072642","1483072642","1483072674","1483072642","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170392","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073663","1483073663","1483073710","1483073663","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170434","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073949","1483073949","1483073982","1483073949","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170631","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075162","1483075162","1483075229","1483075162","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170980","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077809","1483077809","1483077849","1483077809","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171330","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080392","1483080392","1483080467","1483080392","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171798","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083351","1483083351","1483083386","1483083351","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172319","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085978","1483085978","1483086058","1483085978","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172503","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086896","1483086896","1483086926","1483086896","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173145","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090877","1483090877","1483090907","1483090877","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173677","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094252","1483094252","1483094293","1483094252","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173780","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094975","1483094975","1483095014","1483094975","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174372","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099413","1483099413","1483099459","1483099413","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174535","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101072","1483101072","1483101177","1483101072","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174793","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102731","1483102731","1483102800","1483102731","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175025","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104426","1483104426","1483104461","1483104426","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175125","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105301","1483105301","1483105337","1483105301","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175226","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106141","1483106141","1483106172","1483106141","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175326","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107006","1483107006","1483107055","1483107006","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175771","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110308","1483110308","1483110357","1483110308","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176081","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112898","1483112898","1483112941","1483112898","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176450","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115510","1483115510","1483115589","1483115510","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1004944","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483065756","1483065756","1483065962","1483065756","1","8","0","-1","206","0","1648","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005038","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067447","1483067447","1483067519","1483067447","1","8","0","-1","72","0","576","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005699","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483076101","1483076101","1483076427","1483076101","1","8","0","-1","326","0","2608","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006110","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483081510","1483081510","1483081599","1483081510","1","8","0","-1","89","0","712","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006907","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483092688","1483092688","1483092798","1483092688","1","8","0","-1","110","0","880","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006918","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483092808","1483092808","1483092945","1483092808","1","8","0","-1","137","0","1096","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007208","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483096654","1483096654","1483096909","1483096654","1","8","0","-1","255","0","2040","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007502","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483100500","1483100500","1483100543","1483100500","1","8","0","-1","43","0","344","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008100","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483109276","1483109276","1483109405","1483109276","1","8","0","-1","129","0","1032","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009303","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483122737","1483122737","1483122867","1483122737","1","8","0","-1","130","0","1040","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010169","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483134032","1483134032","1483134398","1483134032","1","8","0","-1","366","0","2928","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010262","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483135353","1483135353","1483135568","1483135353","1","8","0","-1","215","0","1720","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006529","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483087348","1483087348","1483088088","1483087348","1","8","0","-1","740","0","5920","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007217","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483096750","1483096750","1483097475","1483096750","1","8","0","-1","725","0","5800","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007259","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483097215","1483097215","1483097965","1483097215","1","8","0","-1","750","0","6000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007271","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483097336","1483097336","1483097492","1483097336","1","8","0","-1","156","0","1248","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007307","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483097894","1483097894","1483098427","1483097894","1","8","0","-1","533","0","4264","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008041","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483108434","1483108434","1483109513","1483108434","1","8","0","-1","1079","0","8632","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008170","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483110307","1483110307","1483110913","1483110307","1","8","0","-1","606","0","4848","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008240","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483111266","1483111266","1483112030","1483111266","1","8","0","-1","764","0","6112","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008270","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483111758","1483111758","1483112977","1483111758","1","8","0","-1","1219","0","9752","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008725","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483117278","1483117278","1483117654","1483117278","1","8","0","-1","376","0","3008","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009192","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483121725","1483121725","1483122653","1483121725","1","8","0","-1","928","0","7424","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009293","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483122659","1483122659","1483124416","1483122659","1","8","0","-1","1757","0","14056","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009322","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483123043","1483123043","1483123912","1483123043","1","8","0","-1","869","0","6952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009335","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483123153","1483123153","1483123605","1483123153","1","8","0","-1","452","0","3616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009418","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483124223","1483124223","1483125229","1483124223","1","8","0","-1","1006","0","8048","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006431","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483085916","1483085916","1483086069","1483085916","1","8","0","-1","153","0","1224","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006565","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483087982","1483087982","1483089311","1483087982","1","8","0","-1","1329","0","10632","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006572","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483088066","1483088066","1483089805","1483088066","1","8","0","-1","1739","0","13912","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006898","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483092552","1483092552","1483093812","1483092552","1","8","0","-1","1260","0","10080","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007148","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483095876","1483095876","1483096148","1483095876","1","8","0","-1","272","0","2176","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007328","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483098229","1483098229","1483098809","1483098229","1","8","0","-1","580","0","4640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007525","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483100778","1483100778","1483101457","1483100778","1","8","0","-1","679","0","5432","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008311","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483112316","1483112316","1483113071","1483112316","1","8","0","-1","755","0","6040","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008748","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483117476","1483117476","1483118804","1483117476","1","8","0","-1","1328","0","10624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008900","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483118951","1483118951","1483119568","1483118951","1","8","0","-1","617","0","4936","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2275568","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054500","1483054500","1483056044","1483054500","1","12","0","-1","1544","0","18528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275570","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054513","1483054513","1483056156","1483054513","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275573","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054551","1483054551","1483056328","1483054551","1","12","0","-1","1777","0","21324","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275575","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054560","1483054560","1483056345","1483054560","1","12","0","-1","1785","0","21420","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275582","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054594","1483054594","1483056306","1483054594","1","12","0","-1","1712","0","20544","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275627","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054881","1483054881","1483056285","1483054881","1","12","0","-1","1404","0","16848","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275636","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054954","1483054954","1483056730","1483054954","1","12","0","-1","1776","0","21312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275643","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055005","1483055005","1483056342","1483055005","1","12","0","-1","1337","0","16044","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275649","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055041","1483055041","1483056413","1483055041","1","12","0","-1","1372","0","16464","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275653","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055070","1483055070","1483056682","1483055070","1","12","0","-1","1612","0","19344","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275688","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055733","1483055733","1483057524","1483055733","1","12","0","-1","1791","0","21492","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275690","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055737","1483055737","1483057202","1483055737","1","12","0","-1","1465","0","17580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275693","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055850","1483055850","1483057279","1483055850","1","12","0","-1","1429","0","17148","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275724","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056191","1483056191","1483057730","1483056191","1","12","0","-1","1539","0","18468","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275730","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056214","1483056214","1483057658","1483056214","1","12","0","-1","1444","0","17328","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275758","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056530","1483056530","1483057738","1483056530","1","12","0","-1","1208","0","14496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275798","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056910","1483056910","1483058553","1483056910","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275800","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056914","1483056914","1483058291","1483056914","1","12","0","-1","1377","0","16524","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275808","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057056","1483057056","1483058586","1483057056","1","12","0","-1","1530","0","18360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275836","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057288","1483057288","1483059051","1483057288","1","12","0","-1","1763","0","21156","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275864","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057642","1483057642","1483059124","1483057642","1","12","0","-1","1482","0","17784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275885","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057968","1483057968","1483059600","1483057968","1","12","0","-1","1632","0","19584","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275894","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058049","1483058049","1483059775","1483058049","1","12","0","-1","1726","0","20712","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275901","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058164","1483058164","1483059959","1483058164","1","12","0","-1","1795","0","21540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275915","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058249","1483058249","1483059810","1483058249","1","12","0","-1","1561","0","18732","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275921","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058361","1483058361","1483060029","1483058361","1","12","0","-1","1668","0","20016","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275971","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058952","1483058952","1483060313","1483058952","1","12","0","-1","1361","0","16332","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275975","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059011","1483059011","1483060797","1483059011","1","12","0","-1","1786","0","21432","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275980","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059072","1483059072","1483060741","1483059072","1","12","0","-1","1669","0","20028","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275986","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059144","1483059144","1483060753","1483059144","1","12","0","-1","1609","0","19308","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275988","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059148","1483059148","1483060864","1483059148","1","12","0","-1","1716","0","20592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275994","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059222","1483059222","1483060874","1483059222","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276006","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059313","1483059313","1483060878","1483059313","1","12","0","-1","1565","0","18780","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276052","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059841","1483059841","1483061409","1483059841","1","12","0","-1","1568","0","18816","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276054","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059850","1483059850","1483061471","1483059850","1","12","0","-1","1621","0","19452","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276056","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059856","1483059856","1483061486","1483059856","1","12","0","-1","1630","0","19560","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276058","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059883","1483059883","1483061463","1483059883","1","12","0","-1","1580","0","18960","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276060","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059912","1483059912","1483061535","1483059912","1","12","0","-1","1623","0","19476","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276062","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059926","1483059926","1483061546","1483059926","1","12","0","-1","1620","0","19440","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276077","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060105","1483060105","1483061660","1483060105","1","12","0","-1","1555","0","18660","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276079","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060178","1483060178","1483061828","1483060178","1","12","0","-1","1650","0","19800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276109","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060563","1483060563","1483062122","1483060563","1","12","0","-1","1559","0","18708","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276111","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060588","1483060588","1483062274","1483060588","1","12","0","-1","1686","0","20232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276114","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060659","1483060659","1483062174","1483060659","1","12","0","-1","1515","0","18180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276116","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060673","1483060673","1483061859","1483060673","1","12","0","-1","1186","0","14232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276118","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060684","1483060684","1483062343","1483060684","1","12","0","-1","1659","0","19908","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276138","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060802","1483060802","1483062431","1483060802","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276152","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060930","1483060930","1483062475","1483060930","1","12","0","-1","1545","0","18540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276159","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061006","1483061006","1483062326","1483061006","1","12","0","-1","1320","0","15840","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276161","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061041","1483061041","1483062700","1483061041","1","12","0","-1","1659","0","19908","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276167","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061108","1483061108","1483062738","1483061108","1","12","0","-1","1630","0","19560","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276170","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061163","1483061163","1483062818","1483061163","1","12","0","-1","1655","0","19860","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276175","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061305","1483061305","1483062891","1483061305","1","12","0","-1","1586","0","19032","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276177","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061332","1483061332","1483062969","1483061332","1","12","0","-1","1637","0","19644","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276203","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061546","1483061546","1483063297","1483061546","1","12","0","-1","1751","0","21012","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276205","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061551","1483061551","1483062988","1483061551","1","12","0","-1","1437","0","17244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276210","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061605","1483061605","1483063290","1483061605","1","12","0","-1","1685","0","20220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276218","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061714","1483061714","1483063194","1483061714","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276221","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061753","1483061753","1483063170","1483061753","1","12","0","-1","1417","0","17004","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276227","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061796","1483061796","1483063479","1483061796","1","12","0","-1","1683","0","20196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276229","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061805","1483061805","1483063457","1483061805","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276235","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061857","1483061857","1483063312","1483061857","1","12","0","-1","1455","0","17460","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276241","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061890","1483061890","1483063525","1483061890","1","12","0","-1","1635","0","19620","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276256","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062178","1483062178","1483063421","1483062178","1","12","0","-1","1243","0","14916","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276268","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062348","1483062348","1483063721","1483062348","1","12","0","-1","1373","0","16476","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276270","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062370","1483062370","1483064045","1483062370","1","12","0","-1","1675","0","20100","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276272","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062377","1483062377","1483063984","1483062377","1","12","0","-1","1607","0","19284","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276276","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062439","1483062439","1483064151","1483062439","1","12","0","-1","1712","0","20544","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276282","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062466","1483062466","1483063999","1483062466","1","12","0","-1","1533","0","18396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276286","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062480","1483062480","1483064063","1483062480","1","12","0","-1","1583","0","18996","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276289","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062533","1483062533","1483063987","1483062533","1","12","0","-1","1454","0","17448","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276294","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062641","1483062641","1483064326","1483062641","1","12","0","-1","1685","0","20220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276308","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062775","1483062775","1483064451","1483062775","1","12","0","-1","1676","0","20112","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276330","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062900","1483062900","1483064225","1483062900","1","12","0","-1","1325","0","15900","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276336","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062938","1483062938","1483064486","1483062938","1","12","0","-1","1548","0","18576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276340","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062978","1483062978","1483064580","1483062978","1","12","0","-1","1602","0","19224","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276344","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062994","1483062994","1483064305","1483062994","1","12","0","-1","1311","0","15732","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276346","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063014","1483063014","1483064701","1483063014","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276353","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063095","1483063095","1483064730","1483063095","1","12","0","-1","1635","0","19620","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276361","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063175","1483063175","1483064643","1483063175","1","12","0","-1","1468","0","17616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276378","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063300","1483063300","1483065094","1483063300","1","12","0","-1","1794","0","21528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276396","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063425","1483063425","1483065031","1483063425","1","12","0","-1","1606","0","19272","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276402","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063469","1483063469","1483064819","1483063469","1","12","0","-1","1350","0","16200","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276408","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063503","1483063503","1483065195","1483063503","1","12","0","-1","1692","0","20304","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276412","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063512","1483063512","1483065260","1483063512","1","12","0","-1","1748","0","20976","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276414","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063530","1483063530","1483065041","1483063530","1","12","0","-1","1511","0","18132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276416","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063561","1483063561","1483065217","1483063561","1","12","0","-1","1656","0","19872","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276428","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063707","1483063707","1483065407","1483063707","1","12","0","-1","1700","0","20400","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276430","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063746","1483063746","1483065183","1483063746","1","12","0","-1","1437","0","17244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276432","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063753","1483063753","1483065290","1483063753","1","12","0","-1","1537","0","18444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276434","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063762","1483063762","1483065391","1483063762","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276454","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064048","1483064048","1483065728","1483064048","1","12","0","-1","1680","0","20160","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276458","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064067","1483064067","1483065539","1483064067","1","12","0","-1","1472","0","17664","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276460","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064115","1483064115","1483065620","1483064115","1","12","0","-1","1505","0","18060","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276466","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064177","1483064177","1483065701","1483064177","1","12","0","-1","1524","0","18288","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276470","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064226","1483064226","1483065862","1483064226","1","12","0","-1","1636","0","19632","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276472","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064230","1483064230","1483065710","1483064230","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276474","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064242","1483064242","1483065880","1483064242","1","12","0","-1","1638","0","19656","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276476","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064246","1483064246","1483065857","1483064246","1","12","0","-1","1611","0","19332","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276478","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064251","1483064251","1483065725","1483064251","1","12","0","-1","1474","0","17688","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276480","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064308","1483064308","1483065892","1483064308","1","12","0","-1","1584","0","19008","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276482","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064315","1483064315","1483066028","1483064315","1","12","0","-1","1713","0","20556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276484","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064330","1483064330","1483065873","1483064330","1","12","0","-1","1543","0","18516","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276508","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064586","1483064586","1483066104","1483064586","1","12","0","-1","1518","0","18216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276511","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064647","1483064647","1483066385","1483064647","1","12","0","-1","1738","0","20856","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276515","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064658","1483064658","1483066214","1483064658","1","12","0","-1","1556","0","18672","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276517","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064672","1483064672","1483065998","1483064672","1","12","0","-1","1326","0","15912","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276565","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065065","1483065065","1483066488","1483065065","1","12","0","-1","1423","0","17076","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276572","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065141","1483065141","1483066513","1483065141","1","12","0","-1","1372","0","16464","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276575","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065189","1483065189","1483066700","1483065189","1","12","0","-1","1511","0","18132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276581","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065221","1483065221","1483066551","1483065221","1","12","0","-1","1330","0","15960","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276592","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065301","1483065301","1483066916","1483065301","1","12","0","-1","1615","0","19380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276616","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065544","1483065544","1483066918","1483065544","1","12","0","-1","1374","0","16488","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276642","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065849","1483065849","1483067444","1483065849","1","12","0","-1","1595","0","19140","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276650","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065879","1483065879","1483067566","1483065879","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276654","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065893","1483065893","1483067517","1483065893","1","12","0","-1","1624","0","19488","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276661","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065947","1483065947","1483067613","1483065947","1","12","0","-1","1666","0","19992","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276665","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065967","1483065967","1483067561","1483065967","1","12","0","-1","1594","0","19128","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276667","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065982","1483065982","1483067778","1483065982","1","12","0","-1","1796","0","21552","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276671","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066002","1483066002","1483067778","1483066002","1","12","0","-1","1776","0","21312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276673","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066007","1483066007","1483067655","1483066007","1","12","0","-1","1648","0","19776","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276675","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066031","1483066031","1483067444","1483066031","1","12","0","-1","1413","0","16956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276680","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066060","1483066060","1483067444","1483066060","1","12","0","-1","1384","0","16608","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276683","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066071","1483066071","1483067836","1483066071","1","12","0","-1","1765","0","21180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276690","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066133","1483066133","1483067670","1483066133","1","12","0","-1","1537","0","18444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276713","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066502","1483066502","1483067915","1483066502","1","12","0","-1","1413","0","16956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276722","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066579","1483066579","1483067959","1483066579","1","12","0","-1","1380","0","16560","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276730","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066666","1483066666","1483068207","1483066666","1","12","0","-1","1541","0","18492","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276741","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066779","1483066779","1483067994","1483066779","1","12","0","-1","1215","0","14580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276752","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067007","1483067007","1483068748","1483067007","1","12","0","-1","1741","0","20892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276754","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067069","1483067069","1483068620","1483067069","1","12","0","-1","1551","0","18612","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276770","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067397","1483067397","1483068598","1483067397","1","12","0","-1","1201","0","14412","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276780","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067517","1483067517","1483069053","1483067517","1","12","0","-1","1536","0","18432","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276784","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067556","1483067556","1483069246","1483067556","1","12","0","-1","1690","0","20280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276808","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067712","1483067712","1483069428","1483067712","1","12","0","-1","1716","0","20592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276869","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067932","1483067932","1483069395","1483067932","1","12","0","-1","1463","0","17556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276884","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068032","1483068032","1483069076","1483068032","1","12","0","-1","1044","0","12528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276889","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068084","1483068084","1483069566","1483068084","1","12","0","-1","1482","0","17784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276891","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068097","1483068097","1483069479","1483068097","1","12","0","-1","1382","0","16584","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276893","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068126","1483068126","1483069615","1483068126","1","12","0","-1","1489","0","17868","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276899","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068214","1483068214","1483069957","1483068214","1","12","0","-1","1743","0","20916","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276915","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068521","1483068521","1483069783","1483068521","1","12","0","-1","1262","0","15144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276919","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068601","1483068601","1483070393","1483068601","1","12","0","-1","1792","0","21504","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276925","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068625","1483068625","1483070230","1483068625","1","12","0","-1","1605","0","19260","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276931","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068790","1483068790","1483070286","1483068790","1","12","0","-1","1496","0","17952","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276939","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068984","1483068984","1483070260","1483068984","1","12","0","-1","1276","0","15312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276941","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068995","1483068995","1483070705","1483068995","1","12","0","-1","1710","0","20520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276947","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069081","1483069081","1483070766","1483069081","1","12","0","-1","1685","0","20220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276961","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069249","1483069249","1483070924","1483069249","1","12","0","-1","1675","0","20100","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276967","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069311","1483069311","1483070916","1483069311","1","12","0","-1","1605","0","19260","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276971","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069320","1483069320","1483071027","1483069320","1","12","0","-1","1707","0","20484","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276973","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069333","1483069333","1483071034","1483069333","1","12","0","-1","1701","0","20412","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276978","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069347","1483069347","1483070989","1483069347","1","12","0","-1","1642","0","19704","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276990","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069427","1483069427","1483071092","1483069427","1","12","0","-1","1665","0","19980","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276992","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069431","1483069431","1483071158","1483069431","1","12","0","-1","1727","0","20724","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276996","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069450","1483069450","1483070684","1483069450","1","12","0","-1","1234","0","14808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276998","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069454","1483069454","1483071024","1483069454","1","12","0","-1","1570","0","18840","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277032","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069660","1483069660","1483071007","1483069660","1","12","0","-1","1347","0","16164","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277035","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069716","1483069716","1483071245","1483069716","1","12","0","-1","1529","0","18348","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277049","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069789","1483069789","1483071258","1483069789","1","12","0","-1","1469","0","17628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277053","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069810","1483069810","1483071322","1483069810","1","12","0","-1","1512","0","18144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277055","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069817","1483069817","1483071397","1483069817","1","12","0","-1","1580","0","18960","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277062","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069920","1483069920","1483071450","1483069920","1","12","0","-1","1530","0","18360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277064","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069924","1483069924","1483071131","1483069924","1","12","0","-1","1207","0","14484","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277066","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069971","1483069971","1483071519","1483069971","1","12","0","-1","1548","0","18576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277117","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070269","1483070269","1483071830","1483070269","1","12","0","-1","1561","0","18732","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277162","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070845","1483070845","1483072287","1483070845","1","12","0","-1","1442","0","17304","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277178","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071012","1483071012","1483072601","1483071012","1","12","0","-1","1589","0","19068","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277184","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071027","1483071027","1483072137","1483071027","1","12","0","-1","1110","0","13320","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277186","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071032","1483071032","1483072308","1483071032","1","12","0","-1","1276","0","15312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277188","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071036","1483071036","1483072201","1483071036","1","12","0","-1","1165","0","13980","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277190","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071040","1483071040","1483072308","1483071040","1","12","0","-1","1268","0","15216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277195","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071096","1483071096","1483072863","1483071096","1","12","0","-1","1767","0","21204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277203","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071162","1483071162","1483072707","1483071162","1","12","0","-1","1545","0","18540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277205","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071176","1483071176","1483072674","1483071176","1","12","0","-1","1498","0","17976","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277207","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071180","1483071180","1483072823","1483071180","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277211","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071250","1483071250","1483072903","1483071250","1","12","0","-1","1653","0","19836","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277225","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071311","1483071311","1483073027","1483071311","1","12","0","-1","1716","0","20592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277240","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071452","1483071452","1483073067","1483071452","1","12","0","-1","1615","0","19380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277247","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071523","1483071523","1483073223","1483071523","1","12","0","-1","1700","0","20400","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277260","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071626","1483071626","1483072943","1483071626","1","12","0","-1","1317","0","15804","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277267","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071729","1483071729","1483073516","1483071729","1","12","0","-1","1787","0","21444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277273","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071824","1483071824","1483073534","1483071824","1","12","0","-1","1710","0","20520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277309","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072165","1483072165","1483073630","1483072165","1","12","0","-1","1465","0","17580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277325","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072232","1483072232","1483074020","1483072232","1","12","0","-1","1788","0","21456","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277327","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072243","1483072243","1483073726","1483072243","1","12","0","-1","1483","0","17796","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277333","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072290","1483072290","1483073793","1483072290","1","12","0","-1","1503","0","18036","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277358","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072530","1483072530","1483074147","1483072530","1","12","0","-1","1617","0","19404","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277367","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072615","1483072615","1483074356","1483072615","1","12","0","-1","1741","0","20892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277384","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072879","1483072879","1483074592","1483072879","1","12","0","-1","1713","0","20556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277395","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073020","1483073020","1483074478","1483073020","1","12","0","-1","1458","0","17496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277397","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073024","1483073024","1483074557","1483073024","1","12","0","-1","1533","0","18396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277406","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073059","1483073059","1483074775","1483073059","1","12","0","-1","1716","0","20592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277411","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073075","1483073075","1483074593","1483073075","1","12","0","-1","1518","0","18216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277428","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073222","1483073222","1483074975","1483073222","1","12","0","-1","1753","0","21036","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277436","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073250","1483073250","1483074908","1483073250","1","12","0","-1","1658","0","19896","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277457","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073540","1483073540","1483074973","1483073540","1","12","0","-1","1433","0","17196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277459","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073545","1483073545","1483075230","1483073545","1","12","0","-1","1685","0","20220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277476","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073710","1483073710","1483075478","1483073710","1","12","0","-1","1768","0","21216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277524","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074076","1483074076","1483075621","1483074076","1","12","0","-1","1545","0","18540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277526","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074081","1483074081","1483075862","1483074081","1","12","0","-1","1781","0","21372","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277528","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074096","1483074096","1483075668","1483074096","1","12","0","-1","1572","0","18864","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277586","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074712","1483074712","1483076204","1483074712","1","12","0","-1","1492","0","17904","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277601","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074908","1483074908","1483076315","1483074908","1","12","0","-1","1407","0","16884","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277603","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074913","1483074913","1483076585","1483074913","1","12","0","-1","1672","0","20064","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277605","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074942","1483074942","1483076390","1483074942","1","12","0","-1","1448","0","17376","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277610","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074977","1483074977","1483076627","1483074977","1","12","0","-1","1650","0","19800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277619","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075034","1483075034","1483076675","1483075034","1","12","0","-1","1641","0","19692","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277653","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075336","1483075336","1483076985","1483075336","1","12","0","-1","1649","0","19788","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277665","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075481","1483075481","1483076950","1483075481","1","12","0","-1","1469","0","17628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277672","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075523","1483075523","1483077097","1483075523","1","12","0","-1","1574","0","18888","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277677","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075541","1483075541","1483077055","1483075541","1","12","0","-1","1514","0","18168","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277681","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075595","1483075595","1483077308","1483075595","1","12","0","-1","1713","0","20556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277745","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076325","1483076325","1483078104","1483076325","1","12","0","-1","1779","0","21348","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277755","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076400","1483076400","1483078090","1483076400","1","12","0","-1","1690","0","20280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277764","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076494","1483076494","1483078183","1483076494","1","12","0","-1","1689","0","20268","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277796","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076841","1483076841","1483078263","1483076841","1","12","0","-1","1422","0","17064","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277798","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076856","1483076856","1483078530","1483076856","1","12","0","-1","1674","0","20088","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277800","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076886","1483076886","1483078498","1483076886","1","12","0","-1","1612","0","19344","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277840","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077132","1483077132","1483078835","1483077132","1","12","0","-1","1703","0","20436","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277870","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077482","1483077482","1483079221","1483077482","1","12","0","-1","1739","0","20868","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277893","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077814","1483077814","1483079476","1483077814","1","12","0","-1","1662","0","19944","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277901","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077849","1483077849","1483079147","1483077849","1","12","0","-1","1298","0","15576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277903","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077853","1483077853","1483079288","1483077853","1","12","0","-1","1435","0","17220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277906","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077871","1483077871","1483079423","1483077871","1","12","0","-1","1552","0","18624","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277913","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077904","1483077904","1483079384","1483077904","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277919","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078045","1483078045","1483079634","1483078045","1","12","0","-1","1589","0","19068","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277928","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078137","1483078137","1483079597","1483078137","1","12","0","-1","1460","0","17520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277938","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078188","1483078188","1483079813","1483078188","1","12","0","-1","1625","0","19500","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277942","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078223","1483078223","1483079978","1483078223","1","12","0","-1","1755","0","21060","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277976","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078509","1483078509","1483080257","1483078509","1","12","0","-1","1748","0","20976","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277990","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078601","1483078601","1483080253","1483078601","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277992","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078622","1483078622","1483080062","1483078622","1","12","0","-1","1440","0","17280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278040","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079031","1483079031","1483080786","1483079031","1","12","0","-1","1755","0","21060","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278065","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079153","1483079153","1483080907","1483079153","1","12","0","-1","1754","0","21048","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278076","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079226","1483079226","1483080934","1483079226","1","12","0","-1","1708","0","20496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278082","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079243","1483079243","1483080799","1483079243","1","12","0","-1","1556","0","18672","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278090","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079341","1483079341","1483080883","1483079341","1","12","0","-1","1542","0","18504","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278093","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079388","1483079388","1483080716","1483079388","1","12","0","-1","1328","0","15936","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278095","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079393","1483079393","1483080630","1483079393","1","12","0","-1","1237","0","14844","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278097","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079397","1483079397","1483081040","1483079397","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278113","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079605","1483079605","1483080831","1483079605","1","12","0","-1","1226","0","14712","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278117","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079638","1483079638","1483081118","1483079638","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278120","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079680","1483079680","1483080801","1483079680","1","12","0","-1","1121","0","13452","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278129","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079976","1483079976","1483081626","1483079976","1","12","0","-1","1650","0","19800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278131","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079980","1483079980","1483081318","1483079980","1","12","0","-1","1338","0","16056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278138","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080067","1483080067","1483081445","1483080067","1","12","0","-1","1378","0","16536","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278140","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080091","1483080091","1483081860","1483080091","1","12","0","-1","1769","0","21228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278179","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080524","1483080524","1483082282","1483080524","1","12","0","-1","1758","0","21096","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278181","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080531","1483080531","1483082068","1483080531","1","12","0","-1","1537","0","18444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278185","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080539","1483080539","1483082047","1483080539","1","12","0","-1","1508","0","18096","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278190","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080590","1483080590","1483082308","1483080590","1","12","0","-1","1718","0","20616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278192","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080595","1483080595","1483082081","1483080595","1","12","0","-1","1486","0","17832","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278206","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080654","1483080654","1483082429","1483080654","1","12","0","-1","1775","0","21300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278211","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080676","1483080676","1483082371","1483080676","1","12","0","-1","1695","0","20340","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278255","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080961","1483080961","1483082676","1483080961","1","12","0","-1","1715","0","20580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278263","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081003","1483081003","1483082505","1483081003","1","12","0","-1","1502","0","18024","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278265","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081010","1483081010","1483082786","1483081010","1","12","0","-1","1776","0","21312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278274","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081103","1483081103","1483082807","1483081103","1","12","0","-1","1704","0","20448","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278283","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081163","1483081163","1483082815","1483081163","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278285","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081167","1483081167","1483082917","1483081167","1","12","0","-1","1750","0","21000","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278302","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081316","1483081316","1483083085","1483081316","1","12","0","-1","1769","0","21228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278321","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081502","1483081502","1483082938","1483081502","1","12","0","-1","1436","0","17232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278333","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081823","1483081823","1483083028","1483081823","1","12","0","-1","1205","0","14460","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278337","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081867","1483081867","1483083608","1483081867","1","12","0","-1","1741","0","20892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278339","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081879","1483081879","1483083349","1483081879","1","12","0","-1","1470","0","17640","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278341","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081887","1483081887","1483083318","1483081887","1","12","0","-1","1431","0","17172","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278349","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082082","1483082082","1483083213","1483082082","1","12","0","-1","1131","0","13572","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278374","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082430","1483082430","1483083591","1483082430","1","12","0","-1","1161","0","13932","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278376","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082435","1483082435","1483083523","1483082435","1","12","0","-1","1088","0","13056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278403","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082557","1483082557","1483084288","1483082557","1","12","0","-1","1731","0","20772","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278433","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082791","1483082791","1483084506","1483082791","1","12","0","-1","1715","0","20580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278435","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082806","1483082806","1483084599","1483082806","1","12","0","-1","1793","0","21516","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278480","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082996","1483082996","1483084662","1483082996","1","12","0","-1","1666","0","19992","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278491","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083090","1483083090","1483084623","1483083090","1","12","0","-1","1533","0","18396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278521","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083342","1483083342","1483085133","1483083342","1","12","0","-1","1791","0","21492","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278534","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083526","1483083526","1483084877","1483083526","1","12","0","-1","1351","0","16212","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278536","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083542","1483083542","1483085093","1483083542","1","12","0","-1","1551","0","18612","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278538","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083551","1483083551","1483085180","1483083551","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278542","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083595","1483083595","1483085161","1483083595","1","12","0","-1","1566","0","18792","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278544","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083611","1483083611","1483085376","1483083611","1","12","0","-1","1765","0","21180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278546","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083615","1483083615","1483085269","1483083615","1","12","0","-1","1654","0","19848","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278566","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084066","1483084066","1483085762","1483084066","1","12","0","-1","1696","0","20352","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278568","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084103","1483084103","1483085691","1483084103","1","12","0","-1","1588","0","19056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278575","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084209","1483084209","1483085776","1483084209","1","12","0","-1","1567","0","18804","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278613","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084571","1483084571","1483086161","1483084571","1","12","0","-1","1590","0","19080","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278645","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084761","1483084761","1483086343","1483084761","1","12","0","-1","1582","0","18984","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278659","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084852","1483084852","1483086474","1483084852","1","12","0","-1","1622","0","19464","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278665","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084874","1483084874","1483086448","1483084874","1","12","0","-1","1574","0","18888","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278671","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084892","1483084892","1483086578","1483084892","1","12","0","-1","1686","0","20232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278675","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084901","1483084901","1483086566","1483084901","1","12","0","-1","1665","0","19980","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278679","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084910","1483084910","1483086704","1483084910","1","12","0","-1","1794","0","21528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278703","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085137","1483085137","1483086913","1483085137","1","12","0","-1","1776","0","21312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278711","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085247","1483085247","1483087000","1483085247","1","12","0","-1","1753","0","21036","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278719","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085276","1483085276","1483086986","1483085276","1","12","0","-1","1710","0","20520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278735","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085380","1483085380","1483087034","1483085380","1","12","0","-1","1654","0","19848","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278740","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085447","1483085447","1483087170","1483085447","1","12","0","-1","1723","0","20676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278780","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086058","1483086058","1483087848","1483086058","1","12","0","-1","1790","0","21480","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278795","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086379","1483086379","1483087918","1483086379","1","12","0","-1","1539","0","18468","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278809","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086541","1483086541","1483088131","1483086541","1","12","0","-1","1590","0","19080","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278811","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086552","1483086552","1483088070","1483086552","1","12","0","-1","1518","0","18216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278813","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086556","1483086556","1483087809","1483086556","1","12","0","-1","1253","0","15036","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278817","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086572","1483086572","1483088196","1483086572","1","12","0","-1","1624","0","19488","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278819","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086576","1483086576","1483088185","1483086576","1","12","0","-1","1609","0","19308","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278823","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086585","1483086585","1483087970","1483086585","1","12","0","-1","1385","0","16620","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278825","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086627","1483086627","1483088242","1483086627","1","12","0","-1","1615","0","19380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278838","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086721","1483086721","1483088423","1483086721","1","12","0","-1","1702","0","20424","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278845","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086761","1483086761","1483088434","1483086761","1","12","0","-1","1673","0","20076","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278851","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086774","1483086774","1483088407","1483086774","1","12","0","-1","1633","0","19596","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278853","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086783","1483086783","1483088352","1483086783","1","12","0","-1","1569","0","18828","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278855","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086788","1483086788","1483088533","1483086788","1","12","0","-1","1745","0","20940","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278857","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086808","1483086808","1483088583","1483086808","1","12","0","-1","1775","0","21300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278861","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086828","1483086828","1483088596","1483086828","1","12","0","-1","1768","0","21216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278865","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086844","1483086844","1483088587","1483086844","1","12","0","-1","1743","0","20916","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278870","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086896","1483086896","1483088391","1483086896","1","12","0","-1","1495","0","17940","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278874","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086930","1483086930","1483088713","1483086930","1","12","0","-1","1783","0","21396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278876","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086960","1483086960","1483088571","1483086960","1","12","0","-1","1611","0","19332","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278893","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087009","1483087009","1483088621","1483087009","1","12","0","-1","1612","0","19344","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278902","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087037","1483087037","1483088788","1483087037","1","12","0","-1","1751","0","21012","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278907","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087061","1483087061","1483088743","1483087061","1","12","0","-1","1682","0","20184","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278931","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087248","1483087248","1483088813","1483087248","1","12","0","-1","1565","0","18780","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278933","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087270","1483087270","1483088884","1483087270","1","12","0","-1","1614","0","19368","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278935","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087275","1483087275","1483089057","1483087275","1","12","0","-1","1782","0","21384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278937","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087286","1483087286","1483089033","1483087286","1","12","0","-1","1747","0","20964","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278939","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087305","1483087305","1483088407","1483087305","1","12","0","-1","1102","0","13224","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278941","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087310","1483087310","1483088661","1483087310","1","12","0","-1","1351","0","16212","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278946","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087351","1483087351","1483088927","1483087351","1","12","0","-1","1576","0","18912","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278954","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087421","1483087421","1483088719","1483087421","1","12","0","-1","1298","0","15576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279023","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088362","1483088362","1483090019","1483088362","1","12","0","-1","1657","0","19884","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279044","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088453","1483088453","1483090021","1483088453","1","12","0","-1","1568","0","18816","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279046","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088464","1483088464","1483090185","1483088464","1","12","0","-1","1721","0","20652","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279055","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088538","1483088538","1483090049","1483088538","1","12","0","-1","1511","0","18132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279062","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088592","1483088592","1483090352","1483088592","1","12","0","-1","1760","0","21120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279070","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088624","1483088624","1483089973","1483088624","1","12","0","-1","1349","0","16188","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279072","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088635","1483088635","1483090212","1483088635","1","12","0","-1","1577","0","18924","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279079","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088685","1483088685","1483090038","1483088685","1","12","0","-1","1353","0","16236","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279082","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088708","1483088708","1483090341","1483088708","1","12","0","-1","1633","0","19596","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279121","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089002","1483089002","1483090489","1483089002","1","12","0","-1","1487","0","17844","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279125","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089016","1483089016","1483090613","1483089016","1","12","0","-1","1597","0","19164","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279127","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089037","1483089037","1483090807","1483089037","1","12","0","-1","1770","0","21240","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279132","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089071","1483089071","1483090787","1483089071","1","12","0","-1","1716","0","20592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279136","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089113","1483089113","1483090891","1483089113","1","12","0","-1","1778","0","21336","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279145","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089272","1483089272","1483090978","1483089272","1","12","0","-1","1706","0","20472","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279169","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089603","1483089603","1483091384","1483089603","1","12","0","-1","1781","0","21372","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279175","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089662","1483089662","1483090760","1483089662","1","12","0","-1","1098","0","13176","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279181","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089757","1483089757","1483091235","1483089757","1","12","0","-1","1478","0","17736","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279183","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089775","1483089775","1483091459","1483089775","1","12","0","-1","1684","0","20208","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279185","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089798","1483089798","1483091478","1483089798","1","12","0","-1","1680","0","20160","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279197","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089952","1483089952","1483091214","1483089952","1","12","0","-1","1262","0","15144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279199","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089963","1483089963","1483091625","1483089963","1","12","0","-1","1662","0","19944","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279205","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090009","1483090009","1483091218","1483090009","1","12","0","-1","1209","0","14508","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279258","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090346","1483090346","1483092105","1483090346","1","12","0","-1","1759","0","21108","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279267","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090477","1483090477","1483092188","1483090477","1","12","0","-1","1711","0","20532","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279272","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090503","1483090503","1483092175","1483090503","1","12","0","-1","1672","0","20064","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279274","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090507","1483090507","1483092138","1483090507","1","12","0","-1","1631","0","19572","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279311","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090775","1483090775","1483092450","1483090775","1","12","0","-1","1675","0","20100","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279324","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090910","1483090910","1483092656","1483090910","1","12","0","-1","1746","0","20952","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279336","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091059","1483091059","1483092685","1483091059","1","12","0","-1","1626","0","19512","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279355","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091324","1483091324","1483093000","1483091324","1","12","0","-1","1676","0","20112","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279358","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091367","1483091367","1483093053","1483091367","1","12","0","-1","1686","0","20232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279366","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091387","1483091387","1483092950","1483091387","1","12","0","-1","1563","0","18756","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279387","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091518","1483091518","1483093173","1483091518","1","12","0","-1","1655","0","19860","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279402","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091634","1483091634","1483093281","1483091634","1","12","0","-1","1647","0","19764","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279405","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091764","1483091764","1483093429","1483091764","1","12","0","-1","1665","0","19980","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279429","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092104","1483092104","1483093654","1483092104","1","12","0","-1","1550","0","18600","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279435","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092125","1483092125","1483093521","1483092125","1","12","0","-1","1396","0","16752","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279445","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092177","1483092177","1483093961","1483092177","1","12","0","-1","1784","0","21408","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279448","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092189","1483092189","1483093867","1483092189","1","12","0","-1","1678","0","20136","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279454","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092241","1483092241","1483093469","1483092241","1","12","0","-1","1228","0","14736","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279464","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092352","1483092352","1483093944","1483092352","1","12","0","-1","1592","0","19104","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279467","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092406","1483092406","1483093996","1483092406","1","12","0","-1","1590","0","19080","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279469","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092413","1483092413","1483093960","1483092413","1","12","0","-1","1547","0","18564","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279496","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092643","1483092643","1483094092","1483092643","1","12","0","-1","1449","0","17388","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279501","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092665","1483092665","1483094068","1483092665","1","12","0","-1","1403","0","16836","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279513","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092741","1483092741","1483094407","1483092741","1","12","0","-1","1666","0","19992","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279522","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092796","1483092796","1483094563","1483092796","1","12","0","-1","1767","0","21204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279563","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093165","1483093165","1483094849","1483093165","1","12","0","-1","1684","0","20208","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279592","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093431","1483093431","1483095078","1483093431","1","12","0","-1","1647","0","19764","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279594","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093456","1483093456","1483095219","1483093456","1","12","0","-1","1763","0","21156","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279604","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093544","1483093544","1483095132","1483093544","1","12","0","-1","1588","0","19056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279626","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093877","1483093877","1483095295","1483093877","1","12","0","-1","1418","0","17016","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279632","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093948","1483093948","1483095527","1483093948","1","12","0","-1","1579","0","18948","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279647","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094058","1483094058","1483095783","1483094058","1","12","0","-1","1725","0","20700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279649","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094069","1483094069","1483095866","1483094069","1","12","0","-1","1797","0","21564","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279681","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094416","1483094416","1483096062","1483094416","1","12","0","-1","1646","0","19752","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279683","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094434","1483094434","1483096136","1483094434","1","12","0","-1","1702","0","20424","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279707","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094653","1483094653","1483096381","1483094653","1","12","0","-1","1728","0","20736","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279711","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094687","1483094687","1483096365","1483094687","1","12","0","-1","1678","0","20136","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279713","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094714","1483094714","1483096381","1483094714","1","12","0","-1","1667","0","20004","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279715","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094730","1483094730","1483096351","1483094730","1","12","0","-1","1621","0","19452","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279726","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094823","1483094823","1483096475","1483094823","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279744","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094925","1483094925","1483096111","1483094925","1","12","0","-1","1186","0","14232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279755","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095028","1483095028","1483096730","1483095028","1","12","0","-1","1702","0","20424","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279757","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095032","1483095032","1483096800","1483095032","1","12","0","-1","1768","0","21216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279776","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095136","1483095136","1483096770","1483095136","1","12","0","-1","1634","0","19608","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279778","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095141","1483095141","1483096617","1483095141","1","12","0","-1","1476","0","17712","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279781","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095201","1483095201","1483096911","1483095201","1","12","0","-1","1710","0","20520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279850","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095966","1483095966","1483097706","1483095966","1","12","0","-1","1740","0","20880","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279852","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095982","1483095982","1483097503","1483095982","1","12","0","-1","1521","0","18252","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279863","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096116","1483096116","1483097887","1483096116","1","12","0","-1","1771","0","21252","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279870","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096162","1483096162","1483097842","1483096162","1","12","0","-1","1680","0","20160","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279881","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096290","1483096290","1483098040","1483096290","1","12","0","-1","1750","0","21000","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279883","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096304","1483096304","1483098071","1483096304","1","12","0","-1","1767","0","21204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279887","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096326","1483096326","1483097816","1483096326","1","12","0","-1","1490","0","17880","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279915","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096552","1483096552","1483098029","1483096552","1","12","0","-1","1477","0","17724","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279949","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096766","1483096766","1483098160","1483096766","1","12","0","-1","1394","0","16728","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279951","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096773","1483096773","1483098468","1483096773","1","12","0","-1","1695","0","20340","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279954","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096809","1483096809","1483098571","1483096809","1","12","0","-1","1762","0","21144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279968","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096941","1483096941","1483098452","1483096941","1","12","0","-1","1511","0","18132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279982","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097030","1483097030","1483098725","1483097030","1","12","0","-1","1695","0","20340","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279986","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097074","1483097074","1483098747","1483097074","1","12","0","-1","1673","0","20076","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279994","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097112","1483097112","1483098470","1483097112","1","12","0","-1","1358","0","16296","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280011","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097509","1483097509","1483099245","1483097509","1","12","0","-1","1736","0","20832","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280017","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097711","1483097711","1483099319","1483097711","1","12","0","-1","1608","0","19296","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280021","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097756","1483097756","1483099468","1483097756","1","12","0","-1","1712","0","20544","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280023","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097765","1483097765","1483099408","1483097765","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280025","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097806","1483097806","1483099549","1483097806","1","12","0","-1","1743","0","20916","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280033","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097867","1483097867","1483099530","1483097867","1","12","0","-1","1663","0","19956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280038","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097897","1483097897","1483099549","1483097897","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280042","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097924","1483097924","1483099603","1483097924","1","12","0","-1","1679","0","20148","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280073","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098192","1483098192","1483099927","1483098192","1","12","0","-1","1735","0","20820","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280092","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098274","1483098274","1483099797","1483098274","1","12","0","-1","1523","0","18276","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280100","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098296","1483098296","1483100034","1483098296","1","12","0","-1","1738","0","20856","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280115","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098376","1483098376","1483100132","1483098376","1","12","0","-1","1756","0","21072","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280144","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098656","1483098656","1483100138","1483098656","1","12","0","-1","1482","0","17784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280151","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098756","1483098756","1483100150","1483098756","1","12","0","-1","1394","0","16728","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280153","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098786","1483098786","1483100272","1483098786","1","12","0","-1","1486","0","17832","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280159","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098823","1483098823","1483100360","1483098823","1","12","0","-1","1537","0","18444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280162","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098894","1483098894","1483100391","1483098894","1","12","0","-1","1497","0","17964","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280165","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098926","1483098926","1483100635","1483098926","1","12","0","-1","1709","0","20508","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280169","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098975","1483098975","1483100663","1483098975","1","12","0","-1","1688","0","20256","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280177","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099010","1483099010","1483100375","1483099010","1","12","0","-1","1365","0","16380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280179","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099015","1483099015","1483100504","1483099015","1","12","0","-1","1489","0","17868","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280182","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099060","1483099060","1483100824","1483099060","1","12","0","-1","1764","0","21168","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280219","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099558","1483099558","1483101248","1483099558","1","12","0","-1","1690","0","20280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280257","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099860","1483099860","1483101342","1483099860","1","12","0","-1","1482","0","17784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280269","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099990","1483099990","1483101475","1483099990","1","12","0","-1","1485","0","17820","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280274","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100038","1483100038","1483101829","1483100038","1","12","0","-1","1791","0","21492","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280276","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100043","1483100043","1483101677","1483100043","1","12","0","-1","1634","0","19608","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280285","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100091","1483100091","1483101862","1483100091","1","12","0","-1","1771","0","21252","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280298","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100154","1483100154","1483101580","1483100154","1","12","0","-1","1426","0","17112","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280302","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100180","1483100180","1483101884","1483100180","1","12","0","-1","1704","0","20448","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280316","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100278","1483100278","1483102009","1483100278","1","12","0","-1","1731","0","20772","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280318","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100294","1483100294","1483102061","1483100294","1","12","0","-1","1767","0","21204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280320","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100299","1483100299","1483101903","1483100299","1","12","0","-1","1604","0","19248","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280326","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100327","1483100327","1483101882","1483100327","1","12","0","-1","1555","0","18660","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280330","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100345","1483100345","1483101943","1483100345","1","12","0","-1","1598","0","19176","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280350","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100494","1483100494","1483102173","1483100494","1","12","0","-1","1679","0","20148","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280426","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101453","1483101453","1483103079","1483101453","1","12","0","-1","1626","0","19512","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280430","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101478","1483101478","1483103167","1483101478","1","12","0","-1","1689","0","20268","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280442","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101567","1483101567","1483103255","1483101567","1","12","0","-1","1688","0","20256","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280445","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101585","1483101585","1483103350","1483101585","1","12","0","-1","1765","0","21180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280447","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101589","1483101589","1483103272","1483101589","1","12","0","-1","1683","0","20196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280452","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101645","1483101645","1483103332","1483101645","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280497","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101981","1483101981","1483103760","1483101981","1","12","0","-1","1779","0","21348","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280499","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102013","1483102013","1483103724","1483102013","1","12","0","-1","1711","0","20532","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280505","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102029","1483102029","1483103636","1483102029","1","12","0","-1","1607","0","19284","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280509","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102045","1483102045","1483103455","1483102045","1","12","0","-1","1410","0","16920","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280511","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102049","1483102049","1483103287","1483102049","1","12","0","-1","1238","0","14856","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280513","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102054","1483102054","1483103584","1483102054","1","12","0","-1","1530","0","18360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280517","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102072","1483102072","1483103690","1483102072","1","12","0","-1","1618","0","19416","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280519","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102095","1483102095","1483103722","1483102095","1","12","0","-1","1627","0","19524","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280521","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102099","1483102099","1483103318","1483102099","1","12","0","-1","1219","0","14628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280523","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102104","1483102104","1483103497","1483102104","1","12","0","-1","1393","0","16716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280526","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102123","1483102123","1483103511","1483102123","1","12","0","-1","1388","0","16656","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280533","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102177","1483102177","1483103799","1483102177","1","12","0","-1","1622","0","19464","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280537","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102204","1483102204","1483103436","1483102204","1","12","0","-1","1232","0","14784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280592","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102847","1483102847","1483104588","1483102847","1","12","0","-1","1741","0","20892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280596","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102893","1483102893","1483104480","1483102893","1","12","0","-1","1587","0","19044","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280611","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103093","1483103093","1483104762","1483103093","1","12","0","-1","1669","0","20028","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280648","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103350","1483103350","1483104925","1483103350","1","12","0","-1","1575","0","18900","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280658","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103458","1483103458","1483105101","1483103458","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280712","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104062","1483104062","1483105681","1483104062","1","12","0","-1","1619","0","19428","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280721","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104133","1483104133","1483105697","1483104133","1","12","0","-1","1564","0","18768","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280726","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104167","1483104167","1483105936","1483104167","1","12","0","-1","1769","0","21228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280744","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104356","1483104356","1483106100","1483104356","1","12","0","-1","1744","0","20928","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280756","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104528","1483104528","1483106323","1483104528","1","12","0","-1","1795","0","21540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280764","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104688","1483104688","1483106333","1483104688","1","12","0","-1","1645","0","19740","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280769","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104757","1483104757","1483106319","1483104757","1","12","0","-1","1562","0","18744","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280780","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104791","1483104791","1483106572","1483104791","1","12","0","-1","1781","0","21372","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280783","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104800","1483104800","1483106439","1483104800","1","12","0","-1","1639","0","19668","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280814","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105057","1483105057","1483106592","1483105057","1","12","0","-1","1535","0","18420","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280816","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105061","1483105061","1483106593","1483105061","1","12","0","-1","1532","0","18384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280819","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105106","1483105106","1483106869","1483105106","1","12","0","-1","1763","0","21156","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280821","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105110","1483105110","1483106763","1483105110","1","12","0","-1","1653","0","19836","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280823","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105115","1483105115","1483106298","1483105115","1","12","0","-1","1183","0","14196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280837","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105236","1483105236","1483106760","1483105236","1","12","0","-1","1524","0","18288","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280839","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105245","1483105245","1483107024","1483105245","1","12","0","-1","1779","0","21348","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280841","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105255","1483105255","1483106813","1483105255","1","12","0","-1","1558","0","18696","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280844","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105376","1483105376","1483106965","1483105376","1","12","0","-1","1589","0","19068","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280846","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105389","1483105389","1483106850","1483105389","1","12","0","-1","1461","0","17532","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280848","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105401","1483105401","1483107086","1483105401","1","12","0","-1","1685","0","20220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280851","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105417","1483105417","1483106599","1483105417","1","12","0","-1","1182","0","14184","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280907","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106026","1483106026","1483107751","1483106026","1","12","0","-1","1725","0","20700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280909","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106042","1483106042","1483107768","1483106042","1","12","0","-1","1726","0","20712","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280947","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106349","1483106349","1483107942","1483106349","1","12","0","-1","1593","0","19116","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280956","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106451","1483106451","1483108210","1483106451","1","12","0","-1","1759","0","21108","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280968","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106548","1483106548","1483108290","1483106548","1","12","0","-1","1742","0","20904","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280972","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106587","1483106587","1483108110","1483106587","1","12","0","-1","1523","0","18276","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280976","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106600","1483106600","1483108334","1483106600","1","12","0","-1","1734","0","20808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280978","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106605","1483106605","1483108149","1483106605","1","12","0","-1","1544","0","18528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281011","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106784","1483106784","1483108271","1483106784","1","12","0","-1","1487","0","17844","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281027","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106954","1483106954","1483108679","1483106954","1","12","0","-1","1725","0","20700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281031","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106984","1483106984","1483108702","1483106984","1","12","0","-1","1718","0","20616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281033","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107008","1483107008","1483108684","1483107008","1","12","0","-1","1676","0","20112","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281035","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107044","1483107044","1483108518","1483107044","1","12","0","-1","1474","0","17688","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281059","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107458","1483107458","1483109060","1483107458","1","12","0","-1","1602","0","19224","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281066","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107506","1483107506","1483109012","1483107506","1","12","0","-1","1506","0","18072","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281073","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107583","1483107583","1483109108","1483107583","1","12","0","-1","1525","0","18300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281087","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107793","1483107793","1483109385","1483107793","1","12","0","-1","1592","0","19104","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281089","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107811","1483107811","1483109380","1483107811","1","12","0","-1","1569","0","18828","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281094","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107893","1483107893","1483109675","1483107893","1","12","0","-1","1782","0","21384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281133","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108208","1483108208","1483110006","1483108208","1","12","0","-1","1798","0","21576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281135","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108212","1483108212","1483109709","1483108212","1","12","0","-1","1497","0","17964","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281139","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108230","1483108230","1483109682","1483108230","1","12","0","-1","1452","0","17424","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281146","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108285","1483108285","1483109945","1483108285","1","12","0","-1","1660","0","19920","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281148","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108294","1483108294","1483109826","1483108294","1","12","0","-1","1532","0","18384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281150","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108301","1483108301","1483109992","1483108301","1","12","0","-1","1691","0","20292","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281152","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108308","1483108308","1483109798","1483108308","1","12","0","-1","1490","0","17880","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281154","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108321","1483108321","1483109551","1483108321","1","12","0","-1","1230","0","14760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281158","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108369","1483108369","1483109868","1483108369","1","12","0","-1","1499","0","17988","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281164","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108407","1483108407","1483110058","1483108407","1","12","0","-1","1651","0","19812","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281168","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108463","1483108463","1483109784","1483108463","1","12","0","-1","1321","0","15852","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281173","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108500","1483108500","1483109804","1483108500","1","12","0","-1","1304","0","15648","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281187","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108620","1483108620","1483110003","1483108620","1","12","0","-1","1383","0","16596","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281192","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108650","1483108650","1483110348","1483108650","1","12","0","-1","1698","0","20376","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281224","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108863","1483108863","1483110398","1483108863","1","12","0","-1","1535","0","18420","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281227","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108895","1483108895","1483110415","1483108895","1","12","0","-1","1520","0","18240","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281231","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108904","1483108904","1483110521","1483108904","1","12","0","-1","1617","0","19404","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281238","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109016","1483109016","1483110647","1483109016","1","12","0","-1","1631","0","19572","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281288","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109546","1483109546","1483111200","1483109546","1","12","0","-1","1654","0","19848","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281346","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109952","1483109952","1483111401","1483109952","1","12","0","-1","1449","0","17388","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281354","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109997","1483109997","1483111795","1483109997","1","12","0","-1","1798","0","21576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281362","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110057","1483110057","1483111673","1483110057","1","12","0","-1","1616","0","19392","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281364","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110062","1483110062","1483111757","1483110062","1","12","0","-1","1695","0","20340","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281400","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110526","1483110526","1483112314","1483110526","1","12","0","-1","1788","0","21456","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281403","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110564","1483110564","1483112085","1483110564","1","12","0","-1","1521","0","18252","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281409","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110656","1483110656","1483112230","1483110656","1","12","0","-1","1574","0","18888","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281417","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110710","1483110710","1483112462","1483110710","1","12","0","-1","1752","0","21024","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281423","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110743","1483110743","1483112357","1483110743","1","12","0","-1","1614","0","19368","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281426","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110752","1483110752","1483112544","1483110752","1","12","0","-1","1792","0","21504","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281431","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110793","1483110793","1483112347","1483110793","1","12","0","-1","1554","0","18648","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281433","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110817","1483110817","1483112410","1483110817","1","12","0","-1","1593","0","19116","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281435","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110823","1483110823","1483112519","1483110823","1","12","0","-1","1696","0","20352","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281438","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110836","1483110836","1483112536","1483110836","1","12","0","-1","1700","0","20400","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281451","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111086","1483111086","1483112733","1483111086","1","12","0","-1","1647","0","19764","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281456","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111146","1483111146","1483112562","1483111146","1","12","0","-1","1416","0","16992","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281472","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111288","1483111288","1483113049","1483111288","1","12","0","-1","1761","0","21132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281478","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111387","1483111387","1483113167","1483111387","1","12","0","-1","1780","0","21360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281480","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111396","1483111396","1483112968","1483111396","1","12","0","-1","1572","0","18864","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281482","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111414","1483111414","1483113096","1483111414","1","12","0","-1","1682","0","20184","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281489","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111577","1483111577","1483113183","1483111577","1","12","0","-1","1606","0","19272","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281501","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111687","1483111687","1483113421","1483111687","1","12","0","-1","1734","0","20808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281506","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111713","1483111713","1483113436","1483111713","1","12","0","-1","1723","0","20676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281514","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111756","1483111756","1483113266","1483111756","1","12","0","-1","1510","0","18120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281524","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111799","1483111799","1483113443","1483111799","1","12","0","-1","1644","0","19728","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281538","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111923","1483111923","1483113615","1483111923","1","12","0","-1","1692","0","20304","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281548","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112005","1483112005","1483113522","1483112005","1","12","0","-1","1517","0","18204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281550","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112012","1483112012","1483113773","1483112012","1","12","0","-1","1761","0","21132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281599","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112372","1483112372","1483114090","1483112372","1","12","0","-1","1718","0","20616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281602","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112415","1483112415","1483114203","1483112415","1","12","0","-1","1788","0","21456","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281620","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112549","1483112549","1483114110","1483112549","1","12","0","-1","1561","0","18732","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281622","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112566","1483112566","1483114360","1483112566","1","12","0","-1","1794","0","21528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281659","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112872","1483112872","1483114668","1483112872","1","12","0","-1","1796","0","21552","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281668","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113072","1483113072","1483114638","1483113072","1","12","0","-1","1566","0","18792","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281692","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113411","1483113411","1483115011","1483113411","1","12","0","-1","1600","0","19200","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281696","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113429","1483113429","1483115210","1483113429","1","12","0","-1","1781","0","21372","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281714","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113566","1483113566","1483115338","1483113566","1","12","0","-1","1772","0","21264","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281717","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113582","1483113582","1483115327","1483113582","1","12","0","-1","1745","0","20940","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281728","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113665","1483113665","1483115040","1483113665","1","12","0","-1","1375","0","16500","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281730","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113670","1483113670","1483115279","1483113670","1","12","0","-1","1609","0","19308","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281732","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113681","1483113681","1483115277","1483113681","1","12","0","-1","1596","0","19152","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281736","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113689","1483113689","1483115248","1483113689","1","12","0","-1","1559","0","18708","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281740","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113698","1483113698","1483115343","1483113698","1","12","0","-1","1645","0","19740","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281748","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113776","1483113776","1483115267","1483113776","1","12","0","-1","1491","0","17892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281750","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113783","1483113783","1483115050","1483113783","1","12","0","-1","1267","0","15204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281752","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113816","1483113816","1483115562","1483113816","1","12","0","-1","1746","0","20952","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281754","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113822","1483113822","1483115480","1483113822","1","12","0","-1","1658","0","19896","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281760","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113867","1483113867","1483115606","1483113867","1","12","0","-1","1739","0","20868","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281777","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114065","1483114065","1483115842","1483114065","1","12","0","-1","1777","0","21324","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281791","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114126","1483114126","1483115645","1483114126","1","12","0","-1","1519","0","18228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281794","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114206","1483114206","1483115463","1483114206","1","12","0","-1","1257","0","15084","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281806","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114289","1483114289","1483116031","1483114289","1","12","0","-1","1742","0","20904","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281812","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114368","1483114368","1483115896","1483114368","1","12","0","-1","1528","0","18336","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281824","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114434","1483114434","1483116121","1483114434","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281826","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114438","1483114438","1483115972","1483114438","1","12","0","-1","1534","0","18408","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281844","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114636","1483114636","1483116229","1483114636","1","12","0","-1","1593","0","19116","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281861","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114721","1483114721","1483116487","1483114721","1","12","0","-1","1766","0","21192","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281875","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114939","1483114939","1483116641","1483114939","1","12","0","-1","1702","0","20424","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281883","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115045","1483115045","1483116764","1483115045","1","12","0","-1","1719","0","20628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281885","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115053","1483115053","1483116641","1483115053","1","12","0","-1","1588","0","19056","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281887","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115062","1483115062","1483116537","1483115062","1","12","0","-1","1475","0","17700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281890","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115090","1483115090","1483116641","1483115090","1","12","0","-1","1551","0","18612","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281892","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115094","1483115094","1483116811","1483115094","1","12","0","-1","1717","0","20604","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281895","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115132","1483115132","1483116616","1483115132","1","12","0","-1","1484","0","17808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281899","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115144","1483115144","1483116857","1483115144","1","12","0","-1","1713","0","20556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281916","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115280","1483115280","1483116864","1483115280","1","12","0","-1","1584","0","19008","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281927","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115347","1483115347","1483116766","1483115347","1","12","0","-1","1419","0","17028","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281930","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115399","1483115399","1483116876","1483115399","1","12","0","-1","1477","0","17724","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281934","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115417","1483115417","1483116907","1483115417","1","12","0","-1","1490","0","17880","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281941","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115520","1483115520","1483117081","1483115520","1","12","0","-1","1561","0","18732","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281943","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115529","1483115529","1483116907","1483115529","1","12","0","-1","1378","0","16536","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281947","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115538","1483115538","1483117105","1483115538","1","12","0","-1","1567","0","18804","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281949","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115567","1483115567","1483116907","1483115567","1","12","0","-1","1340","0","16080","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281953","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115599","1483115599","1483117025","1483115599","1","12","0","-1","1426","0","17112","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281956","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115626","1483115626","1483116953","1483115626","1","12","0","-1","1327","0","15924","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281958","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115635","1483115635","1483117219","1483115635","1","12","0","-1","1584","0","19008","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281960","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115646","1483115646","1483117319","1483115646","1","12","0","-1","1673","0","20076","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281962","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115651","1483115651","1483117353","1483115651","1","12","0","-1","1702","0","20424","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281964","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115655","1483115655","1483117025","1483115655","1","12","0","-1","1370","0","16440","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281968","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115675","1483115675","1483117025","1483115675","1","12","0","-1","1350","0","16200","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281972","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115711","1483115711","1483117025","1483115711","1","12","0","-1","1314","0","15768","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281982","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115815","1483115815","1483117025","1483115815","1","12","0","-1","1210","0","14520","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281992","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115997","1483115997","1483117262","1483115997","1","12","0","-1","1265","0","15180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281996","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116006","1483116006","1483117025","1483116006","1","12","0","-1","1019","0","12228","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282018","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116087","1483116087","1483117807","1483116087","1","12","0","-1","1720","0","20640","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282024","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116131","1483116131","1483117895","1483116131","1","12","0","-1","1764","0","21168","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282036","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116176","1483116176","1483117942","1483116176","1","12","0","-1","1766","0","21192","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282039","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116210","1483116210","1483117839","1483116210","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282043","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116228","1483116228","1483117874","1483116228","1","12","0","-1","1646","0","19752","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282045","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116232","1483116232","1483118015","1483116232","1","12","0","-1","1783","0","21396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282057","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116328","1483116328","1483118121","1483116328","1","12","0","-1","1793","0","21516","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282062","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116346","1483116346","1483117825","1483116346","1","12","0","-1","1479","0","17748","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282075","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116432","1483116432","1483117905","1483116432","1","12","0","-1","1473","0","17676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282088","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116514","1483116514","1483117841","1483116514","1","12","0","-1","1327","0","15924","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282101","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116633","1483116633","1483118163","1483116633","1","12","0","-1","1530","0","18360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282112","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116697","1483116697","1483118301","1483116697","1","12","0","-1","1604","0","19248","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282125","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116815","1483116815","1483118427","1483116815","1","12","0","-1","1612","0","19344","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282161","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116998","1483116998","1483118246","1483116998","1","12","0","-1","1248","0","14976","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282182","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117107","1483117107","1483118904","1483117107","1","12","0","-1","1797","0","21564","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282197","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117266","1483117266","1483118706","1483117266","1","12","0","-1","1440","0","17280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282202","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117323","1483117323","1483118711","1483117323","1","12","0","-1","1388","0","16656","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282205","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117356","1483117356","1483118980","1483117356","1","12","0","-1","1624","0","19488","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282227","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117695","1483117695","1483119190","1483117695","1","12","0","-1","1495","0","17940","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282234","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117811","1483117811","1483119577","1483117811","1","12","0","-1","1766","0","21192","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282236","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117826","1483117826","1483119299","1483117826","1","12","0","-1","1473","0","17676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282238","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117830","1483117830","1483119606","1483117830","1","12","0","-1","1776","0","21312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282243","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117849","1483117849","1483119437","1483117849","1","12","0","-1","1588","0","19056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282251","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117903","1483117903","1483119261","1483117903","1","12","0","-1","1358","0","16296","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282253","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117910","1483117910","1483119523","1483117910","1","12","0","-1","1613","0","19356","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282256","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117941","1483117941","1483119611","1483117941","1","12","0","-1","1670","0","20040","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282261","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117966","1483117966","1483119446","1483117966","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282263","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117978","1483117978","1483119758","1483117978","1","12","0","-1","1780","0","21360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282270","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118019","1483118019","1483119679","1483118019","1","12","0","-1","1660","0","19920","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282295","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118143","1483118143","1483119913","1483118143","1","12","0","-1","1770","0","21240","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282324","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118285","1483118285","1483120021","1483118285","1","12","0","-1","1736","0","20832","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282331","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118310","1483118310","1483119776","1483118310","1","12","0","-1","1466","0","17592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282337","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118367","1483118367","1483120152","1483118367","1","12","0","-1","1785","0","21420","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282344","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118418","1483118418","1483119853","1483118418","1","12","0","-1","1435","0","17220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282346","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118431","1483118431","1483120064","1483118431","1","12","0","-1","1633","0","19596","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282396","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118910","1483118910","1483120628","1483118910","1","12","0","-1","1718","0","20616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282405","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118945","1483118945","1483120651","1483118945","1","12","0","-1","1706","0","20472","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282409","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118974","1483118974","1483120432","1483118974","1","12","0","-1","1458","0","17496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282470","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119569","1483119569","1483121223","1483119569","1","12","0","-1","1654","0","19848","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282479","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119611","1483119611","1483121212","1483119611","1","12","0","-1","1601","0","19212","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282481","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119616","1483119616","1483121141","1483119616","1","12","0","-1","1525","0","18300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282486","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119629","1483119629","1483120924","1483119629","1","12","0","-1","1295","0","15540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282490","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119680","1483119680","1483120972","1483119680","1","12","0","-1","1292","0","15504","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282496","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119712","1483119712","1483121446","1483119712","1","12","0","-1","1734","0","20808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282498","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119716","1483119716","1483121309","1483119716","1","12","0","-1","1593","0","19116","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282501","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119759","1483119759","1483121217","1483119759","1","12","0","-1","1458","0","17496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282503","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119763","1483119763","1483121399","1483119763","1","12","0","-1","1636","0","19632","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282506","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119780","1483119780","1483121371","1483119780","1","12","0","-1","1591","0","19092","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282508","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119787","1483119787","1483121172","1483119787","1","12","0","-1","1385","0","16620","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282518","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119866","1483119866","1483121279","1483119866","1","12","0","-1","1413","0","16956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282531","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119917","1483119917","1483121401","1483119917","1","12","0","-1","1484","0","17808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282542","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120005","1483120005","1483121634","1483120005","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282544","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120025","1483120025","1483121611","1483120025","1","12","0","-1","1586","0","19032","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282548","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120068","1483120068","1483121850","1483120068","1","12","0","-1","1782","0","21384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282553","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120122","1483120122","1483121575","1483120122","1","12","0","-1","1453","0","17436","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282557","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120178","1483120178","1483121965","1483120178","1","12","0","-1","1787","0","21444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282580","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120343","1483120343","1483122118","1483120343","1","12","0","-1","1775","0","21300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282587","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120414","1483120414","1483121889","1483120414","1","12","0","-1","1475","0","17700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282597","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120553","1483120553","1483122288","1483120553","1","12","0","-1","1735","0","20820","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282641","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120953","1483120953","1483122629","1483120953","1","12","0","-1","1676","0","20112","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282675","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121176","1483121176","1483122971","1483121176","1","12","0","-1","1795","0","21540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282707","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121373","1483121373","1483123002","1483121373","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282711","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121404","1483121404","1483123127","1483121404","1","12","0","-1","1723","0","20676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282717","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121429","1483121429","1483123133","1483121429","1","12","0","-1","1704","0","20448","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282721","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121450","1483121450","1483123082","1483121450","1","12","0","-1","1632","0","19584","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282725","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121462","1483121462","1483122827","1483121462","1","12","0","-1","1365","0","16380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282737","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121592","1483121592","1483123267","1483121592","1","12","0","-1","1675","0","20100","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282761","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121892","1483121892","1483123598","1483121892","1","12","0","-1","1706","0","20472","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282787","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122232","1483122232","1483123953","1483122232","1","12","0","-1","1721","0","20652","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282833","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122632","1483122632","1483124318","1483122632","1","12","0","-1","1686","0","20232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282843","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122686","1483122686","1483124427","1483122686","1","12","0","-1","1741","0","20892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282862","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122887","1483122887","1483124612","1483122887","1","12","0","-1","1725","0","20700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282869","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122942","1483122942","1483124601","1483122942","1","12","0","-1","1659","0","19908","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282900","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123209","1483123209","1483124960","1483123209","1","12","0","-1","1751","0","21012","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282917","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123313","1483123313","1483124891","1483123313","1","12","0","-1","1578","0","18936","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282926","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123374","1483123374","1483124708","1483123374","1","12","0","-1","1334","0","16008","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282930","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123383","1483123383","1483124816","1483123383","1","12","0","-1","1433","0","17196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282932","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123387","1483123387","1483125023","1483123387","1","12","0","-1","1636","0","19632","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282934","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123392","1483123392","1483125117","1483123392","1","12","0","-1","1725","0","20700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282936","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123396","1483123396","1483125156","1483123396","1","12","0","-1","1760","0","21120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282940","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123436","1483123436","1483125191","1483123436","1","12","0","-1","1755","0","21060","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282943","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123473","1483123473","1483125270","1483123473","1","12","0","-1","1797","0","21564","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282965","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123710","1483123710","1483125429","1483123710","1","12","0","-1","1719","0","20628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282980","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123957","1483123957","1483125422","1483123957","1","12","0","-1","1465","0","17580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283004","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124329","1483124329","1483126074","1483124329","1","12","0","-1","1745","0","20940","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283006","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124340","1483124340","1483125891","1483124340","1","12","0","-1","1551","0","18612","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283013","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124408","1483124408","1483126166","1483124408","1","12","0","-1","1758","0","21096","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283026","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124576","1483124576","1483126053","1483124576","1","12","0","-1","1477","0","17724","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283028","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124605","1483124605","1483126261","1483124605","1","12","0","-1","1656","0","19872","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283035","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124640","1483124640","1483126300","1483124640","1","12","0","-1","1660","0","19920","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283041","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124704","1483124704","1483126138","1483124704","1","12","0","-1","1434","0","17208","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283045","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124713","1483124713","1483126182","1483124713","1","12","0","-1","1469","0","17628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283047","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124718","1483124718","1483126405","1483124718","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283051","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124738","1483124738","1483126326","1483124738","1","12","0","-1","1588","0","19056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283069","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124885","1483124885","1483126410","1483124885","1","12","0","-1","1525","0","18300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283091","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125027","1483125027","1483126419","1483125027","1","12","0","-1","1392","0","16704","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283095","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125111","1483125111","1483126725","1483125111","1","12","0","-1","1614","0","19368","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283097","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125120","1483125120","1483126389","1483125120","1","12","0","-1","1269","0","15228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283099","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125125","1483125125","1483126778","1483125125","1","12","0","-1","1653","0","19836","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283101","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125150","1483125150","1483126720","1483125150","1","12","0","-1","1570","0","18840","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283104","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125159","1483125159","1483126614","1483125159","1","12","0","-1","1455","0","17460","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283110","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125196","1483125196","1483126903","1483125196","1","12","0","-1","1707","0","20484","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283114","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125210","1483125210","1483126796","1483125210","1","12","0","-1","1586","0","19032","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283116","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125230","1483125230","1483126814","1483125230","1","12","0","-1","1584","0","19008","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283118","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125235","1483125235","1483126968","1483125235","1","12","0","-1","1733","0","20796","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283120","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125242","1483125242","1483126822","1483125242","1","12","0","-1","1580","0","18960","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283122","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125264","1483125264","1483126736","1483125264","1","12","0","-1","1472","0","17664","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283124","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125269","1483125269","1483126959","1483125269","1","12","0","-1","1690","0","20280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283127","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125278","1483125278","1483126468","1483125278","1","12","0","-1","1190","0","14280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283129","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125284","1483125284","1483126855","1483125284","1","12","0","-1","1571","0","18852","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283131","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125321","1483125321","1483126875","1483125321","1","12","0","-1","1554","0","18648","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283137","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125366","1483125366","1483126878","1483125366","1","12","0","-1","1512","0","18144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283151","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125473","1483125473","1483126800","1483125473","1","12","0","-1","1327","0","15924","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283155","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125525","1483125525","1483127007","1483125525","1","12","0","-1","1482","0","17784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283167","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125851","1483125851","1483127057","1483125851","1","12","0","-1","1206","0","14472","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283169","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125858","1483125858","1483127466","1483125858","1","12","0","-1","1608","0","19296","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283171","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125873","1483125873","1483127432","1483125873","1","12","0","-1","1559","0","18708","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283174","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125896","1483125896","1483127240","1483125896","1","12","0","-1","1344","0","16128","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283176","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125925","1483125925","1483127341","1483125925","1","12","0","-1","1416","0","16992","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283178","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125932","1483125932","1483127512","1483125932","1","12","0","-1","1580","0","18960","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283180","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125939","1483125939","1483127396","1483125939","1","12","0","-1","1457","0","17484","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283182","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125997","1483125997","1483127330","1483125997","1","12","0","-1","1333","0","15996","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283184","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126022","1483126022","1483127193","1483126022","1","12","0","-1","1171","0","14052","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283192","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126077","1483126077","1483127667","1483126077","1","12","0","-1","1590","0","19080","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283208","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126185","1483126185","1483127872","1483126185","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283215","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126251","1483126251","1483127860","1483126251","1","12","0","-1","1609","0","19308","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283219","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126271","1483126271","1483127989","1483126271","1","12","0","-1","1718","0","20616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283221","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126282","1483126282","1483127745","1483126282","1","12","0","-1","1463","0","17556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283246","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126470","1483126470","1483128097","1483126470","1","12","0","-1","1627","0","19524","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283255","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126565","1483126565","1483128194","1483126565","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283265","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126625","1483126625","1483128387","1483126625","1","12","0","-1","1762","0","21144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283314","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126956","1483126956","1483128607","1483126956","1","12","0","-1","1651","0","19812","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283365","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127350","1483127350","1483129129","1483127350","1","12","0","-1","1779","0","21348","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283394","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127672","1483127672","1483129145","1483127672","1","12","0","-1","1473","0","17676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283449","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128478","1483128478","1483130141","1483128478","1","12","0","-1","1663","0","19956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283454","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128501","1483128501","1483130287","1483128501","1","12","0","-1","1786","0","21432","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283460","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128528","1483128528","1483130222","1483128528","1","12","0","-1","1694","0","20328","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283486","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128743","1483128743","1483130425","1483128743","1","12","0","-1","1682","0","20184","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283496","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128807","1483128807","1483130515","1483128807","1","12","0","-1","1708","0","20496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283508","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128901","1483128901","1483130596","1483128901","1","12","0","-1","1695","0","20340","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283522","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128969","1483128969","1483130675","1483128969","1","12","0","-1","1706","0","20472","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283549","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129245","1483129245","1483130928","1483129245","1","12","0","-1","1683","0","20196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283561","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129403","1483129403","1483131046","1483129403","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283572","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129642","1483129642","1483131200","1483129642","1","12","0","-1","1558","0","18696","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283578","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129669","1483129669","1483131409","1483129669","1","12","0","-1","1740","0","20880","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283580","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129684","1483129684","1483131358","1483129684","1","12","0","-1","1674","0","20088","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283613","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130097","1483130097","1483131727","1483130097","1","12","0","-1","1630","0","19560","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283617","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130106","1483130106","1483131683","1483130106","1","12","0","-1","1577","0","18924","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283635","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130315","1483130315","1483132105","1483130315","1","12","0","-1","1790","0","21480","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283673","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130599","1483130599","1483132223","1483130599","1","12","0","-1","1624","0","19488","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283677","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130608","1483130608","1483132170","1483130608","1","12","0","-1","1562","0","18744","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283691","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130700","1483130700","1483132044","1483130700","1","12","0","-1","1344","0","16128","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283703","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130796","1483130796","1483132336","1483130796","1","12","0","-1","1540","0","18480","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283712","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130907","1483130907","1483132399","1483130907","1","12","0","-1","1492","0","17904","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283714","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130929","1483130929","1483132529","1483130929","1","12","0","-1","1600","0","19200","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283717","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130965","1483130965","1483132471","1483130965","1","12","0","-1","1506","0","18072","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283719","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130969","1483130969","1483132326","1483130969","1","12","0","-1","1357","0","16284","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283731","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131086","1483131086","1483132720","1483131086","1","12","0","-1","1634","0","19608","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283735","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131153","1483131153","1483132834","1483131153","1","12","0","-1","1681","0","20172","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283743","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131216","1483131216","1483132758","1483131216","1","12","0","-1","1542","0","18504","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283750","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131263","1483131263","1483132663","1483131263","1","12","0","-1","1400","0","16800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283752","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131270","1483131270","1483132788","1483131270","1","12","0","-1","1518","0","18216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283754","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131274","1483131274","1483132889","1483131274","1","12","0","-1","1615","0","19380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283759","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131288","1483131288","1483132835","1483131288","1","12","0","-1","1547","0","18564","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283762","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131311","1483131311","1483132805","1483131311","1","12","0","-1","1494","0","17928","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283764","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131331","1483131331","1483132701","1483131331","1","12","0","-1","1370","0","16440","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283770","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131415","1483131415","1483133195","1483131415","1","12","0","-1","1780","0","21360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283774","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131473","1483131473","1483133152","1483131473","1","12","0","-1","1679","0","20148","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283776","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131486","1483131486","1483133156","1483131486","1","12","0","-1","1670","0","20040","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283798","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131848","1483131848","1483133194","1483131848","1","12","0","-1","1346","0","16152","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283802","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131957","1483131957","1483133600","1483131957","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283806","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131986","1483131986","1483133513","1483131986","1","12","0","-1","1527","0","18324","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283829","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132109","1483132109","1483133891","1483132109","1","12","0","-1","1782","0","21384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283860","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132429","1483132429","1483134098","1483132429","1","12","0","-1","1669","0","20028","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283867","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132476","1483132476","1483133987","1483132476","1","12","0","-1","1511","0","18132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283878","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132534","1483132534","1483134026","1483132534","1","12","0","-1","1492","0","17904","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283882","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132555","1483132555","1483133968","1483132555","1","12","0","-1","1413","0","16956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283890","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132667","1483132667","1483134205","1483132667","1","12","0","-1","1538","0","18456","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283892","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132688","1483132688","1483134343","1483132688","1","12","0","-1","1655","0","19860","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283902","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132716","1483132716","1483134389","1483132716","1","12","0","-1","1673","0","20076","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283904","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132725","1483132725","1483134206","1483132725","1","12","0","-1","1481","0","17772","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283908","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132742","1483132742","1483134205","1483132742","1","12","0","-1","1463","0","17556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283912","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132763","1483132763","1483134259","1483132763","1","12","0","-1","1496","0","17952","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283915","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132793","1483132793","1483134190","1483132793","1","12","0","-1","1397","0","16764","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283941","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133159","1483133159","1483134679","1483133159","1","12","0","-1","1520","0","18240","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283947","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133198","1483133198","1483134555","1483133198","1","12","0","-1","1357","0","16284","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283949","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133202","1483133202","1483134351","1483133202","1","12","0","-1","1149","0","13788","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283951","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133206","1483133206","1483134637","1483133206","1","12","0","-1","1431","0","17172","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283956","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133238","1483133238","1483134563","1483133238","1","12","0","-1","1325","0","15900","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283964","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133355","1483133355","1483134481","1483133355","1","12","0","-1","1126","0","13512","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283968","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133364","1483133364","1483134684","1483133364","1","12","0","-1","1320","0","15840","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283975","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133462","1483133462","1483135149","1483133462","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283999","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133758","1483133758","1483135484","1483133758","1","12","0","-1","1726","0","20712","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284014","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133944","1483133944","1483135463","1483133944","1","12","0","-1","1519","0","18228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284016","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133949","1483133949","1483135736","1483133949","1","12","0","-1","1787","0","21444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284033","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134030","1483134030","1483135826","1483134030","1","12","0","-1","1796","0","21552","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284087","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134410","1483134410","1483136124","1483134410","1","12","0","-1","1714","0","20568","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284095","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134484","1483134484","1483136060","1483134484","1","12","0","-1","1576","0","18912","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284101","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134558","1483134558","1483136127","1483134558","1","12","0","-1","1569","0","18828","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284105","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134571","1483134571","1483136221","1483134571","1","12","0","-1","1650","0","19800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284132","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134777","1483134777","1483136565","1483134777","1","12","0","-1","1788","0","21456","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284134","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134802","1483134802","1483136495","1483134802","1","12","0","-1","1693","0","20316","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284141","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134887","1483134887","1483136483","1483134887","1","12","0","-1","1596","0","19152","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284203","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135744","1483135744","1483137452","1483135744","1","12","0","-1","1708","0","20496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284208","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135817","1483135817","1483137572","1483135817","1","12","0","-1","1755","0","21060","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284215","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135902","1483135902","1483137478","1483135902","1","12","0","-1","1576","0","18912","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284261","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483136211","1483136211","1483137947","1483136211","1","12","0","-1","1736","0","20832","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284280","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483136370","1483136370","1483137799","1483136370","1","12","0","-1","1429","0","17148","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284282","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483136388","1483136388","1483137959","1483136388","1","12","0","-1","1571","0","18852","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284295","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483136498","1483136498","1483138048","1483136498","1","12","0","-1","1550","0","18600","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284345","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137049","1483137049","1483138706","1483137049","1","12","0","-1","1657","0","19884","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284347","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137056","1483137056","1483138736","1483137056","1","12","0","-1","1680","0","20160","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284351","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137072","1483137072","1483138847","1483137072","1","12","0","-1","1775","0","21300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284353","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137097","1483137097","1483138685","1483137097","1","12","0","-1","1588","0","19056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284378","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137346","1483137346","1483138830","1483137346","1","12","0","-1","1484","0","17808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284386","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137483","1483137483","1483138777","1483137483","1","12","0","-1","1294","0","15528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284393","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137578","1483137578","1483139012","1483137578","1","12","0","-1","1434","0","17208","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284407","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137720","1483137720","1483139040","1483137720","1","12","0","-1","1320","0","15840","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284412","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137797","1483137797","1483139454","1483137797","1","12","0","-1","1657","0","19884","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284416","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137813","1483137813","1483139452","1483137813","1","12","0","-1","1639","0","19668","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284428","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137959","1483137959","1483139609","1483137959","1","12","0","-1","1650","0","19800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284444","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138070","1483138070","1483139464","1483138070","1","12","0","-1","1394","0","16728","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284455","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138174","1483138174","1483139673","1483138174","1","12","0","-1","1499","0","17988","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284473","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138325","1483138325","1483139870","1483138325","1","12","0","-1","1545","0","18540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284477","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138378","1483138378","1483140113","1483138378","1","12","0","-1","1735","0","20820","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284479","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138411","1483138411","1483139970","1483138411","1","12","0","-1","1559","0","18708","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284499","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138559","1483138559","1483140184","1483138559","1","12","0","-1","1625","0","19500","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284519","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138691","1483138691","1483140191","1483138691","1","12","0","-1","1500","0","18000","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284531","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138775","1483138775","1483140539","1483138775","1","12","0","-1","1764","0","21168","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284533","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138779","1483138779","1483140236","1483138779","1","12","0","-1","1457","0","17484","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284552","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138889","1483138889","1483140484","1483138889","1","12","0","-1","1595","0","19140","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284563","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139044","1483139044","1483140410","1483139044","1","12","0","-1","1366","0","16392","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284581","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139253","1483139253","1483140706","1483139253","1","12","0","-1","1453","0","17436","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284587","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139313","1483139313","1483140790","1483139313","1","12","0","-1","1477","0","17724","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284590","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139369","1483139369","1483140917","1483139369","1","12","0","-1","1548","0","18576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284594","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139420","1483139420","1483140855","1483139420","1","12","0","-1","1435","0","17220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284601","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139468","1483139468","1483141004","1483139468","1","12","0","-1","1536","0","18432","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284603","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139473","1483139473","1483140853","1483139473","1","12","0","-1","1380","0","16560","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284606","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139516","1483139516","1483140881","1483139516","1","12","0","-1","1365","0","16380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284608","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139532","1483139532","1483141146","1483139532","1","12","0","-1","1614","0","19368","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284610","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139538","1483139538","1483141303","1483139538","1","12","0","-1","1765","0","21180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284612","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139543","1483139543","1483140985","1483139543","1","12","0","-1","1442","0","17304","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284614","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139570","1483139570","1483141082","1483139570","1","12","0","-1","1512","0","18144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284638","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139949","1483139949","1483141671","1483139949","1","12","0","-1","1722","0","20664","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284642","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139976","1483139976","1483141739","1483139976","1","12","0","-1","1763","0","21156","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284729","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140598","1483140598","1483142378","1483140598","1","12","0","-1","1780","0","21360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284739","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140695","1483140695","1483142175","1483140695","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284743","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140713","1483140713","1483142270","1483140713","1","12","0","-1","1557","0","18684","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284746","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140746","1483140746","1483142264","1483140746","1","12","0","-1","1518","0","18216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284752","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140806","1483140806","1483142339","1483140806","1","12","0","-1","1533","0","18396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284787","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141050","1483141050","1483142743","1483141050","1","12","0","-1","1693","0","20316","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284791","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141063","1483141063","1483142613","1483141063","1","12","0","-1","1550","0","18600","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284794","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141086","1483141086","1483142778","1483141086","1","12","0","-1","1692","0","20304","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284815","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141399","1483141399","1483142859","1483141399","1","12","0","-1","1460","0","17520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284820","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141433","1483141433","1483142861","1483141433","1","12","0","-1","1428","0","17136","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284841","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141813","1483141813","1483143480","1483141813","1","12","0","-1","1667","0","20004","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284849","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483142032","1483142032","1483143678","1483142032","1","12","0","-1","1646","0","19752","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284861","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483142150","1483142150","1483143931","1483142150","1","12","0","-1","1781","0","21372","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284869","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483142222","1483142222","1483143981","1483142222","1","12","0","-1","1759","0","21108","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6110882","Robertson","UTC","","Stint, Little","Screwdriver","green-grape","1483121066","1483121066","1483121375","1483121066","1","12","0","-1","309","0","3708","0","0:0","CANCELLED by 284980","12","2147486448Mn","3600","potbrood","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"],["6111541","Robertson","UTC","","Bunting, Reed","Screwdriver","green-grape","1483129553","1483129553","1483131190","1483129553","1","12","0","-1","1637","0","19644","0","0:0","COMPLETED","12","2147486448Mn","3600","potbrood","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6111777","Robertson","UTC","","Warbler, Sardinian","Screwdriver","green-grape","1483130935","1483130935","1483132386","1483130935","1","12","0","-1","1451","0","17412","0","0:0","COMPLETED","12","2147486448Mn","3600","potbrood","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6108322","Robertson","UTC","","Partridge, Red-legged","Screwdriver","green-grape","1483056653","1483056653","1483056887","1483056653","1","16","0","-1","234","0","3744","0","0:0","COMPLETED","16","2147486448Mn","3600","potbrood","Social, Behavioral, and Economic Sciences","Social and Economic Science","Law and Social Sciences"],["6108327","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","green-grape","1483057009","1483057009","1483057050","1483057009","2","24","0","-1","41","0","984","0","0:0","CANCELLED by 333296","24","2147486448Mn","3600","potbrood","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["181610","Phillips","UTC","","Swift, Alpine","Screwdriver","coconut-cream","1483133995","1483133995","1483134352","1483133995","4","32","0","-1","357","0","11424","0","0:0","COMPLETED","32","7000Mn","37800","crumpet","Mathematical and Physical Sciences","Chemistry","Organic and Macromolecular Chemistry"],["181778","Phillips","UTC","","Swift, Alpine","Screwdriver","coconut-cream","1483135368","1483135368","1483135473","1483135368","8","64","0","-1","105","0","6720","0","0:0","COMPLETED","64","7000Mn","37800","crumpet","Mathematical and Physical Sciences","Chemistry","Organic and Macromolecular Chemistry"],["6110473","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118705","1483118707","1483118934","1483118705","1","1","0","-1","227","2","227","0","0:0","CANCELLED by 425535","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6110475","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118717","1483118724","1483119004","1483118717","1","1","0","-1","280","7","280","0","0:0","CANCELLED by 425535","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6108787","Robertson","UTC","","Moorhen","Screwdriver","curry","1483074101","1483074118","1483074878","1483074101","1","1","0","-1","760","17","760","0","0:0","COMPLETED","1","2147486448Mn","19800","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["1009174","Posidriv","UTC","","Sparrow, Savannah","Screwdriver","banana-cream","1483121514","1483121536","1483121627","1483121514","1","1","0","-1","91","22","91","0","0:0","COMPLETED","1","40000Mn","86400","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"],["1004599","Posidriv","UTC","","Sparrow, Savannah","Screwdriver","bavarian-cream","1483060706","1483060708","1483060780","1483060706","1","1","0","-1","72","2","72","0","0:0","COMPLETED","1","40000Mn","86400","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"],["6109629[4]","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","green-grape","1483109925","1483109926","1483111176","1483109926","1","1","0","-1","1250","1","1250","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Biological Sciences","Molecular Biosciences","Cell Biology"],["6109629[1]","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","green-grape","1483109925","1483109926","1483110239","1483109926","1","1","0","-1","313","1","313","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Biological Sciences","Molecular Biosciences","Cell Biology"],["6109629[2]","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","green-grape","1483109925","1483109926","1483110554","1483109926","1","1","0","-1","628","1","628","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Biological Sciences","Molecular Biosciences","Cell Biology"],["6109629[3]","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","green-grape","1483109925","1483109926","1483110865","1483109926","1","1","0","-1","939","1","939","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Biological Sciences","Molecular Biosciences","Cell Biology"],["6109116","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483095768","1483095789","1483095843","1483095768","1","1","0","-1","54","21","54","0","0:0","COMPLETED","1","2000Mn","18000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110898[19]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483121756","1483121757","1483123058","1483121756","1","1","0","-1","1301","1","1301","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["6108553","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","green-grape","1483064928","1483064930","1483065048","1483064928","1","1","0","-1","118","2","118","0","0:0","COMPLETED","1","48000Mn","3600","potbrood","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["968141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055965","1483055966","1483056017","1483055965","1","8","0","-1","51","1","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968149","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055991","1483055992","1483056023","1483055991","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968155","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056006","1483056007","1483056052","1483056006","1","8","0","-1","45","1","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056008","1483056010","1483056051","1483056008","1","8","0","-1","41","2","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056018","1483056019","1483056058","1483056018","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056025","1483056027","1483056077","1483056025","1","8","0","-1","50","2","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056052","1483056055","1483056089","1483056052","1","8","0","-1","34","3","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968173","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056059","1483056061","1483056098","1483056059","1","8","0","-1","37","2","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056071","1483056072","1483056108","1483056071","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056141","1483056142","1483056185","1483056141","1","8","0","-1","43","1","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056186","1483056187","1483056229","1483056186","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056230","1483056231","1483056284","1483056230","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056235","1483056238","1483056292","1483056235","1","8","0","-1","54","3","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056261","1483056262","1483056300","1483056261","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056288","1483056291","1483056331","1483056288","1","8","0","-1","40","3","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056293","1483056295","1483056365","1483056293","1","8","0","-1","70","2","560","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056300","1483056301","1483056364","1483056300","1","8","0","-1","63","1","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056309","1483056311","1483056345","1483056309","1","8","0","-1","34","2","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056312","1483056314","1483056385","1483056312","1","8","0","-1","71","2","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056345","1483056346","1483056379","1483056345","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056364","1483056365","1483056399","1483056364","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056366","1483056368","1483056410","1483056366","1","8","0","-1","42","2","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056410","1483056411","1483056441","1483056410","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056440","1483056441","1483056485","1483056440","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056485","1483056486","1483056536","1483056485","1","8","0","-1","50","1","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056537","1483056538","1483056592","1483056537","1","8","0","-1","54","1","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056539","1483056541","1483056578","1483056539","1","8","0","-1","37","2","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056542","1483056544","1483056589","1483056542","1","8","0","-1","45","2","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056555","1483056556","1483056609","1483056555","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056557","1483056559","1483056598","1483056557","1","8","0","-1","39","2","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056593","1483056595","1483056637","1483056593","1","8","0","-1","42","2","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056599","1483056600","1483056661","1483056599","1","8","0","-1","61","1","488","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056605","1483056606","1483056657","1483056605","1","8","0","-1","51","1","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056610","1483056611","1483056752","1483056610","1","8","0","-1","141","1","1128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056616","1483056617","1483056655","1483056616","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056619","1483056620","1483056693","1483056619","1","8","0","-1","73","1","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056637","1483056638","1483056683","1483056637","1","8","0","-1","45","1","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056662","1483056663","1483056707","1483056662","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056683","1483056684","1483056732","1483056683","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056724","1483056725","1483056764","1483056724","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056734","1483056735","1483056779","1483056734","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056735","1483056736","1483056776","1483056735","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056757","1483056759","1483056827","1483056757","1","8","0","-1","68","2","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056764","1483056765","1483056815","1483056764","1","8","0","-1","50","1","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056801","1483056802","1483056835","1483056801","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056836","1483056838","1483056874","1483056836","1","8","0","-1","36","2","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056875","1483056876","1483056907","1483056875","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056877","1483056878","1483056964","1483056877","1","8","0","-1","86","1","688","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056883","1483056884","1483056944","1483056883","1","8","0","-1","60","1","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056884","1483056887","1483056917","1483056884","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056914","1483056915","1483056972","1483056914","1","8","0","-1","57","1","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056918","1483056919","1483056977","1483056918","1","8","0","-1","58","1","464","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056956","1483056957","1483057004","1483056956","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056964","1483056965","1483057009","1483056964","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056968","1483056969","1483057001","1483056968","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056973","1483056974","1483057048","1483056973","1","8","0","-1","74","1","592","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056975","1483056977","1483057049","1483056975","1","8","0","-1","72","2","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056978","1483056980","1483057127","1483056978","1","8","0","-1","147","2","1176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057001","1483057002","1483057078","1483057001","1","8","0","-1","76","1","608","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057004","1483057005","1483057080","1483057004","1","8","0","-1","75","1","600","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057009","1483057010","1483057047","1483057009","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057049","1483057050","1483057081","1483057049","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057050","1483057051","1483057083","1483057050","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057077","1483057078","1483057117","1483057077","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057079","1483057081","1483057115","1483057079","1","8","0","-1","34","2","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057082","1483057084","1483057142","1483057082","1","8","0","-1","58","2","464","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057144","1483057146","1483057185","1483057144","1","8","0","-1","39","2","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057221","1483057222","1483057252","1483057221","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968556","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057283","1483057284","1483057333","1483057283","1","8","0","-1","49","1","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057298","1483057299","1483057345","1483057298","1","8","0","-1","46","1","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057299","1483057300","1483057348","1483057299","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057303","1483057304","1483057345","1483057303","1","8","0","-1","41","1","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057313","1483057315","1483057388","1483057313","1","8","0","-1","73","2","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057321","1483057322","1483057394","1483057321","1","8","0","-1","72","1","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057333","1483057335","1483057374","1483057333","1","8","0","-1","39","2","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057349","1483057350","1483057404","1483057349","1","8","0","-1","54","1","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057377","1483057378","1483057415","1483057377","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968598","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057395","1483057396","1483057438","1483057395","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057402","1483057403","1483057437","1483057402","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057404","1483057406","1483057439","1483057404","1","8","0","-1","33","2","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057439","1483057441","1483057512","1483057439","1","8","0","-1","71","2","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057443","1483057444","1483057515","1483057443","1","8","0","-1","71","1","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057462","1483057463","1483057513","1483057462","1","8","0","-1","50","1","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057476","1483057477","1483057554","1483057476","1","8","0","-1","77","1","616","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057504","1483057505","1483057581","1483057504","1","8","0","-1","76","1","608","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057513","1483057515","1483057575","1483057513","1","8","0","-1","60","2","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057597","1483057600","1483057655","1483057597","1","8","0","-1","55","3","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057631","1483057633","1483057686","1483057631","1","8","0","-1","53","2","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057648","1483057649","1483057704","1483057648","1","8","0","-1","55","1","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057655","1483057656","1483057719","1483057655","1","8","0","-1","63","1","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057658","1483057659","1483057841","1483057658","1","8","0","-1","182","1","1456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057667","1483057669","1483057730","1483057667","1","8","0","-1","61","2","488","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057683","1483057684","1483057776","1483057683","1","8","0","-1","92","1","736","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057686","1483057687","1483057735","1483057686","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057704","1483057705","1483057742","1483057704","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057719","1483057720","1483057767","1483057719","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057755","1483057756","1483057793","1483057755","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057766","1483057767","1483057799","1483057766","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057768","1483057770","1483057822","1483057768","1","8","0","-1","52","2","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057823","1483057825","1483057857","1483057823","1","8","0","-1","32","2","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057828","1483057829","1483057903","1483057828","1","8","0","-1","74","1","592","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057842","1483057843","1483057914","1483057842","1","8","0","-1","71","1","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057857","1483057860","1483057890","1483057857","1","8","0","-1","30","3","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057914","1483057915","1483057952","1483057914","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057929","1483057931","1483057970","1483057929","1","8","0","-1","39","2","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057938","1483057939","1483057970","1483057938","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057941","1483057942","1483057972","1483057941","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057951","1483057952","1483057988","1483057951","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057953","1483057955","1483058024","1483057953","1","8","0","-1","69","2","552","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057970","1483057971","1483058028","1483057970","1","8","0","-1","57","1","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058020","1483058023","1483058057","1483058020","1","8","0","-1","34","3","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058069","1483058070","1483058191","1483058069","1","8","0","-1","121","1","968","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058081","1483058082","1483058115","1483058081","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058085","1483058086","1483058117","1483058085","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058093","1483058095","1483058133","1483058093","1","8","0","-1","38","2","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058094","1483058095","1483058129","1483058094","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058097","1483058098","1483058134","1483058097","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058130","1483058131","1483058166","1483058130","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968821","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058133","1483058134","1483058181","1483058133","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058166","1483058167","1483058208","1483058166","1","8","0","-1","41","1","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058178","1483058180","1483058217","1483058178","1","8","0","-1","37","2","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058181","1483058183","1483058218","1483058181","1","8","0","-1","35","2","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058192","1483058193","1483058246","1483058192","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058199","1483058201","1483058261","1483058199","1","8","0","-1","60","2","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058217","1483058218","1483058283","1483058217","1","8","0","-1","65","1","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058219","1483058220","1483058282","1483058219","1","8","0","-1","62","1","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058246","1483058247","1483058278","1483058246","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058284","1483058286","1483058334","1483058284","1","8","0","-1","48","2","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058337","1483058338","1483058385","1483058337","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058360","1483058361","1483058489","1483058360","1","8","0","-1","128","1","1024","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058363","1483058364","1483058399","1483058363","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058398","1483058399","1483058459","1483058398","1","8","0","-1","60","1","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058399","1483058402","1483058432","1483058399","1","8","0","-1","30","3","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058418","1483058419","1483058461","1483058418","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058431","1483058432","1483058462","1483058431","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968910","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058433","1483058435","1483058473","1483058433","1","8","0","-1","38","2","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058460","1483058461","1483058493","1483058460","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058461","1483058462","1483058504","1483058461","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058463","1483058464","1483058529","1483058463","1","8","0","-1","65","1","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968922","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058480","1483058481","1483058516","1483058480","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058504","1483058505","1483058554","1483058504","1","8","0","-1","49","1","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058517","1483058518","1483058556","1483058517","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058518","1483058520","1483058622","1483058518","1","8","0","-1","102","2","816","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058530","1483058531","1483058578","1483058530","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968942","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058555","1483058556","1483058607","1483058555","1","8","0","-1","51","1","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058557","1483058558","1483058641","1483058557","1","8","0","-1","83","1","664","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058558","1483058559","1483058629","1483058558","1","8","0","-1","70","1","560","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058564","1483058565","1483058635","1483058564","1","8","0","-1","70","1","560","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058635","1483058636","1483058710","1483058635","1","8","0","-1","74","1","592","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968978","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058685","1483058686","1483058769","1483058685","1","8","0","-1","83","1","664","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968980","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058688","1483058689","1483058771","1483058688","1","8","0","-1","82","1","656","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058691","1483058692","1483058782","1483058691","1","8","0","-1","90","1","720","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058709","1483058710","1483058778","1483058709","1","8","0","-1","68","1","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058710","1483058711","1483058807","1483058710","1","8","0","-1","96","1","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968994","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058771","1483058773","1483058827","1483058771","1","8","0","-1","54","2","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969000","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058808","1483058809","1483058844","1483058808","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058826","1483058827","1483058860","1483058826","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058827","1483058830","1483058902","1483058827","1","8","0","-1","72","3","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058832","1483058833","1483058897","1483058832","1","8","0","-1","64","1","512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058838","1483058839","1483058910","1483058838","1","8","0","-1","71","1","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058844","1483058845","1483058887","1483058844","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058846","1483058848","1483058913","1483058846","1","8","0","-1","65","2","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058898","1483058900","1483058958","1483058898","1","8","0","-1","58","2","464","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058903","1483058904","1483058978","1483058903","1","8","0","-1","74","1","592","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058914","1483058915","1483058963","1483058914","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058922","1483058923","1483058988","1483058922","1","8","0","-1","65","1","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058958","1483058959","1483059100","1483058958","1","8","0","-1","141","1","1128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058963","1483058964","1483059100","1483058963","1","8","0","-1","136","1","1088","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058978","1483058979","1483059107","1483058978","1","8","0","-1","128","1","1024","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058988","1483058989","1483059109","1483058988","1","8","0","-1","120","1","960","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059071","1483059072","1483059211","1483059071","1","8","0","-1","139","1","1112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059100","1483059101","1483059235","1483059100","1","8","0","-1","134","1","1072","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059109","1483059110","1483059226","1483059109","1","8","0","-1","116","1","928","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059238","1483059239","1483059405","1483059238","1","8","0","-1","166","1","1328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059293","1483059295","1483059343","1483059293","1","8","0","-1","48","2","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059343","1483059344","1483059393","1483059343","1","8","0","-1","49","1","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059378","1483059379","1483059419","1483059378","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059385","1483059386","1483059440","1483059385","1","8","0","-1","54","1","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059393","1483059394","1483059447","1483059393","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059396","1483059397","1483059452","1483059396","1","8","0","-1","55","1","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059406","1483059407","1483059456","1483059406","1","8","0","-1","49","1","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059420","1483059421","1483059468","1483059420","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059441","1483059442","1483059489","1483059441","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059448","1483059449","1483059497","1483059448","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059453","1483059454","1483059494","1483059453","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059457","1483059458","1483059500","1483059457","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059468","1483059469","1483059522","1483059468","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059490","1483059491","1483059633","1483059490","1","8","0","-1","142","1","1136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059523","1483059524","1483059564","1483059523","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059539","1483059540","1483059612","1483059539","1","8","0","-1","72","1","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059563","1483059564","1483059637","1483059563","1","8","0","-1","73","1","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059565","1483059567","1483059606","1483059565","1","8","0","-1","39","2","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059597","1483059598","1483059676","1483059597","1","8","0","-1","78","1","624","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059603","1483059604","1483059680","1483059603","1","8","0","-1","76","1","608","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059678","1483059680","1483059776","1483059678","1","8","0","-1","96","2","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059685","1483059686","1483059854","1483059685","1","8","0","-1","168","1","1344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059705","1483059706","1483059761","1483059705","1","8","0","-1","55","1","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059707","1483059709","1483059755","1483059707","1","8","0","-1","46","2","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059726","1483059727","1483059794","1483059726","1","8","0","-1","67","1","536","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059755","1483059756","1483059826","1483059755","1","8","0","-1","70","1","560","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059761","1483059762","1483059815","1483059761","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059776","1483059777","1483059819","1483059776","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059794","1483059795","1483059830","1483059794","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059815","1483059816","1483059891","1483059815","1","8","0","-1","75","1","600","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059817","1483059819","1483059894","1483059817","1","8","0","-1","75","2","600","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059820","1483059822","1483059882","1483059820","1","8","0","-1","60","2","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059831","1483059832","1483059893","1483059831","1","8","0","-1","61","1","488","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059892","1483059893","1483059973","1483059892","1","8","0","-1","80","1","640","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059893","1483059894","1483059985","1483059893","1","8","0","-1","91","1","728","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969220","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059901","1483059902","1483059998","1483059901","1","8","0","-1","96","1","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059974","1483059975","1483060014","1483059974","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059999","1483060002","1483060032","1483059999","1","8","0","-1","30","3","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060000","1483060002","1483060048","1483060000","1","8","0","-1","46","2","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060014","1483060015","1483060045","1483060014","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060049","1483060051","1483060098","1483060049","1","8","0","-1","47","2","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060061","1483060063","1483060095","1483060061","1","8","0","-1","32","2","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060066","1483060067","1483060139","1483060066","1","8","0","-1","72","1","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060077","1483060078","1483060125","1483060077","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060095","1483060096","1483060175","1483060095","1","8","0","-1","79","1","632","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060098","1483060099","1483060129","1483060098","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060121","1483060122","1483060161","1483060121","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060126","1483060127","1483060171","1483060126","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060137","1483060138","1483060182","1483060137","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060140","1483060141","1483060172","1483060140","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060155","1483060156","1483060191","1483060155","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060191","1483060192","1483060225","1483060191","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060209","1483060210","1483060248","1483060209","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060215","1483060216","1483060281","1483060215","1","8","0","-1","65","1","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060218","1483060219","1483060287","1483060218","1","8","0","-1","68","1","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060223","1483060224","1483060296","1483060223","1","8","0","-1","72","1","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060224","1483060225","1483060367","1483060224","1","8","0","-1","142","1","1136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969323","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060316","1483060317","1483060351","1483060316","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060318","1483060320","1483060365","1483060318","1","8","0","-1","45","2","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969327","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060331","1483060332","1483060384","1483060331","1","8","0","-1","52","1","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969329","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060333","1483060335","1483060369","1483060333","1","8","0","-1","34","2","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969331","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060338","1483060339","1483060372","1483060338","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969343","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060372","1483060375","1483060424","1483060372","1","8","0","-1","49","3","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060384","1483060385","1483060419","1483060384","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060393","1483060394","1483060470","1483060393","1","8","0","-1","76","1","608","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060425","1483060426","1483060469","1483060425","1","8","0","-1","43","1","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060457","1483060459","1483060509","1483060457","1","8","0","-1","50","2","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060470","1483060472","1483060513","1483060470","1","8","0","-1","41","2","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060471","1483060472","1483060527","1483060471","1","8","0","-1","55","1","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060491","1483060492","1483060551","1483060491","1","8","0","-1","59","1","472","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969380","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060510","1483060511","1483060543","1483060510","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060514","1483060515","1483060548","1483060514","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969386","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060543","1483060544","1483060591","1483060543","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969388","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060544","1483060546","1483060595","1483060544","1","8","0","-1","49","2","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060549","1483060550","1483060594","1483060549","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060554","1483060555","1483060695","1483060554","1","8","0","-1","140","1","1120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060585","1483060586","1483060637","1483060585","1","8","0","-1","51","1","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060592","1483060593","1483060640","1483060592","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060595","1483060596","1483060628","1483060595","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969406","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060620","1483060621","1483060669","1483060620","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060628","1483060629","1483060664","1483060628","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060641","1483060642","1483060673","1483060641","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060674","1483060675","1483060708","1483060674","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060695","1483060696","1483060729","1483060695","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060698","1483060699","1483060730","1483060698","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060708","1483060709","1483060755","1483060708","1","8","0","-1","46","1","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060713","1483060714","1483060828","1483060713","1","8","0","-1","114","1","912","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060730","1483060731","1483060778","1483060730","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060775","1483060776","1483060813","1483060775","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060778","1483060779","1483060809","1483060778","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060833","1483060834","1483060887","1483060833","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060859","1483060862","1483060895","1483060859","1","8","0","-1","33","3","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060863","1483060865","1483060899","1483060863","1","8","0","-1","34","2","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060870","1483060871","1483060904","1483060870","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060877","1483060878","1483060915","1483060877","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060887","1483060888","1483060921","1483060887","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060900","1483060901","1483060936","1483060900","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060915","1483060916","1483060950","1483060915","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060922","1483060923","1483060954","1483060922","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060924","1483060926","1483060961","1483060924","1","8","0","-1","35","2","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060926","1483060929","1483060968","1483060926","1","8","0","-1","39","3","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060937","1483060938","1483060974","1483060937","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060969","1483060970","1483061011","1483060969","1","8","0","-1","41","1","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060981","1483060982","1483061137","1483060981","1","8","0","-1","155","1","1240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060997","1483060998","1483061066","1483060997","1","8","0","-1","68","1","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061014","1483061016","1483061048","1483061014","1","8","0","-1","32","2","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061048","1483061049","1483061080","1483061048","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061053","1483061054","1483061085","1483061053","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061066","1483061067","1483061102","1483061066","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061085","1483061086","1483061130","1483061085","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061093","1483061095","1483061157","1483061093","1","8","0","-1","62","2","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061120","1483061121","1483061155","1483061120","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061153","1483061155","1483061235","1483061153","1","8","0","-1","80","2","640","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061156","1483061157","1483061220","1483061156","1","8","0","-1","63","1","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061177","1483061179","1483061212","1483061177","1","8","0","-1","33","2","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061213","1483061215","1483061247","1483061213","1","8","0","-1","32","2","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061222","1483061224","1483061258","1483061222","1","8","0","-1","34","2","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061236","1483061237","1483061282","1483061236","1","8","0","-1","45","1","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061259","1483061260","1483061290","1483061259","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061271","1483061272","1483061309","1483061271","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061277","1483061278","1483061318","1483061277","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061283","1483061284","1483061319","1483061283","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061290","1483061291","1483061332","1483061290","1","8","0","-1","41","1","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061291","1483061294","1483061440","1483061291","1","8","0","-1","146","3","1168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061310","1483061311","1483061374","1483061310","1","8","0","-1","63","1","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061320","1483061322","1483061352","1483061320","1","8","0","-1","30","2","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061333","1483061335","1483061365","1483061333","1","8","0","-1","30","2","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061353","1483061354","1483061400","1483061353","1","8","0","-1","46","1","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061365","1483061366","1483061414","1483061365","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061374","1483061375","1483061405","1483061374","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061385","1483061386","1483061417","1483061385","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061406","1483061407","1483061468","1483061406","1","8","0","-1","61","1","488","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061441","1483061442","1483061481","1483061441","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061444","1483061445","1483061524","1483061444","1","8","0","-1","79","1","632","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061481","1483061482","1483061529","1483061481","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061511","1483061512","1483061550","1483061511","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061585","1483061586","1483061640","1483061585","1","8","0","-1","54","1","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061593","1483061594","1483061658","1483061593","1","8","0","-1","64","1","512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061615","1483061616","1483061681","1483061615","1","8","0","-1","65","1","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061616","1483061619","1483061808","1483061616","1","8","0","-1","189","3","1512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061641","1483061642","1483061759","1483061641","1","8","0","-1","117","1","936","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969725","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061651","1483061652","1483061685","1483061651","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969733","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061686","1483061687","1483061730","1483061686","1","8","0","-1","43","1","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969735","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061687","1483061690","1483061725","1483061687","1","8","0","-1","35","3","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969739","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061710","1483061711","1483061743","1483061710","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061727","1483061730","1483061780","1483061727","1","8","0","-1","50","3","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061781","1483061783","1483061823","1483061781","1","8","0","-1","40","2","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061808","1483061809","1483061850","1483061808","1","8","0","-1","41","1","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061812","1483061815","1483061849","1483061812","1","8","0","-1","34","3","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061825","1483061827","1483061858","1483061825","1","8","0","-1","31","2","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969779","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061849","1483061850","1483061888","1483061849","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061850","1483061851","1483061888","1483061850","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061858","1483061860","1483061891","1483061858","1","8","0","-1","31","2","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061895","1483061897","1483061933","1483061895","1","8","0","-1","36","2","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061917","1483061918","1483061954","1483061917","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061919","1483061920","1483061960","1483061919","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061920","1483061921","1483061954","1483061920","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061933","1483061935","1483061980","1483061933","1","8","0","-1","45","2","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969824","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061986","1483061987","1483062020","1483061986","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061999","1483062000","1483062036","1483061999","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062060","1483062061","1483062104","1483062060","1","8","0","-1","43","1","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062103","1483062104","1483062135","1483062103","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062107","1483062108","1483062146","1483062107","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062128","1483062129","1483062168","1483062128","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062147","1483062150","1483062201","1483062147","1","8","0","-1","51","3","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062157","1483062158","1483062194","1483062157","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062177","1483062178","1483062210","1483062177","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062210","1483062211","1483062342","1483062210","1","8","0","-1","131","1","1048","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062229","1483062230","1483062269","1483062229","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969912","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062262","1483062263","1483062296","1483062262","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062270","1483062272","1483062308","1483062270","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062328","1483062329","1483062367","1483062328","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969942","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062330","1483062332","1483062368","1483062330","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062354","1483062355","1483062426","1483062354","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062367","1483062368","1483062405","1483062367","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969952","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062369","1483062371","1483062402","1483062369","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062385","1483062388","1483062422","1483062385","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062389","1483062391","1483062457","1483062389","1","8","0","-1","66","2","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062423","1483062424","1483062488","1483062423","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062443","1483062444","1483062492","1483062443","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062457","1483062458","1483062506","1483062457","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969984","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062488","1483062489","1483062566","1483062488","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062492","1483062493","1483062567","1483062492","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062496","1483062497","1483062539","1483062496","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062498","1483062500","1483062639","1483062498","1","8","0","-1","139","2","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969992","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062507","1483062508","1483062565","1483062507","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062539","1483062540","1483062582","1483062539","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062559","1483062560","1483062603","1483062559","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062566","1483062567","1483062605","1483062566","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062568","1483062570","1483062633","1483062568","1","8","0","-1","63","2","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062606","1483062607","1483062648","1483062606","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062608","1483062610","1483062687","1483062608","1","8","0","-1","77","2","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062641","1483062643","1483062675","1483062641","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970033","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062676","1483062678","1483062774","1483062676","1","8","0","-1","96","2","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970039","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062688","1483062689","1483062741","1483062688","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970043","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062697","1483062698","1483062743","1483062697","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970047","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062708","1483062709","1483062754","1483062708","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970051","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062741","1483062742","1483062785","1483062741","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970053","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062744","1483062745","1483062807","1483062744","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970055","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062755","1483062756","1483062814","1483062755","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062768","1483062769","1483062820","1483062768","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062775","1483062776","1483062851","1483062775","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062785","1483062786","1483062820","1483062785","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062807","1483062808","1483062849","1483062807","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062820","1483062821","1483062875","1483062820","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062843","1483062844","1483062894","1483062843","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062849","1483062850","1483063019","1483062849","1","8","0","-1","169","1","1352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062850","1483062851","1483062907","1483062850","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062851","1483062854","1483062954","1483062851","1","8","0","-1","100","3","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062868","1483062869","1483062967","1483062868","1","8","0","-1","98","1","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062875","1483062876","1483063018","1483062875","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062908","1483062909","1483063051","1483062908","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062967","1483062968","1483063094","1483062967","1","8","0","-1","126","1","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063018","1483063019","1483063167","1483063018","1","8","0","-1","148","1","1184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063019","1483063022","1483063175","1483063019","1","8","0","-1","153","3","1224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063035","1483063037","1483063183","1483063035","1","8","0","-1","146","2","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063176","1483063177","1483063357","1483063176","1","8","0","-1","180","1","1440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063184","1483063185","1483063353","1483063184","1","8","0","-1","168","1","1344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063213","1483063214","1483063356","1483063213","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063307","1483063308","1483063359","1483063307","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970149","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063358","1483063360","1483063410","1483063358","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063407","1483063408","1483063458","1483063407","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063417","1483063419","1483063468","1483063417","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063440","1483063441","1483063502","1483063440","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970171","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063459","1483063461","1483063552","1483063459","1","8","0","-1","91","2","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063470","1483063472","1483063546","1483063470","1","8","0","-1","74","2","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063553","1483063555","1483063599","1483063553","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063577","1483063578","1483063651","1483063577","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063587","1483063588","1483063663","1483063587","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063599","1483063600","1483063641","1483063599","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970199","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063600","1483063603","1483063647","1483063600","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970201","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063612","1483063615","1483063652","1483063612","1","8","0","-1","37","3","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063626","1483063628","1483063700","1483063626","1","8","0","-1","72","2","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063641","1483063642","1483063704","1483063641","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063647","1483063648","1483063690","1483063647","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063651","1483063652","1483063709","1483063651","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063653","1483063655","1483063712","1483063653","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063664","1483063665","1483063765","1483063664","1","8","0","-1","100","1","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063691","1483063692","1483063797","1483063691","1","8","0","-1","105","1","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970227","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063704","1483063705","1483063752","1483063704","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063713","1483063714","1483063761","1483063713","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063752","1483063753","1483063815","1483063752","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063762","1483063763","1483063812","1483063762","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063778","1483063779","1483063844","1483063778","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063812","1483063813","1483063852","1483063812","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063845","1483063847","1483063917","1483063845","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063852","1483063853","1483063935","1483063852","1","8","0","-1","82","1","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063853","1483063854","1483064027","1483063853","1","8","0","-1","173","1","1384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063920","1483063921","1483063951","1483063920","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063936","1483063938","1483063970","1483063936","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063958","1483063959","1483064009","1483063958","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063971","1483063972","1483064022","1483063971","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063973","1483063975","1483064014","1483063973","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064021","1483064022","1483064056","1483064021","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064023","1483064025","1483064057","1483064023","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064025","1483064027","1483064077","1483064025","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064027","1483064028","1483064160","1483064027","1","8","0","-1","132","1","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064032","1483064035","1483064083","1483064032","1","8","0","-1","48","3","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970323","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064077","1483064078","1483064110","1483064077","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064083","1483064084","1483064120","1483064083","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970327","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064091","1483064092","1483064122","1483064091","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970331","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064101","1483064102","1483064146","1483064101","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970337","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064120","1483064121","1483064157","1483064120","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064147","1483064150","1483064181","1483064147","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064157","1483064158","1483064198","1483064157","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064169","1483064170","1483064234","1483064169","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064173","1483064174","1483064210","1483064173","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064213","1483064215","1483064248","1483064213","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064263","1483064265","1483064297","1483064263","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064315","1483064316","1483064360","1483064315","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970402","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064321","1483064323","1483064437","1483064321","1","8","0","-1","114","2","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064328","1483064329","1483064367","1483064328","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064339","1483064340","1483064370","1483064339","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970410","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064360","1483064361","1483064398","1483064360","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970412","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064361","1483064364","1483064406","1483064361","1","8","0","-1","42","3","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970422","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064399","1483064401","1483064440","1483064399","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970424","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064401","1483064402","1483064452","1483064401","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970446","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064460","1483064461","1483064501","1483064460","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064464","1483064465","1483064595","1483064464","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064501","1483064502","1483064532","1483064501","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064505","1483064506","1483064540","1483064505","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064510","1483064511","1483064548","1483064510","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064533","1483064535","1483064581","1483064533","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970490","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064584","1483064585","1483064626","1483064584","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970494","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064596","1483064597","1483064683","1483064596","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064598","1483064600","1483064640","1483064598","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064600","1483064603","1483064648","1483064600","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064609","1483064610","1483064643","1483064609","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064649","1483064650","1483064691","1483064649","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064656","1483064657","1483064698","1483064656","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064658","1483064660","1483064691","1483064658","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064691","1483064692","1483064731","1483064691","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064698","1483064699","1483064746","1483064698","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064703","1483064704","1483064822","1483064703","1","8","0","-1","118","1","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064707","1483064708","1483064738","1483064707","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064709","1483064711","1483064752","1483064709","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064738","1483064739","1483064779","1483064738","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064753","1483064755","1483064786","1483064753","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064756","1483064758","1483064800","1483064756","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064774","1483064775","1483064829","1483064774","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064787","1483064788","1483064830","1483064787","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064831","1483064833","1483064877","1483064831","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064839","1483064840","1483064889","1483064839","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064842","1483064843","1483064889","1483064842","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064844","1483064846","1483064956","1483064844","1","8","0","-1","110","2","880","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064865","1483064866","1483064907","1483064865","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064877","1483064878","1483064917","1483064877","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064966","1483064967","1483065026","1483064966","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064968","1483064970","1483065078","1483064968","1","8","0","-1","108","2","864","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064989","1483064990","1483065043","1483064989","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064991","1483064992","1483065034","1483064991","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065010","1483065011","1483065054","1483065010","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065018","1483065019","1483065064","1483065018","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065064","1483065066","1483065113","1483065064","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065070","1483065071","1483065114","1483065070","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065093","1483065094","1483065129","1483065093","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065106","1483065107","1483065152","1483065106","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065107","1483065110","1483065246","1483065107","1","8","0","-1","136","3","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970677","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065114","1483065115","1483065168","1483065114","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065130","1483065131","1483065168","1483065130","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065144","1483065145","1483065177","1483065144","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065152","1483065153","1483065185","1483065152","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065177","1483065178","1483065233","1483065177","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065181","1483065182","1483065217","1483065181","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065186","1483065187","1483065220","1483065186","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065192","1483065193","1483065227","1483065192","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065233","1483065235","1483065279","1483065233","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065243","1483065244","1483065297","1483065243","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065246","1483065247","1483065285","1483065246","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065298","1483065300","1483065357","1483065298","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065358","1483065359","1483065428","1483065358","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065362","1483065363","1483065432","1483065362","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065363","1483065366","1483065426","1483065363","1","8","0","-1","60","3","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065372","1483065373","1483065434","1483065372","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065383","1483065384","1483065447","1483065383","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065422","1483065423","1483065477","1483065422","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065427","1483065428","1483065482","1483065427","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065429","1483065431","1483065487","1483065429","1","8","0","-1","56","2","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065431","1483065433","1483065517","1483065431","1","8","0","-1","84","2","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065434","1483065437","1483065534","1483065434","1","8","0","-1","97","3","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065448","1483065449","1483065623","1483065448","1","8","0","-1","174","1","1392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065477","1483065478","1483065583","1483065477","1","8","0","-1","105","1","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065483","1483065484","1483065589","1483065483","1","8","0","-1","105","1","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065534","1483065535","1483065566","1483065534","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065568","1483065570","1483065618","1483065568","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065590","1483065591","1483065624","1483065590","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065624","1483065627","1483065676","1483065624","1","8","0","-1","49","3","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065641","1483065643","1483065722","1483065641","1","8","0","-1","79","2","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065654","1483065655","1483065696","1483065654","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065697","1483065698","1483065745","1483065697","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065706","1483065708","1483065752","1483065706","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065753","1483065754","1483065809","1483065753","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065756","1483065757","1483065881","1483065756","1","8","0","-1","124","1","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065767","1483065768","1483065802","1483065767","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065768","1483065769","1483065817","1483065768","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065823","1483065824","1483065866","1483065823","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065854","1483065855","1483065888","1483065854","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065881","1483065882","1483065917","1483065881","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065883","1483065885","1483065941","1483065883","1","8","0","-1","56","2","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065889","1483065891","1483066008","1483065889","1","8","0","-1","117","2","936","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065896","1483065897","1483065945","1483065896","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065902","1483065903","1483065943","1483065902","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970912","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065941","1483065942","1483065978","1483065941","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970922","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065966","1483065967","1483066010","1483065966","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066014","1483066015","1483066052","1483066014","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970942","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066016","1483066018","1483066050","1483066016","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066022","1483066024","1483066108","1483066022","1","8","0","-1","84","2","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066051","1483066052","1483066094","1483066051","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066095","1483066096","1483066140","1483066095","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066096","1483066099","1483066129","1483066096","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066096","1483066099","1483066143","1483066096","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066130","1483066131","1483066166","1483066130","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970992","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066141","1483066142","1483066177","1483066141","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970994","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066143","1483066145","1483066189","1483066143","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971000","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066167","1483066168","1483066225","1483066167","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066178","1483066179","1483066214","1483066178","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066180","1483066181","1483066220","1483066180","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971010","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066194","1483066195","1483066230","1483066194","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066209","1483066210","1483066261","1483066209","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971016","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066216","1483066218","1483066256","1483066216","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066256","1483066257","1483066290","1483066256","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066257","1483066259","1483066291","1483066257","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066260","1483066261","1483066301","1483066260","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066261","1483066262","1483066331","1483066261","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066263","1483066265","1483066411","1483066263","1","8","0","-1","146","2","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066279","1483066280","1483066329","1483066279","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066332","1483066333","1483066396","1483066332","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066363","1483066364","1483066406","1483066363","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066373","1483066374","1483066412","1483066373","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066413","1483066415","1483066475","1483066413","1","8","0","-1","60","2","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066422","1483066423","1483066583","1483066422","1","8","0","-1","160","1","1280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066433","1483066435","1483066489","1483066433","1","8","0","-1","54","2","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066466","1483066467","1483066504","1483066466","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066471","1483066472","1483066505","1483066471","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066476","1483066477","1483066527","1483066476","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066490","1483066491","1483066533","1483066490","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066504","1483066505","1483066544","1483066504","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066506","1483066508","1483066576","1483066506","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066522","1483066523","1483066591","1483066522","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066528","1483066529","1483066578","1483066528","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066533","1483066534","1483066575","1483066533","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066544","1483066545","1483066578","1483066544","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066579","1483066580","1483066652","1483066579","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066591","1483066592","1483066649","1483066591","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066607","1483066608","1483066653","1483066607","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066614","1483066615","1483066692","1483066614","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066653","1483066656","1483066785","1483066653","1","8","0","-1","129","3","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066663","1483066664","1483066786","1483066663","1","8","0","-1","122","1","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066699","1483066701","1483066836","1483066699","1","8","0","-1","135","2","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066786","1483066787","1483066864","1483066786","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066787","1483066788","1483066901","1483066787","1","8","0","-1","113","1","904","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066885","1483066886","1483067010","1483066885","1","8","0","-1","124","1","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066922","1483066930","1483067010","1483066922","1","8","0","-1","80","8","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067005","1483067010","1483067110","1483067005","1","8","0","-1","100","5","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067094","1483067110","1483067178","1483067094","1","8","0","-1","68","16","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067197","1483067203","1483067281","1483067197","1","8","0","-1","78","6","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067307","1483067314","1483067377","1483067307","1","8","0","-1","63","7","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067327","1483067331","1483067380","1483067327","1","8","0","-1","49","4","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067336","1483067337","1483067424","1483067336","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067365","1483067369","1483067448","1483067365","1","8","0","-1","79","4","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067405","1483067406","1483067477","1483067405","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067422","1483067424","1483067499","1483067422","1","8","0","-1","75","2","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067453","1483067461","1483067549","1483067453","1","8","0","-1","88","8","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067524","1483067527","1483067592","1483067524","1","8","0","-1","65","3","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067544","1483067549","1483067607","1483067544","1","8","0","-1","58","5","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067591","1483067592","1483067633","1483067591","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067603","1483067606","1483067646","1483067603","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067621","1483067624","1483067686","1483067621","1","8","0","-1","62","3","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067622","1483067624","1483067690","1483067622","1","8","0","-1","66","2","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067624","1483067629","1483067676","1483067624","1","8","0","-1","47","5","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067655","1483067662","1483067694","1483067655","1","8","0","-1","32","7","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067663","1483067665","1483067697","1483067663","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067686","1483067689","1483067750","1483067686","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067690","1483067691","1483067760","1483067690","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067750","1483067751","1483067810","1483067750","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067754","1483067756","1483067803","1483067754","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067762","1483067764","1483067854","1483067762","1","8","0","-1","90","2","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067809","1483067810","1483067903","1483067809","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067855","1483067856","1483067896","1483067855","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067903","1483067904","1483067937","1483067903","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971341","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067920","1483067921","1483067957","1483067920","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971343","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067922","1483067923","1483067953","1483067922","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067928","1483067929","1483067964","1483067928","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067943","1483067944","1483067991","1483067943","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068020","1483068022","1483068060","1483068020","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068034","1483068035","1483068066","1483068034","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068041","1483068042","1483068163","1483068041","1","8","0","-1","121","1","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068099","1483068100","1483068132","1483068099","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068188","1483068189","1483068222","1483068188","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068193","1483068194","1483068236","1483068193","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068223","1483068226","1483068283","1483068223","1","8","0","-1","57","3","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068227","1483068228","1483068274","1483068227","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068228","1483068229","1483068351","1483068228","1","8","0","-1","122","1","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068237","1483068238","1483068280","1483068237","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068244","1483068245","1483068290","1483068244","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068247","1483068248","1483068306","1483068247","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068284","1483068285","1483068323","1483068284","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068307","1483068308","1483068338","1483068307","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971490","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068309","1483068311","1483068344","1483068309","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068338","1483068339","1483068377","1483068338","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068344","1483068345","1483068380","1483068344","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068346","1483068348","1483068439","1483068346","1","8","0","-1","91","2","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068351","1483068352","1483068386","1483068351","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971512","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068354","1483068356","1483068390","1483068354","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068425","1483068426","1483068484","1483068425","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068440","1483068441","1483068472","1483068440","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068510","1483068511","1483068573","1483068510","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068523","1483068524","1483068585","1483068523","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971585","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068535","1483068536","1483068577","1483068535","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068574","1483068575","1483068620","1483068574","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068595","1483068596","1483068630","1483068595","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971605","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068602","1483068603","1483068648","1483068602","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068615","1483068616","1483068659","1483068615","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068621","1483068622","1483068733","1483068621","1","8","0","-1","111","1","888","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068630","1483068631","1483068664","1483068630","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068648","1483068651","1483068697","1483068648","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068694","1483068695","1483068729","1483068694","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068706","1483068707","1483068758","1483068706","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068729","1483068730","1483068769","1483068729","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068734","1483068736","1483068781","1483068734","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068780","1483068781","1483068828","1483068780","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068781","1483068782","1483068821","1483068781","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068821","1483068822","1483068866","1483068821","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068828","1483068829","1483068877","1483068828","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068890","1483068891","1483068988","1483068890","1","8","0","-1","97","1","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068899","1483068900","1483068978","1483068899","1","8","0","-1","78","1","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068954","1483068956","1483068987","1483068954","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068987","1483068988","1483069105","1483068987","1","8","0","-1","117","1","936","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068988","1483068991","1483069024","1483068988","1","8","0","-1","33","3","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069006","1483069007","1483069043","1483069006","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069044","1483069045","1483069093","1483069044","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069057","1483069058","1483069165","1483069057","1","8","0","-1","107","1","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069058","1483069061","1483069117","1483069058","1","8","0","-1","56","3","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971761","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069118","1483069119","1483069150","1483069118","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069151","1483069153","1483069253","1483069151","1","8","0","-1","100","2","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069166","1483069169","1483069208","1483069166","1","8","0","-1","39","3","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069177","1483069178","1483069220","1483069177","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069195","1483069196","1483069310","1483069195","1","8","0","-1","114","1","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069222","1483069224","1483069262","1483069222","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069225","1483069227","1483069264","1483069225","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069254","1483069256","1483069294","1483069254","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971807","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069262","1483069264","1483069310","1483069262","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069265","1483069267","1483069335","1483069265","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069295","1483069298","1483069377","1483069295","1","8","0","-1","79","3","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069311","1483069312","1483069461","1483069311","1","8","0","-1","149","1","1192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069336","1483069337","1483069426","1483069336","1","8","0","-1","89","1","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069366","1483069369","1483069443","1483069366","1","8","0","-1","74","3","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069378","1483069379","1483069524","1483069378","1","8","0","-1","145","1","1160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069388","1483069389","1483069430","1483069388","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069426","1483069427","1483069484","1483069426","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069510","1483069511","1483069567","1483069510","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069541","1483069542","1483069622","1483069541","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069614","1483069616","1483069646","1483069614","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069660","1483069662","1483069740","1483069660","1","8","0","-1","78","2","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069666","1483069667","1483069699","1483069666","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069683","1483069684","1483069714","1483069683","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069700","1483069701","1483069737","1483069700","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069729","1483069730","1483069763","1483069729","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069758","1483069760","1483069790","1483069758","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069760","1483069761","1483069824","1483069760","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069761","1483069764","1483069797","1483069761","1","8","0","-1","33","3","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069771","1483069772","1483069806","1483069771","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069817","1483069819","1483069858","1483069817","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069851","1483069853","1483069917","1483069851","1","8","0","-1","64","2","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069869","1483069870","1483069910","1483069869","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069920","1483069922","1483069958","1483069920","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069959","1483069962","1483070002","1483069959","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070036","1483070037","1483070105","1483070036","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070037","1483070039","1483070073","1483070037","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070039","1483070040","1483070074","1483070039","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070089","1483070090","1483070120","1483070089","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070188","1483070189","1483070222","1483070188","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070229","1483070230","1483070298","1483070229","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070233","1483070234","1483070269","1483070233","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070236","1483070237","1483070281","1483070236","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070296","1483070299","1483070337","1483070296","1","8","0","-1","38","3","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070299","1483070301","1483070337","1483070299","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070328","1483070329","1483070369","1483070328","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070338","1483070341","1483070376","1483070338","1","8","0","-1","35","3","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070338","1483070341","1483070373","1483070338","1","8","0","-1","32","3","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070342","1483070344","1483070390","1483070342","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070402","1483070403","1483070448","1483070402","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070425","1483070426","1483070458","1483070425","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070431","1483070432","1483070465","1483070431","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972257","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070432","1483070435","1483070471","1483070432","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070443","1483070444","1483070478","1483070443","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070448","1483070449","1483070482","1483070448","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070459","1483070460","1483070492","1483070459","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070509","1483070512","1483070552","1483070509","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070540","1483070541","1483070571","1483070540","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070541","1483070542","1483070574","1483070541","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070547","1483070548","1483070610","1483070547","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070550","1483070551","1483070586","1483070550","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070553","1483070554","1483070590","1483070553","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070556","1483070557","1483070587","1483070556","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070571","1483070572","1483070629","1483070571","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070575","1483070576","1483070633","1483070575","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070588","1483070590","1483070625","1483070588","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070612","1483070613","1483070674","1483070612","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070620","1483070621","1483070674","1483070620","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070625","1483070626","1483070659","1483070625","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070630","1483070631","1483070687","1483070630","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070659","1483070660","1483070702","1483070659","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070664","1483070665","1483070697","1483070664","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070674","1483070675","1483070734","1483070674","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070675","1483070676","1483070762","1483070675","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070688","1483070689","1483070854","1483070688","1","8","0","-1","165","1","1320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070697","1483070698","1483070795","1483070697","1","8","0","-1","97","1","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070702","1483070703","1483070798","1483070702","1","8","0","-1","95","1","760","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070790","1483070791","1483070821","1483070790","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070821","1483070822","1483070876","1483070821","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070838","1483070839","1483070875","1483070838","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070905","1483070907","1483070937","1483070905","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070915","1483070916","1483070946","1483070915","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070916","1483070917","1483071028","1483070916","1","8","0","-1","111","1","888","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070917","1483070919","1483070950","1483070917","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070938","1483070939","1483070983","1483070938","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070976","1483070977","1483071009","1483070976","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070981","1483070983","1483071018","1483070981","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071019","1483071021","1483071053","1483071019","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071022","1483071023","1483071058","1483071022","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071028","1483071031","1483071078","1483071028","1","8","0","-1","47","3","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071076","1483071077","1483071107","1483071076","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071117","1483071119","1483071158","1483071117","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071125","1483071126","1483071216","1483071125","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071131","1483071132","1483071162","1483071131","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071157","1483071158","1483071193","1483071157","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071209","1483071210","1483071262","1483071209","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071216","1483071217","1483071301","1483071216","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071218","1483071220","1483071258","1483071218","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071259","1483071260","1483071304","1483071259","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071263","1483071264","1483071297","1483071263","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071266","1483071267","1483071319","1483071266","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071285","1483071286","1483071338","1483071285","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071304","1483071306","1483071350","1483071304","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071320","1483071321","1483071363","1483071320","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071325","1483071326","1483071370","1483071325","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071335","1483071336","1483071404","1483071335","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972623","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071351","1483071352","1483071455","1483071351","1","8","0","-1","103","1","824","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071364","1483071366","1483071417","1483071364","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071371","1483071372","1483071418","1483071371","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071417","1483071418","1483071448","1483071417","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071436","1483071438","1483071468","1483071436","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972649","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071449","1483071450","1483071512","1483071449","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071456","1483071457","1483071505","1483071456","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071489","1483071491","1483071525","1483071489","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071494","1483071495","1483071533","1483071494","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071504","1483071506","1483071549","1483071504","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071533","1483071536","1483071566","1483071533","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972695","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071562","1483071564","1483071604","1483071562","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071605","1483071606","1483071642","1483071605","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071605","1483071606","1483071654","1483071605","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071608","1483071609","1483071690","1483071608","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071612","1483071613","1483071659","1483071612","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071620","1483071621","1483071695","1483071620","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071643","1483071644","1483071709","1483071643","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071655","1483071657","1483071722","1483071655","1","8","0","-1","65","2","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071691","1483071692","1483071764","1483071691","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071697","1483071699","1483071770","1483071697","1","8","0","-1","71","2","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071736","1483071737","1483071807","1483071736","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071766","1483071768","1483071838","1483071766","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071835","1483071837","1483071917","1483071835","1","8","0","-1","80","2","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071838","1483071840","1483071985","1483071838","1","8","0","-1","145","2","1160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071839","1483071840","1483071991","1483071839","1","8","0","-1","151","1","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972765","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071841","1483071843","1483071920","1483071841","1","8","0","-1","77","2","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071920","1483071921","1483071957","1483071920","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071958","1483071960","1483072001","1483071958","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071969","1483071971","1483072010","1483071969","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072011","1483072013","1483072068","1483072011","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072020","1483072021","1483072089","1483072020","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072034","1483072035","1483072075","1483072034","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072062","1483072063","1483072107","1483072062","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072068","1483072069","1483072103","1483072068","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072072","1483072073","1483072134","1483072072","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072075","1483072077","1483072109","1483072075","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072089","1483072090","1483072139","1483072089","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972824","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072103","1483072104","1483072152","1483072103","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972826","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072108","1483072109","1483072144","1483072108","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072109","1483072112","1483072144","1483072109","1","8","0","-1","32","3","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072135","1483072137","1483072170","1483072135","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072145","1483072148","1483072219","1483072145","1","8","0","-1","71","3","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072152","1483072153","1483072219","1483072152","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072170","1483072171","1483072292","1483072170","1","8","0","-1","121","1","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072184","1483072185","1483072259","1483072184","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072249","1483072252","1483072285","1483072249","1","8","0","-1","33","3","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072309","1483072312","1483072353","1483072309","1","8","0","-1","41","3","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072312","1483072314","1483072351","1483072312","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072320","1483072321","1483072406","1483072320","1","8","0","-1","85","1","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072322","1483072324","1483072376","1483072322","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072352","1483072354","1483072389","1483072352","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072406","1483072408","1483072458","1483072406","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072409","1483072411","1483072450","1483072409","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972922","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072416","1483072418","1483072449","1483072416","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072459","1483072460","1483072517","1483072459","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072463","1483072464","1483072516","1483072463","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072475","1483072476","1483072605","1483072475","1","8","0","-1","129","1","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072482","1483072484","1483072523","1483072482","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072514","1483072515","1483072548","1483072514","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072516","1483072518","1483072562","1483072516","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072517","1483072518","1483072552","1483072517","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072552","1483072553","1483072587","1483072552","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072562","1483072563","1483072596","1483072562","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072598","1483072599","1483072663","1483072598","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072641","1483072642","1483072680","1483072641","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072677","1483072678","1483072726","1483072677","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072679","1483072681","1483072731","1483072679","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072693","1483072695","1483072729","1483072693","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072729","1483072730","1483072787","1483072729","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072731","1483072733","1483072801","1483072731","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072735","1483072737","1483072802","1483072735","1","8","0","-1","65","2","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072762","1483072763","1483072801","1483072762","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072767","1483072768","1483072812","1483072767","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072788","1483072789","1483072856","1483072788","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072801","1483072802","1483072833","1483072801","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072812","1483072813","1483072846","1483072812","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072834","1483072835","1483072876","1483072834","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072847","1483072848","1483072893","1483072847","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072855","1483072857","1483072894","1483072855","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072857","1483072860","1483072893","1483072857","1","8","0","-1","33","3","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072863","1483072864","1483072913","1483072863","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072876","1483072877","1483072907","1483072876","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072902","1483072903","1483072948","1483072902","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072908","1483072909","1483072951","1483072908","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072914","1483072916","1483073050","1483072914","1","8","0","-1","134","2","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072916","1483072917","1483072955","1483072916","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072919","1483072920","1483072989","1483072919","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072995","1483072996","1483073038","1483072995","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072998","1483072999","1483073030","1483072998","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073000","1483073002","1483073038","1483073000","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073030","1483073031","1483073062","1483073030","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073031","1483073034","1483073073","1483073031","1","8","0","-1","39","3","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973119","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073059","1483073061","1483073119","1483073059","1","8","0","-1","58","2","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973121","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073063","1483073064","1483073194","1483073063","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073073","1483073074","1483073137","1483073073","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073164","1483073166","1483073215","1483073164","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073184","1483073185","1483073304","1483073184","1","8","0","-1","119","1","952","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073195","1483073196","1483073233","1483073195","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073203","1483073204","1483073255","1483073203","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073215","1483073217","1483073247","1483073215","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073256","1483073257","1483073287","1483073256","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073258","1483073259","1483073313","1483073258","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073269","1483073270","1483073300","1483073269","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073301","1483073302","1483073340","1483073301","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073313","1483073315","1483073357","1483073313","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073315","1483073316","1483073365","1483073315","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073329","1483073330","1483073468","1483073329","1","8","0","-1","138","1","1104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073336","1483073337","1483073378","1483073336","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073407","1483073409","1483073449","1483073407","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073433","1483073434","1483073464","1483073433","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073470","1483073471","1483073508","1483073470","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073471","1483073472","1483073517","1483073471","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073510","1483073512","1483073577","1483073510","1","8","0","-1","65","2","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073517","1483073518","1483073554","1483073517","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073526","1483073527","1483073557","1483073526","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073543","1483073544","1483073593","1483073543","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073555","1483073556","1483073586","1483073555","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073582","1483073583","1483073628","1483073582","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073584","1483073586","1483073640","1483073584","1","8","0","-1","54","2","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073587","1483073589","1483073623","1483073587","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073594","1483073595","1483073631","1483073594","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073601","1483073602","1483073636","1483073601","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073618","1483073619","1483073662","1483073618","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073654","1483073655","1483073699","1483073654","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073657","1483073658","1483073726","1483073657","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073660","1483073661","1483073800","1483073660","1","8","0","-1","139","1","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073662","1483073664","1483073715","1483073662","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073663","1483073664","1483073736","1483073663","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073699","1483073700","1483073730","1483073699","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973323","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073715","1483073716","1483073754","1483073715","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973333","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073736","1483073737","1483073769","1483073736","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973343","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073771","1483073773","1483073807","1483073771","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073774","1483073776","1483073823","1483073774","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073777","1483073779","1483073848","1483073777","1","8","0","-1","69","2","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973349","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073780","1483073782","1483073918","1483073780","1","8","0","-1","136","2","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073849","1483073851","1483073893","1483073849","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073877","1483073878","1483073948","1483073877","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073879","1483073881","1483073928","1483073879","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073891","1483073892","1483073948","1483073891","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073894","1483073895","1483073956","1483073894","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073901","1483073902","1483073956","1483073901","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073928","1483073929","1483073984","1483073928","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073948","1483073949","1483073985","1483073948","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073949","1483073952","1483074051","1483073949","1","8","0","-1","99","3","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973394","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073957","1483073960","1483074138","1483073957","1","8","0","-1","178","3","1424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073974","1483073976","1483074083","1483073974","1","8","0","-1","107","2","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074052","1483074053","1483074099","1483074052","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074071","1483074072","1483074108","1483074071","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074075","1483074076","1483074109","1483074075","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973422","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074084","1483074085","1483074132","1483074084","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074114","1483074117","1483074156","1483074114","1","8","0","-1","39","3","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973432","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074124","1483074125","1483074163","1483074124","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074133","1483074135","1483074170","1483074133","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074163","1483074164","1483074231","1483074163","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074230","1483074231","1483074277","1483074230","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074232","1483074234","1483074280","1483074232","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074262","1483074265","1483074302","1483074262","1","8","0","-1","37","3","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074271","1483074272","1483074310","1483074271","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074278","1483074280","1483074335","1483074278","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074280","1483074281","1483074374","1483074280","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074281","1483074283","1483074321","1483074281","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074302","1483074303","1483074350","1483074302","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074336","1483074337","1483074368","1483074336","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074337","1483074340","1483074381","1483074337","1","8","0","-1","41","3","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074375","1483074376","1483074408","1483074375","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074376","1483074377","1483074411","1483074376","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074382","1483074383","1483074414","1483074382","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074393","1483074394","1483074466","1483074393","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074415","1483074417","1483074454","1483074415","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074478","1483074480","1483074513","1483074478","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074491","1483074493","1483074552","1483074491","1","8","0","-1","59","2","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074494","1483074496","1483074553","1483074494","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074497","1483074499","1483074609","1483074497","1","8","0","-1","110","2","880","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074563","1483074564","1483074595","1483074563","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074578","1483074579","1483074634","1483074578","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074579","1483074581","1483074634","1483074579","1","8","0","-1","53","2","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074595","1483074597","1483074632","1483074595","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074598","1483074600","1483074636","1483074598","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074612","1483074613","1483074657","1483074612","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074634","1483074635","1483074676","1483074634","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074635","1483074636","1483074671","1483074635","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973623","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074638","1483074640","1483074682","1483074638","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074659","1483074660","1483074717","1483074659","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973637","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074682","1483074683","1483074735","1483074682","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074707","1483074708","1483074769","1483074707","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074708","1483074709","1483074750","1483074708","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074716","1483074717","1483074747","1483074716","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074718","1483074720","1483074755","1483074718","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074770","1483074772","1483074851","1483074770","1","8","0","-1","79","2","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074775","1483074777","1483074854","1483074775","1","8","0","-1","77","2","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074792","1483074793","1483074875","1483074792","1","8","0","-1","82","1","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074853","1483074854","1483074893","1483074853","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973689","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074871","1483074872","1483074941","1483074871","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074876","1483074877","1483074920","1483074876","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074877","1483074880","1483074932","1483074877","1","8","0","-1","52","3","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973695","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074886","1483074887","1483074926","1483074886","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074894","1483074897","1483074945","1483074894","1","8","0","-1","48","3","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074903","1483074904","1483074941","1483074903","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973705","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074921","1483074923","1483074973","1483074921","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074926","1483074927","1483074968","1483074926","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074932","1483074933","1483075023","1483074932","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973713","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074942","1483074944","1483075104","1483074942","1","8","0","-1","160","2","1280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074943","1483074944","1483075036","1483074943","1","8","0","-1","92","1","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074946","1483074947","1483075037","1483074946","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074968","1483074969","1483075014","1483074968","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075015","1483075017","1483075066","1483075015","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075023","1483075024","1483075067","1483075023","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075037","1483075038","1483075097","1483075037","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075068","1483075069","1483075123","1483075068","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075100","1483075101","1483075134","1483075100","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075122","1483075123","1483075176","1483075122","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075124","1483075126","1483075186","1483075124","1","8","0","-1","60","2","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075128","1483075129","1483075213","1483075128","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075135","1483075137","1483075294","1483075135","1","8","0","-1","157","2","1256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075148","1483075149","1483075238","1483075148","1","8","0","-1","89","1","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075186","1483075187","1483075302","1483075186","1","8","0","-1","115","1","920","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973779","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075213","1483075215","1483075352","1483075213","1","8","0","-1","137","2","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075295","1483075296","1483075426","1483075295","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075302","1483075303","1483075421","1483075302","1","8","0","-1","118","1","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075306","1483075307","1483075373","1483075306","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075352","1483075353","1483075512","1483075352","1","8","0","-1","159","1","1272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075375","1483075377","1483075528","1483075375","1","8","0","-1","151","2","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075422","1483075423","1483075592","1483075422","1","8","0","-1","169","1","1352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075424","1483075426","1483075470","1483075424","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075426","1483075429","1483075491","1483075426","1","8","0","-1","62","3","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075471","1483075472","1483075525","1483075471","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075492","1483075494","1483075547","1483075492","1","8","0","-1","53","2","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973821","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075512","1483075513","1483075547","1483075512","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075529","1483075530","1483075577","1483075529","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075548","1483075549","1483075596","1483075548","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075596","1483075597","1483075652","1483075596","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075611","1483075612","1483075674","1483075611","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075672","1483075673","1483075742","1483075672","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075675","1483075677","1483075719","1483075675","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075740","1483075741","1483075776","1483075740","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075743","1483075744","1483075774","1483075743","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075756","1483075757","1483075793","1483075756","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075767","1483075768","1483075810","1483075767","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075775","1483075776","1483075808","1483075775","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075776","1483075779","1483075823","1483075776","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075789","1483075790","1483075870","1483075789","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075793","1483075794","1483075884","1483075793","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075794","1483075797","1483075961","1483075794","1","8","0","-1","164","3","1312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075809","1483075810","1483075867","1483075809","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075810","1483075813","1483075909","1483075810","1","8","0","-1","96","3","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075823","1483075826","1483075893","1483075823","1","8","0","-1","67","3","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075871","1483075872","1483075939","1483075871","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075884","1483075885","1483075946","1483075884","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075893","1483075894","1483075936","1483075893","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075936","1483075939","1483076003","1483075936","1","8","0","-1","64","3","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075939","1483075942","1483076012","1483075939","1","8","0","-1","70","3","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075961","1483075962","1483076005","1483075961","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076063","1483076064","1483076155","1483076063","1","8","0","-1","91","1","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076073","1483076074","1483076105","1483076073","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076104","1483076106","1483076157","1483076104","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076129","1483076130","1483076170","1483076129","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973965","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076132","1483076133","1483076168","1483076132","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076171","1483076172","1483076243","1483076171","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076181","1483076182","1483076241","1483076181","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076183","1483076184","1483076323","1483076183","1","8","0","-1","139","1","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076184","1483076185","1483076238","1483076184","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076231","1483076232","1483076279","1483076231","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076268","1483076269","1483076320","1483076268","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076275","1483076277","1483076308","1483076275","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076299","1483076300","1483076331","1483076299","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076320","1483076321","1483076353","1483076320","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076332","1483076334","1483076473","1483076332","1","8","0","-1","139","2","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076338","1483076339","1483076389","1483076338","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076385","1483076386","1483076437","1483076385","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076423","1483076424","1483076472","1483076423","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076427","1483076428","1483076468","1483076427","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076428","1483076431","1483076485","1483076428","1","8","0","-1","54","3","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076438","1483076439","1483076473","1483076438","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076446","1483076447","1483076490","1483076446","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076474","1483076476","1483076521","1483076474","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076486","1483076487","1483076535","1483076486","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076490","1483076491","1483076553","1483076490","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076500","1483076502","1483076639","1483076500","1","8","0","-1","137","2","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076504","1483076505","1483076545","1483076504","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076522","1483076523","1483076596","1483076522","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076536","1483076537","1483076573","1483076536","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076545","1483076546","1483076586","1483076545","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076567","1483076568","1483076605","1483076567","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076596","1483076599","1483076650","1483076596","1","8","0","-1","51","3","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076610","1483076611","1483076656","1483076610","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076639","1483076642","1483076684","1483076639","1","8","0","-1","42","3","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076666","1483076668","1483076716","1483076666","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974127","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076684","1483076685","1483076760","1483076684","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076761","1483076763","1483076797","1483076761","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076789","1483076790","1483076837","1483076789","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076803","1483076805","1483076845","1483076803","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076811","1483076812","1483076876","1483076811","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076822","1483076823","1483076858","1483076822","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076825","1483076826","1483076956","1483076825","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076837","1483076838","1483076875","1483076837","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076838","1483076841","1483076882","1483076838","1","8","0","-1","41","3","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076846","1483076847","1483076913","1483076846","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076902","1483076903","1483076935","1483076902","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076954","1483076955","1483076988","1483076954","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076957","1483076958","1483077010","1483076957","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076959","1483076960","1483076993","1483076959","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076960","1483076961","1483077090","1483076960","1","8","0","-1","129","1","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076960","1483076961","1483076997","1483076960","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076988","1483076989","1483077020","1483076988","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076993","1483076994","1483077027","1483076993","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077020","1483077021","1483077067","1483077020","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077032","1483077034","1483077071","1483077032","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077055","1483077057","1483077090","1483077055","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077059","1483077060","1483077113","1483077059","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077097","1483077098","1483077147","1483077097","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077113","1483077114","1483077170","1483077113","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077134","1483077135","1483077191","1483077134","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077148","1483077149","1483077185","1483077148","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077155","1483077156","1483077186","1483077155","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077159","1483077160","1483077211","1483077159","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077171","1483077172","1483077213","1483077171","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077186","1483077187","1483077227","1483077186","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077192","1483077193","1483077226","1483077192","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077212","1483077213","1483077272","1483077212","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077214","1483077216","1483077260","1483077214","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077216","1483077219","1483077278","1483077216","1","8","0","-1","59","3","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077226","1483077227","1483077275","1483077226","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077237","1483077238","1483077269","1483077237","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077272","1483077273","1483077335","1483077272","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077276","1483077277","1483077328","1483077276","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077279","1483077280","1483077424","1483077279","1","8","0","-1","144","1","1152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077290","1483077291","1483077370","1483077290","1","8","0","-1","79","1","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077320","1483077321","1483077374","1483077320","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077347","1483077348","1483077378","1483077347","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077444","1483077447","1483077500","1483077444","1","8","0","-1","53","3","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077451","1483077453","1483077496","1483077451","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077485","1483077486","1483077517","1483077485","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077497","1483077498","1483077531","1483077497","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077501","1483077502","1483077538","1483077501","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077518","1483077520","1483077554","1483077518","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077531","1483077532","1483077567","1483077531","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077539","1483077540","1483077598","1483077539","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077540","1483077543","1483077600","1483077540","1","8","0","-1","57","3","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077544","1483077546","1483077580","1483077544","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077567","1483077568","1483077615","1483077567","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077580","1483077582","1483077657","1483077580","1","8","0","-1","75","2","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077584","1483077585","1483077656","1483077584","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077601","1483077602","1483077663","1483077601","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077616","1483077617","1483077653","1483077616","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077657","1483077658","1483077731","1483077657","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077699","1483077701","1483077756","1483077699","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077747","1483077748","1483077808","1483077747","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077767","1483077768","1483077830","1483077767","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077802","1483077803","1483077905","1483077802","1","8","0","-1","102","1","816","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077808","1483077809","1483077924","1483077808","1","8","0","-1","115","1","920","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077851","1483077852","1483077883","1483077851","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077895","1483077897","1483077948","1483077895","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077905","1483077906","1483077936","1483077905","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077941","1483077942","1483077973","1483077941","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077948","1483077949","1483077984","1483077948","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077959","1483077960","1483078007","1483077959","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077962","1483077963","1483078098","1483077962","1","8","0","-1","135","1","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077985","1483077986","1483078020","1483077985","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077991","1483077992","1483078032","1483077991","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078033","1483078034","1483078066","1483078033","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078039","1483078040","1483078080","1483078039","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078090","1483078093","1483078129","1483078090","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078098","1483078099","1483078163","1483078098","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078110","1483078112","1483078157","1483078110","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078112","1483078115","1483078152","1483078112","1","8","0","-1","37","3","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078182","1483078183","1483078217","1483078182","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078209","1483078210","1483078244","1483078209","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078216","1483078217","1483078250","1483078216","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078217","1483078220","1483078250","1483078217","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078231","1483078234","1483078271","1483078231","1","8","0","-1","37","3","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078234","1483078237","1483078284","1483078234","1","8","0","-1","47","3","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078274","1483078275","1483078305","1483078274","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078314","1483078315","1483078351","1483078314","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078338","1483078339","1483078374","1483078338","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078354","1483078355","1483078395","1483078354","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078368","1483078369","1483078413","1483078368","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078375","1483078377","1483078422","1483078375","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078399","1483078402","1483078451","1483078399","1","8","0","-1","49","3","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078413","1483078414","1483078457","1483078413","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078417","1483078418","1483078450","1483078417","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078423","1483078424","1483078457","1483078423","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078453","1483078454","1483078488","1483078453","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078475","1483078476","1483078532","1483078475","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078478","1483078479","1483078522","1483078478","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974677","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078497","1483078498","1483078529","1483078497","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974687","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078531","1483078532","1483078565","1483078531","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078532","1483078533","1483078570","1483078532","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078551","1483078552","1483078611","1483078551","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974695","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078556","1483078558","1483078590","1483078556","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078558","1483078561","1483078614","1483078558","1","8","0","-1","53","3","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078565","1483078566","1483078599","1483078565","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078567","1483078569","1483078610","1483078567","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974705","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078591","1483078592","1483078628","1483078591","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078598","1483078599","1483078664","1483078598","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078600","1483078602","1483078673","1483078600","1","8","0","-1","71","2","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974717","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078611","1483078613","1483078701","1483078611","1","8","0","-1","88","2","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974719","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078615","1483078618","1483078704","1483078615","1","8","0","-1","86","3","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974721","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078629","1483078630","1483078670","1483078629","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974727","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078665","1483078666","1483078737","1483078665","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974729","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078667","1483078669","1483078706","1483078667","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974731","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078670","1483078672","1483078723","1483078670","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974733","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078674","1483078675","1483078718","1483078674","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974735","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078701","1483078702","1483078751","1483078701","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078704","1483078705","1483078773","1483078704","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974739","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078706","1483078708","1483078750","1483078706","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974747","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078750","1483078751","1483078785","1483078750","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078752","1483078754","1483078816","1483078752","1","8","0","-1","62","2","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078768","1483078769","1483078854","1483078768","1","8","0","-1","85","1","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974761","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078786","1483078788","1483078845","1483078786","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078789","1483078790","1483078842","1483078789","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078842","1483078843","1483078912","1483078842","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078872","1483078873","1483078932","1483078872","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078891","1483078892","1483078945","1483078891","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078912","1483078913","1483078986","1483078912","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078960","1483078961","1483079020","1483078960","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078973","1483078975","1483079019","1483078973","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078973","1483078975","1483079030","1483078973","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078975","1483078978","1483079141","1483078975","1","8","0","-1","163","3","1304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078987","1483078988","1483079056","1483078987","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078998","1483078999","1483079092","1483078998","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079019","1483079020","1483079156","1483079019","1","8","0","-1","136","1","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079021","1483079023","1483079159","1483079021","1","8","0","-1","136","2","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079031","1483079032","1483079170","1483079031","1","8","0","-1","138","1","1104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079057","1483079058","1483079195","1483079057","1","8","0","-1","137","1","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079142","1483079143","1483079291","1483079142","1","8","0","-1","148","1","1184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079155","1483079156","1483079298","1483079155","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079160","1483079161","1483079295","1483079160","1","8","0","-1","134","1","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079170","1483079171","1483079285","1483079170","1","8","0","-1","114","1","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079195","1483079196","1483079272","1483079195","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079298","1483079299","1483079344","1483079298","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079392","1483079394","1483079451","1483079392","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079413","1483079414","1483079477","1483079413","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079438","1483079441","1483079485","1483079438","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079442","1483079444","1483079486","1483079442","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079445","1483079447","1483079488","1483079445","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079451","1483079452","1483079497","1483079451","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079468","1483079469","1483079513","1483079468","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079477","1483079478","1483079541","1483079477","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079485","1483079486","1483079548","1483079485","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079486","1483079489","1483079537","1483079486","1","8","0","-1","48","3","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079489","1483079492","1483079653","1483079489","1","8","0","-1","161","3","1288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079498","1483079499","1483079567","1483079498","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079513","1483079514","1483079601","1483079513","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079538","1483079539","1483079614","1483079538","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079541","1483079542","1483079592","1483079541","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079548","1483079549","1483079616","1483079548","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079592","1483079593","1483079673","1483079592","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079601","1483079602","1483079642","1483079601","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079615","1483079616","1483079662","1483079615","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079617","1483079619","1483079690","1483079617","1","8","0","-1","71","2","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079642","1483079643","1483079677","1483079642","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079653","1483079654","1483079702","1483079653","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079673","1483079674","1483079714","1483079673","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079677","1483079678","1483079766","1483079677","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079686","1483079687","1483079745","1483079686","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079704","1483079706","1483079773","1483079704","1","8","0","-1","67","2","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079766","1483079767","1483079813","1483079766","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079814","1483079815","1483079892","1483079814","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079831","1483079833","1483079909","1483079831","1","8","0","-1","76","2","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079846","1483079847","1483079921","1483079846","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079849","1483079850","1483079919","1483079849","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079873","1483079874","1483079911","1483079873","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079893","1483079894","1483079925","1483079893","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079895","1483079897","1483079944","1483079895","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079910","1483079911","1483079976","1483079910","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079912","1483079914","1483079965","1483079912","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079922","1483079923","1483080019","1483079922","1","8","0","-1","96","1","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079945","1483079946","1483080010","1483079945","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079966","1483079967","1483080066","1483079966","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079977","1483079978","1483080011","1483079977","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080012","1483080014","1483080048","1483080012","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080019","1483080020","1483080052","1483080019","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080042","1483080044","1483080091","1483080042","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080053","1483080054","1483080088","1483080053","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080066","1483080067","1483080104","1483080066","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080096","1483080099","1483080153","1483080096","1","8","0","-1","54","3","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080104","1483080105","1483080136","1483080104","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080111","1483080113","1483080239","1483080111","1","8","0","-1","126","2","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080136","1483080137","1483080172","1483080136","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080151","1483080152","1483080188","1483080151","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080154","1483080155","1483080186","1483080154","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080238","1483080240","1483080275","1483080238","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080240","1483080241","1483080303","1483080240","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080244","1483080245","1483080306","1483080244","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080245","1483080248","1483080375","1483080245","1","8","0","-1","127","3","1016","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080249","1483080251","1483080283","1483080249","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080260","1483080261","1483080303","1483080260","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080284","1483080285","1483080322","1483080284","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080299","1483080300","1483080331","1483080299","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080323","1483080324","1483080366","1483080323","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080328","1483080329","1483080376","1483080328","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080330","1483080332","1483080373","1483080330","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080332","1483080335","1483080365","1483080332","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080336","1483080338","1483080370","1483080336","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080377","1483080378","1483080431","1483080377","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080392","1483080395","1483080437","1483080392","1","8","0","-1","42","3","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080440","1483080441","1483080481","1483080440","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975149","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080457","1483080458","1483080495","1483080457","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080458","1483080461","1483080492","1483080458","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080493","1483080495","1483080547","1483080493","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080493","1483080495","1483080538","1483080493","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080496","1483080498","1483080623","1483080496","1","8","0","-1","125","2","1000","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080512","1483080513","1483080563","1483080512","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080549","1483080550","1483080590","1483080549","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080571","1483080572","1483080611","1483080571","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080579","1483080580","1483080621","1483080579","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080590","1483080591","1483080623","1483080590","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080622","1483080623","1483080670","1483080622","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080623","1483080625","1483080657","1483080623","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080623","1483080625","1483080670","1483080623","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080625","1483080626","1483080744","1483080625","1","8","0","-1","118","1","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080632","1483080634","1483080693","1483080632","1","8","0","-1","59","2","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080738","1483080739","1483080780","1483080738","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080748","1483080749","1483080795","1483080748","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080817","1483080818","1483080867","1483080817","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080820","1483080821","1483080865","1483080820","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080866","1483080867","1483080911","1483080866","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080867","1483080868","1483080911","1483080867","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080912","1483080914","1483080951","1483080912","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080916","1483080917","1483080948","1483080916","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080941","1483080943","1483080973","1483080941","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080951","1483080952","1483080983","1483080951","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080952","1483080953","1483080995","1483080952","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081001","1483081002","1483081040","1483081001","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081002","1483081003","1483081047","1483081002","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081008","1483081009","1483081074","1483081008","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081029","1483081030","1483081064","1483081029","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081048","1483081049","1483081084","1483081048","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081065","1483081066","1483081108","1483081065","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081081","1483081082","1483081123","1483081081","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081081","1483081082","1483081121","1483081081","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081083","1483081084","1483081120","1483081083","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081096","1483081097","1483081132","1483081096","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081131","1483081132","1483081178","1483081131","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081132","1483081135","1483081187","1483081132","1","8","0","-1","52","3","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081145","1483081147","1483081193","1483081145","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081178","1483081179","1483081217","1483081178","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081184","1483081185","1483081225","1483081184","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081193","1483081194","1483081237","1483081193","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081225","1483081226","1483081271","1483081225","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081271","1483081273","1483081395","1483081271","1","8","0","-1","122","2","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081325","1483081326","1483081387","1483081325","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081326","1483081329","1483081383","1483081326","1","8","0","-1","54","3","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081337","1483081338","1483081391","1483081337","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081346","1483081347","1483081388","1483081346","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081380","1483081381","1483081442","1483081380","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081383","1483081384","1483081450","1483081383","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081392","1483081394","1483081451","1483081392","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081395","1483081397","1483081448","1483081395","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081442","1483081443","1483081495","1483081442","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081444","1483081445","1483081525","1483081444","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081450","1483081451","1483081621","1483081450","1","8","0","-1","170","1","1360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081451","1483081452","1483081553","1483081451","1","8","0","-1","101","1","808","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081496","1483081498","1483081582","1483081496","1","8","0","-1","84","2","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081537","1483081538","1483081575","1483081537","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081553","1483081554","1483081599","1483081553","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081556","1483081558","1483081590","1483081556","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081602","1483081603","1483081637","1483081602","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081621","1483081622","1483081725","1483081621","1","8","0","-1","103","1","824","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081622","1483081624","1483081659","1483081622","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081667","1483081668","1483081698","1483081667","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081674","1483081675","1483081711","1483081674","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081698","1483081699","1483081732","1483081698","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975556","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081700","1483081702","1483081737","1483081700","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081703","1483081705","1483081739","1483081703","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081735","1483081738","1483081782","1483081735","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081738","1483081739","1483081797","1483081738","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081744","1483081745","1483081855","1483081744","1","8","0","-1","110","1","880","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081753","1483081756","1483081787","1483081753","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081768","1483081769","1483081804","1483081768","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081783","1483081786","1483081822","1483081783","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081787","1483081789","1483081824","1483081787","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081816","1483081817","1483081849","1483081816","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975598","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081820","1483081821","1483081860","1483081820","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081821","1483081822","1483081861","1483081821","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081824","1483081827","1483081857","1483081824","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081861","1483081864","1483081909","1483081861","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081877","1483081878","1483081994","1483081877","1","8","0","-1","116","1","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081880","1483081881","1483081925","1483081880","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081911","1483081912","1483081946","1483081911","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081917","1483081918","1483081951","1483081917","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081934","1483081935","1483081976","1483081934","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081941","1483081942","1483081978","1483081941","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081946","1483081948","1483081981","1483081946","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081982","1483081984","1483082019","1483081982","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081995","1483081996","1483082110","1483081995","1","8","0","-1","114","1","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082028","1483082029","1483082063","1483082028","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082093","1483082094","1483082127","1483082093","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082097","1483082098","1483082136","1483082097","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082101","1483082102","1483082141","1483082101","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082105","1483082106","1483082201","1483082105","1","8","0","-1","95","1","760","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082111","1483082112","1483082144","1483082111","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082114","1483082115","1483082149","1483082114","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082137","1483082138","1483082181","1483082137","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082145","1483082146","1483082178","1483082145","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082165","1483082166","1483082200","1483082165","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082178","1483082179","1483082236","1483082178","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082179","1483082181","1483082217","1483082179","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082181","1483082182","1483082236","1483082181","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082236","1483082237","1483082271","1483082236","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082256","1483082259","1483082299","1483082256","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082271","1483082272","1483082350","1483082271","1","8","0","-1","78","1","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082279","1483082280","1483082317","1483082279","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082297","1483082298","1483082344","1483082297","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082300","1483082301","1483082347","1483082300","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082317","1483082318","1483082352","1483082317","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082346","1483082348","1483082397","1483082346","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082350","1483082351","1483082394","1483082350","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082352","1483082354","1483082384","1483082352","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082385","1483082386","1483082419","1483082385","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082388","1483082389","1483082456","1483082388","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082395","1483082397","1483082464","1483082395","1","8","0","-1","67","2","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082412","1483082413","1483082497","1483082412","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082414","1483082416","1483082455","1483082414","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082419","1483082420","1483082459","1483082419","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082456","1483082457","1483082517","1483082456","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082460","1483082461","1483082492","1483082460","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975826","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082488","1483082489","1483082540","1483082488","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082498","1483082499","1483082532","1483082498","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082533","1483082534","1483082584","1483082533","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082536","1483082537","1483082567","1483082536","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082541","1483082542","1483082582","1483082541","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082544","1483082545","1483082596","1483082544","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082558","1483082559","1483082630","1483082558","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082568","1483082569","1483082721","1483082568","1","8","0","-1","152","1","1216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082570","1483082572","1483082628","1483082570","1","8","0","-1","56","2","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082585","1483082586","1483082624","1483082585","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082624","1483082627","1483082753","1483082624","1","8","0","-1","126","3","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082631","1483082633","1483082749","1483082631","1","8","0","-1","116","2","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082725","1483082728","1483082800","1483082725","1","8","0","-1","72","3","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082838","1483082839","1483083037","1483082838","1","8","0","-1","198","1","1584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082841","1483082842","1483082895","1483082841","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082856","1483082857","1483083015","1483082856","1","8","0","-1","158","1","1264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082868","1483082869","1483082955","1483082868","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082981","1483082982","1483083023","1483082981","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083016","1483083017","1483083101","1483083016","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083026","1483083027","1483083188","1483083026","1","8","0","-1","161","1","1288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083037","1483083039","1483083123","1483083037","1","8","0","-1","84","2","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083053","1483083054","1483083119","1483083053","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083080","1483083081","1483083124","1483083080","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083101","1483083102","1483083144","1483083101","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083119","1483083120","1483083151","1483083119","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083123","1483083124","1483083193","1483083123","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083125","1483083126","1483083174","1483083125","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083141","1483083142","1483083174","1483083141","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083144","1483083145","1483083176","1483083144","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083151","1483083152","1483083190","1483083151","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975984","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083177","1483083178","1483083243","1483083177","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083190","1483083192","1483083251","1483083190","1","8","0","-1","59","2","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083194","1483083195","1483083237","1483083194","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083237","1483083238","1483083301","1483083237","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083244","1483083245","1483083307","1483083244","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083251","1483083252","1483083309","1483083251","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083302","1483083305","1483083368","1483083302","1","8","0","-1","63","3","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083309","1483083311","1483083357","1483083309","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083344","1483083345","1483083381","1483083344","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083350","1483083351","1483083386","1483083350","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976025","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083351","1483083354","1483083429","1483083351","1","8","0","-1","75","3","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083365","1483083367","1483083518","1483083365","1","8","0","-1","151","2","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976033","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083369","1483083370","1483083446","1483083369","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976075","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083485","1483083486","1483083549","1483083485","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083581","1483083584","1483083645","1483083581","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083584","1483083587","1483083619","1483083584","1","8","0","-1","32","3","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083592","1483083593","1483083624","1483083592","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083604","1483083606","1483083640","1483083604","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083672","1483083673","1483083739","1483083672","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083674","1483083676","1483083712","1483083674","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083677","1483083679","1483083715","1483083677","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083761","1483083762","1483083797","1483083761","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083769","1483083770","1483083806","1483083769","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083838","1483083841","1483083910","1483083838","1","8","0","-1","69","3","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083842","1483083843","1483083875","1483083842","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083905","1483083907","1483083969","1483083905","1","8","0","-1","62","2","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083909","1483083910","1483083942","1483083909","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083965","1483083968","1483084028","1483083965","1","8","0","-1","60","3","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083978","1483083979","1483084021","1483083978","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084064","1483084065","1483084186","1483084064","1","8","0","-1","121","1","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084066","1483084068","1483084105","1483084066","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084073","1483084074","1483084104","1483084073","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084129","1483084132","1483084248","1483084129","1","8","0","-1","116","3","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084132","1483084133","1483084165","1483084132","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084201","1483084202","1483084238","1483084201","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084206","1483084207","1483084253","1483084206","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084214","1483084215","1483084251","1483084214","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084220","1483084221","1483084259","1483084220","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084221","1483084224","1483084279","1483084221","1","8","0","-1","55","3","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084238","1483084239","1483084287","1483084238","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084251","1483084252","1483084328","1483084251","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084253","1483084255","1483084343","1483084253","1","8","0","-1","88","2","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084279","1483084280","1483084445","1483084279","1","8","0","-1","165","1","1320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084289","1483084291","1483084387","1483084289","1","8","0","-1","96","2","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084385","1483084386","1483084470","1483084385","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084387","1483084389","1483084424","1483084387","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084446","1483084447","1483084479","1483084446","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084484","1483084485","1483084515","1483084484","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084485","1483084486","1483084569","1483084485","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084497","1483084498","1483084533","1483084497","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084503","1483084504","1483084546","1483084503","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084542","1483084543","1483084575","1483084542","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084590","1483084591","1483084624","1483084590","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084595","1483084596","1483084635","1483084595","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084607","1483084608","1483084738","1483084607","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084624","1483084625","1483084660","1483084624","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084629","1483084631","1483084667","1483084629","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084660","1483084661","1483084718","1483084660","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084668","1483084669","1483084702","1483084668","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084705","1483084706","1483084783","1483084705","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084718","1483084719","1483084961","1483084718","1","8","0","-1","242","1","1936","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084748","1483084749","1483084841","1483084748","1","8","0","-1","92","1","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976579","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084832","1483084833","1483084878","1483084832","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084925","1483084926","1483084959","1483084925","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084931","1483084932","1483084972","1483084931","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084940","1483084941","1483084982","1483084940","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084941","1483084943","1483084992","1483084941","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976623","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084962","1483084963","1483085039","1483084962","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084972","1483084973","1483085026","1483084972","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084974","1483084975","1483085044","1483084974","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084983","1483084984","1483085015","1483084983","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085064","1483085066","1483085122","1483085064","1","8","0","-1","56","2","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085067","1483085068","1483085098","1483085067","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085068","1483085069","1483085138","1483085068","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085097","1483085098","1483085130","1483085097","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085163","1483085164","1483085194","1483085163","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085170","1483085171","1483085212","1483085170","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085173","1483085174","1483085204","1483085173","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085185","1483085186","1483085252","1483085185","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085195","1483085196","1483085238","1483085195","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085205","1483085206","1483085245","1483085205","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085208","1483085209","1483085244","1483085208","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085213","1483085215","1483085250","1483085213","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085237","1483085238","1483085269","1483085237","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085282","1483085285","1483085315","1483085282","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085303","1483085304","1483085341","1483085303","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085305","1483085307","1483085405","1483085305","1","8","0","-1","98","2","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085315","1483085316","1483085357","1483085315","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085326","1483085327","1483085396","1483085326","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085339","1483085340","1483085378","1483085339","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085426","1483085427","1483085496","1483085426","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085440","1483085441","1483085477","1483085440","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085498","1483085500","1483085548","1483085498","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085510","1483085511","1483085572","1483085510","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085513","1483085514","1483085549","1483085513","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085514","1483085515","1483085569","1483085514","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085569","1483085570","1483085611","1483085569","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085585","1483085586","1483085624","1483085585","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085604","1483085606","1483085649","1483085604","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085611","1483085612","1483085672","1483085611","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085627","1483085628","1483085662","1483085627","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085633","1483085634","1483085717","1483085633","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085701","1483085703","1483085735","1483085701","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085713","1483085714","1483085751","1483085713","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085718","1483085720","1483085752","1483085718","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085752","1483085753","1483085806","1483085752","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085792","1483085793","1483085823","1483085792","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085824","1483085826","1483085868","1483085824","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085834","1483085835","1483085874","1483085834","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085846","1483085847","1483085880","1483085846","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085847","1483085850","1483085883","1483085847","1","8","0","-1","33","3","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085875","1483085878","1483085912","1483085875","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085883","1483085884","1483085915","1483085883","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085894","1483085895","1483085945","1483085894","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085916","1483085917","1483085962","1483085916","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085918","1483085920","1483085952","1483085918","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085928","1483085929","1483085977","1483085928","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085969","1483085971","1483086033","1483085969","1","8","0","-1","62","2","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085971","1483085974","1483086044","1483085971","1","8","0","-1","70","3","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085977","1483085978","1483086031","1483085977","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085979","1483085981","1483086024","1483085979","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086034","1483086035","1483086090","1483086034","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086056","1483086058","1483086096","1483086056","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086075","1483086076","1483086137","1483086075","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086083","1483086084","1483086141","1483086083","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086090","1483086091","1483086154","1483086090","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086145","1483086146","1483086240","1483086145","1","8","0","-1","94","1","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086149","1483086150","1483086327","1483086149","1","8","0","-1","177","1","1416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086155","1483086156","1483086262","1483086155","1","8","0","-1","106","1","848","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086160","1483086161","1483086260","1483086160","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086189","1483086190","1483086278","1483086189","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086261","1483086262","1483086298","1483086261","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086296","1483086298","1483086333","1483086296","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086298","1483086301","1483086341","1483086298","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086309","1483086312","1483086347","1483086309","1","8","0","-1","35","3","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086413","1483086415","1483086454","1483086413","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086414","1483086415","1483086447","1483086414","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086506","1483086507","1483086554","1483086506","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086514","1483086515","1483086548","1483086514","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086518","1483086519","1483086551","1483086518","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086528","1483086529","1483086561","1483086528","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977257","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086613","1483086614","1483086680","1483086613","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977259","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086614","1483086615","1483086649","1483086614","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086694","1483086695","1483086758","1483086694","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086721","1483086722","1483086758","1483086721","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086747","1483086749","1483086781","1483086747","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086788","1483086789","1483086826","1483086788","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086789","1483086790","1483086824","1483086789","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086790","1483086792","1483086839","1483086790","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086797","1483086798","1483086836","1483086797","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086806","1483086807","1483086895","1483086806","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086808","1483086810","1483086865","1483086808","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086825","1483086826","1483086906","1483086825","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086826","1483086829","1483086868","1483086826","1","8","0","-1","39","3","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086836","1483086838","1483086868","1483086836","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086840","1483086841","1483086882","1483086840","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086869","1483086871","1483086901","1483086869","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086870","1483086871","1483086905","1483086870","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086895","1483086898","1483086929","1483086895","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086896","1483086898","1483086931","1483086896","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977380","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086902","1483086903","1483086955","1483086902","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086906","1483086909","1483086956","1483086906","1","8","0","-1","47","3","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977386","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086916","1483086917","1483086973","1483086916","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977388","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086929","1483086930","1483086973","1483086929","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086932","1483086933","1483086973","1483086932","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086957","1483086958","1483087008","1483086957","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086963","1483086964","1483087008","1483086963","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086974","1483086977","1483087008","1483086974","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086975","1483086977","1483087009","1483086975","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087008","1483087009","1483087047","1483087008","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087009","1483087012","1483087052","1483087009","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977424","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087041","1483087042","1483087075","1483087041","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087047","1483087048","1483087125","1483087047","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977432","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087052","1483087053","1483087096","1483087052","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977434","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087055","1483087056","1483087097","1483087055","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087076","1483087077","1483087122","1483087076","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087096","1483087097","1483087170","1483087096","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087098","1483087100","1483087162","1483087098","1","8","0","-1","62","2","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087126","1483087127","1483087241","1483087126","1","8","0","-1","114","1","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087129","1483087130","1483087203","1483087129","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087150","1483087152","1483087221","1483087150","1","8","0","-1","69","2","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087163","1483087164","1483087229","1483087163","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087170","1483087171","1483087296","1483087170","1","8","0","-1","125","1","1000","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087184","1483087185","1483087300","1483087184","1","8","0","-1","115","1","920","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087204","1483087205","1483087276","1483087204","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087230","1483087231","1483087316","1483087230","1","8","0","-1","85","1","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087276","1483087277","1483087364","1483087276","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087300","1483087301","1483087339","1483087300","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977494","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087317","1483087318","1483087354","1483087317","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087342","1483087343","1483087377","1483087342","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087348","1483087351","1483087395","1483087348","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087364","1483087365","1483087414","1483087364","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087375","1483087378","1483087414","1483087375","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087395","1483087396","1483087429","1483087395","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087397","1483087399","1483087435","1483087397","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087414","1483087415","1483087459","1483087414","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087436","1483087438","1483087500","1483087436","1","8","0","-1","62","2","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087464","1483087465","1483087509","1483087464","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087474","1483087476","1483087516","1483087474","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087500","1483087502","1483087552","1483087500","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087509","1483087510","1483087554","1483087509","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087517","1483087518","1483087568","1483087517","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087519","1483087521","1483087569","1483087519","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087525","1483087526","1483087562","1483087525","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087553","1483087554","1483087588","1483087553","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087563","1483087564","1483087630","1483087563","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087568","1483087569","1483087615","1483087568","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087589","1483087590","1483087628","1483087589","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087598","1483087599","1483087634","1483087598","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977585","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087616","1483087618","1483087659","1483087616","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087625","1483087626","1483087658","1483087625","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087629","1483087631","1483087686","1483087629","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087634","1483087635","1483087681","1483087634","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087658","1483087659","1483087697","1483087658","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087660","1483087662","1483087695","1483087660","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977605","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087681","1483087682","1483087744","1483087681","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087698","1483087699","1483087759","1483087698","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087740","1483087741","1483087794","1483087740","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087744","1483087745","1483087831","1483087744","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087754","1483087755","1483087838","1483087754","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087832","1483087835","1483087865","1483087832","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087868","1483087869","1483087900","1483087868","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087871","1483087872","1483087910","1483087871","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087874","1483087875","1483087907","1483087874","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087878","1483087879","1483087911","1483087878","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087884","1483087885","1483087952","1483087884","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087901","1483087902","1483087948","1483087901","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087908","1483087909","1483087948","1483087908","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977703","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087978","1483087981","1483088016","1483087978","1","8","0","-1","35","3","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977705","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087982","1483087984","1483088016","1483087982","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087985","1483087987","1483088018","1483087985","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977713","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088000","1483088001","1483088042","1483088000","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088019","1483088021","1483088063","1483088019","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088077","1483088078","1483088115","1483088077","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088092","1483088095","1483088129","1483088092","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088093","1483088095","1483088180","1483088093","1","8","0","-1","85","2","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977757","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088100","1483088101","1483088175","1483088100","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088115","1483088116","1483088150","1483088115","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088138","1483088141","1483088175","1483088138","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088159","1483088161","1483088194","1483088159","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088178","1483088179","1483088214","1483088178","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088180","1483088182","1483088216","1483088180","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088217","1483088218","1483088259","1483088217","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088222","1483088223","1483088264","1483088222","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088234","1483088235","1483088331","1483088234","1","8","0","-1","96","1","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088249","1483088250","1483088297","1483088249","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088260","1483088261","1483088327","1483088260","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088262","1483088264","1483088299","1483088262","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088343","1483088346","1483088385","1483088343","1","8","0","-1","39","3","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088353","1483088354","1483088385","1483088353","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088359","1483088360","1483088399","1483088359","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088363","1483088364","1483088406","1483088363","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088380","1483088381","1483088411","1483088380","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088447","1483088448","1483088528","1483088447","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088449","1483088451","1483088512","1483088449","1","8","0","-1","61","2","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088453","1483088454","1483088503","1483088453","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088465","1483088466","1483088496","1483088465","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088503","1483088504","1483088541","1483088503","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088528","1483088529","1483088563","1483088528","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977926","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088542","1483088544","1483088591","1483088542","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977928","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088551","1483088552","1483088600","1483088551","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088554","1483088555","1483088621","1483088554","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977932","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088564","1483088565","1483088603","1483088564","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088565","1483088568","1483088604","1483088565","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088570","1483088571","1483088644","1483088570","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088592","1483088593","1483088677","1483088592","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088601","1483088602","1483088656","1483088601","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977942","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088604","1483088605","1483088644","1483088604","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088648","1483088651","1483088681","1483088648","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088658","1483088660","1483088690","1483088658","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977966","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088678","1483088679","1483088710","1483088678","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088686","1483088687","1483088718","1483088686","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088691","1483088692","1483088733","1483088691","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977978","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088706","1483088709","1483088745","1483088706","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977980","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088711","1483088712","1483088747","1483088711","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088718","1483088719","1483088794","1483088718","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088748","1483088749","1483088783","1483088748","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088807","1483088808","1483088840","1483088807","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088840","1483088843","1483088892","1483088840","1","8","0","-1","49","3","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088844","1483088846","1483088909","1483088844","1","8","0","-1","63","2","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088847","1483088849","1483088884","1483088847","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088850","1483088852","1483088890","1483088850","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088854","1483088855","1483088928","1483088854","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088890","1483088891","1483088921","1483088890","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088893","1483088894","1483088934","1483088893","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088922","1483088923","1483088963","1483088922","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088935","1483088938","1483088976","1483088935","1","8","0","-1","38","3","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088954","1483088955","1483088997","1483088954","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088962","1483088963","1483089015","1483088962","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088963","1483088966","1483088998","1483088963","1","8","0","-1","32","3","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088977","1483088978","1483089027","1483088977","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088997","1483088998","1483089041","1483088997","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088998","1483088999","1483089061","1483088998","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088999","1483089001","1483089075","1483088999","1","8","0","-1","74","2","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089011","1483089012","1483089154","1483089011","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089028","1483089029","1483089084","1483089028","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089062","1483089063","1483089117","1483089062","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089076","1483089079","1483089150","1483089076","1","8","0","-1","71","3","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089084","1483089085","1483089133","1483089084","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089140","1483089141","1483089208","1483089140","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089150","1483089151","1483089227","1483089150","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089161","1483089163","1483089233","1483089161","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089209","1483089210","1483089270","1483089209","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089234","1483089235","1483089428","1483089234","1","8","0","-1","193","1","1544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089320","1483089322","1483089361","1483089320","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089379","1483089380","1483089413","1483089379","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089388","1483089389","1483089424","1483089388","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089389","1483089392","1483089422","1483089389","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089413","1483089414","1483089460","1483089413","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089423","1483089425","1483089457","1483089423","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089501","1483089504","1483089545","1483089501","1","8","0","-1","41","3","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089505","1483089506","1483089537","1483089505","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089506","1483089507","1483089538","1483089506","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978218","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089539","1483089541","1483089572","1483089539","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089573","1483089574","1483089605","1483089573","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089591","1483089593","1483089625","1483089591","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089632","1483089633","1483089664","1483089632","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089633","1483089634","1483089675","1483089633","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089645","1483089646","1483089733","1483089645","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089647","1483089649","1483089694","1483089647","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089740","1483089742","1483089774","1483089740","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089753","1483089756","1483089824","1483089753","1","8","0","-1","68","3","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089757","1483089759","1483089797","1483089757","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089761","1483089762","1483089797","1483089761","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089832","1483089834","1483089886","1483089832","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089838","1483089839","1483089869","1483089838","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089839","1483089842","1483089872","1483089839","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089844","1483089845","1483089911","1483089844","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089847","1483089848","1483089897","1483089847","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089850","1483089851","1483089918","1483089850","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089897","1483089898","1483089930","1483089897","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089911","1483089913","1483089955","1483089911","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089920","1483089921","1483089956","1483089920","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089933","1483089934","1483089965","1483089933","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089955","1483089956","1483089998","1483089955","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089956","1483089958","1483090003","1483089956","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090004","1483090005","1483090039","1483090004","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978406","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090019","1483090020","1483090052","1483090019","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978412","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090035","1483090037","1483090074","1483090035","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090040","1483090043","1483090078","1483090040","1","8","0","-1","35","3","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090053","1483090054","1483090087","1483090053","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090076","1483090078","1483090137","1483090076","1","8","0","-1","59","2","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090079","1483090081","1483090126","1483090079","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978432","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090084","1483090085","1483090159","1483090084","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978434","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090085","1483090088","1483090134","1483090085","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090095","1483090096","1483090129","1483090095","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090096","1483090099","1483090155","1483090096","1","8","0","-1","56","3","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090107","1483090108","1483090178","1483090107","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090127","1483090128","1483090172","1483090127","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090170","1483090171","1483090206","1483090170","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090173","1483090174","1483090209","1483090173","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090173","1483090174","1483090210","1483090173","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090178","1483090179","1483090234","1483090178","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090196","1483090198","1483090240","1483090196","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090208","1483090209","1483090239","1483090208","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090210","1483090213","1483090261","1483090210","1","8","0","-1","48","3","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090214","1483090216","1483090289","1483090214","1","8","0","-1","73","2","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090234","1483090235","1483090279","1483090234","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090240","1483090241","1483090339","1483090240","1","8","0","-1","98","1","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090280","1483090281","1483090355","1483090280","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090317","1483090318","1483090446","1483090317","1","8","0","-1","128","1","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090358","1483090359","1483090428","1483090358","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090430","1483090432","1483090553","1483090430","1","8","0","-1","121","2","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090447","1483090448","1483090574","1483090447","1","8","0","-1","126","1","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090462","1483090463","1483090564","1483090462","1","8","0","-1","101","1","808","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090465","1483090466","1483090560","1483090465","1","8","0","-1","94","1","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090551","1483090552","1483090693","1483090551","1","8","0","-1","141","1","1128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090554","1483090555","1483090699","1483090554","1","8","0","-1","144","1","1152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090560","1483090561","1483090645","1483090560","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090565","1483090566","1483090613","1483090565","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090603","1483090604","1483090649","1483090603","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090620","1483090623","1483090684","1483090620","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090646","1483090647","1483090689","1483090646","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090652","1483090653","1483090710","1483090652","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090685","1483090686","1483090733","1483090685","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090689","1483090690","1483090737","1483090689","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090694","1483090695","1483090737","1483090694","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090699","1483090700","1483090735","1483090699","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090710","1483090711","1483090765","1483090710","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090736","1483090737","1483090851","1483090736","1","8","0","-1","114","1","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090737","1483090738","1483090795","1483090737","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090765","1483090766","1483090802","1483090765","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090794","1483090795","1483090839","1483090794","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090796","1483090797","1483090837","1483090796","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090797","1483090798","1483090851","1483090797","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090800","1483090801","1483090838","1483090800","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978598","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090803","1483090804","1483090843","1483090803","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090838","1483090839","1483090876","1483090838","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090839","1483090840","1483090894","1483090839","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090852","1483090855","1483090901","1483090852","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090877","1483090878","1483090934","1483090877","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090877","1483090878","1483090935","1483090877","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090891","1483090892","1483090991","1483090891","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090897","1483090899","1483090954","1483090897","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090901","1483090902","1483090953","1483090901","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090934","1483090935","1483090981","1483090934","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090936","1483090938","1483090973","1483090936","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978637","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090954","1483090955","1483091015","1483090954","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090974","1483090975","1483091026","1483090974","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090977","1483090978","1483091030","1483090977","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090992","1483090993","1483091040","1483090992","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091031","1483091032","1483091086","1483091031","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091034","1483091035","1483091086","1483091034","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091086","1483091087","1483091181","1483091086","1","8","0","-1","94","1","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091087","1483091090","1483091133","1483091087","1","8","0","-1","43","3","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091133","1483091134","1483091181","1483091133","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091191","1483091192","1483091236","1483091191","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091193","1483091195","1483091237","1483091193","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091200","1483091201","1483091245","1483091200","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091203","1483091204","1483091237","1483091203","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091205","1483091207","1483091253","1483091205","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091238","1483091240","1483091280","1483091238","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091267","1483091268","1483091299","1483091267","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091278","1483091279","1483091325","1483091278","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091281","1483091282","1483091328","1483091281","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091282","1483091285","1483091321","1483091282","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978751","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091326","1483091327","1483091379","1483091326","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091328","1483091330","1483091374","1483091328","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091342","1483091343","1483091373","1483091342","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091355","1483091356","1483091393","1483091355","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091374","1483091377","1483091422","1483091374","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091377","1483091380","1483091423","1483091377","1","8","0","-1","43","3","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091380","1483091383","1483091417","1483091380","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091388","1483091389","1483091426","1483091388","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091393","1483091394","1483091426","1483091393","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091418","1483091419","1483091450","1483091418","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091420","1483091422","1483091460","1483091420","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091423","1483091424","1483091477","1483091423","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091424","1483091425","1483091487","1483091424","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091427","1483091428","1483091497","1483091427","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091460","1483091461","1483091526","1483091460","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091487","1483091488","1483091525","1483091487","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091494","1483091495","1483091527","1483091494","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091563","1483091564","1483091617","1483091563","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091566","1483091567","1483091615","1483091566","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091618","1483091619","1483091658","1483091618","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091627","1483091628","1483091659","1483091627","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091649","1483091650","1483091683","1483091649","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091658","1483091659","1483091693","1483091658","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091671","1483091672","1483091702","1483091671","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091679","1483091680","1483091712","1483091679","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091683","1483091684","1483091719","1483091683","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091714","1483091716","1483091771","1483091714","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091719","1483091720","1483091774","1483091719","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091720","1483091723","1483091839","1483091720","1","8","0","-1","116","3","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091727","1483091728","1483091761","1483091727","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091825","1483091827","1483091864","1483091825","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091828","1483091830","1483091860","1483091828","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091836","1483091837","1483091873","1483091836","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091845","1483091846","1483091885","1483091845","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091872","1483091873","1483091919","1483091872","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091920","1483091922","1483091961","1483091920","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091952","1483091954","1483091994","1483091952","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091962","1483091963","1483092005","1483091962","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091976","1483091977","1483092014","1483091976","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091979","1483091980","1483092092","1483091979","1","8","0","-1","112","1","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091990","1483091991","1483092029","1483091990","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091994","1483091995","1483092043","1483091994","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092005","1483092006","1483092052","1483092005","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092015","1483092016","1483092057","1483092015","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092053","1483092054","1483092102","1483092053","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092056","1483092058","1483092102","1483092056","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092066","1483092067","1483092099","1483092066","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092103","1483092106","1483092150","1483092103","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092108","1483092109","1483092153","1483092108","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092139","1483092140","1483092171","1483092139","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092151","1483092153","1483092191","1483092151","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092154","1483092156","1483092201","1483092154","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092167","1483092168","1483092201","1483092167","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979053","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092203","1483092204","1483092237","1483092203","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979063","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092237","1483092238","1483092269","1483092237","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979069","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092242","1483092244","1483092309","1483092242","1","8","0","-1","65","2","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979071","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092244","1483092247","1483092307","1483092244","1","8","0","-1","60","3","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979081","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092307","1483092308","1483092354","1483092307","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979083","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092310","1483092311","1483092352","1483092310","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979089","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092336","1483092337","1483092373","1483092336","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979101","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092372","1483092373","1483092421","1483092372","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092373","1483092376","1483092410","1483092373","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979111","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092395","1483092396","1483092428","1483092395","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092400","1483092401","1483092458","1483092400","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979121","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092411","1483092413","1483092453","1483092411","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092428","1483092429","1483092465","1483092428","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979129","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092453","1483092454","1483092516","1483092453","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979131","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092455","1483092457","1483092518","1483092455","1","8","0","-1","61","2","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092459","1483092460","1483092513","1483092459","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092468","1483092469","1483092519","1483092468","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092511","1483092514","1483092572","1483092511","1","8","0","-1","58","3","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092516","1483092517","1483092576","1483092516","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092519","1483092520","1483092571","1483092519","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092519","1483092520","1483092574","1483092519","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092573","1483092574","1483092673","1483092573","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092574","1483092575","1483092659","1483092574","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092656","1483092658","1483092697","1483092656","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092674","1483092675","1483092705","1483092674","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092684","1483092685","1483092717","1483092684","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092710","1483092711","1483092741","1483092710","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092717","1483092718","1483092777","1483092717","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092718","1483092720","1483092752","1483092718","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092720","1483092721","1483092830","1483092720","1","8","0","-1","109","1","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092735","1483092736","1483092767","1483092735","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092741","1483092742","1483092790","1483092741","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092753","1483092754","1483092790","1483092753","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092768","1483092769","1483092805","1483092768","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092790","1483092791","1483092826","1483092790","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092806","1483092807","1483092846","1483092806","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092811","1483092812","1483092843","1483092811","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092831","1483092832","1483092881","1483092831","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092839","1483092841","1483092880","1483092839","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092843","1483092844","1483092908","1483092843","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092850","1483092851","1483092910","1483092850","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092908","1483092909","1483092947","1483092908","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092910","1483092911","1483092943","1483092910","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092939","1483092940","1483092974","1483092939","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092957","1483092958","1483092995","1483092957","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093001","1483093002","1483093042","1483093001","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093018","1483093019","1483093051","1483093018","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093043","1483093044","1483093090","1483093043","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093053","1483093055","1483093087","1483093053","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093060","1483093063","1483093099","1483093060","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093066","1483093067","1483093103","1483093066","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093099","1483093100","1483093137","1483093099","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093104","1483093105","1483093143","1483093104","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093142","1483093143","1483093191","1483093142","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093145","1483093147","1483093180","1483093145","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093162","1483093163","1483093221","1483093162","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093164","1483093166","1483093204","1483093164","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093192","1483093194","1483093238","1483093192","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093207","1483093208","1483093256","1483093207","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093238","1483093240","1483093291","1483093238","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093244","1483093245","1483093303","1483093244","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093246","1483093248","1483093300","1483093246","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093257","1483093258","1483093303","1483093257","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093294","1483093295","1483093336","1483093294","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093303","1483093304","1483093355","1483093303","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093318","1483093319","1483093429","1483093318","1","8","0","-1","110","1","880","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093337","1483093338","1483093383","1483093337","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093355","1483093356","1483093390","1483093355","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093371","1483093372","1483093413","1483093371","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093384","1483093385","1483093442","1483093384","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979455","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093413","1483093414","1483093467","1483093413","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093421","1483093422","1483093469","1483093421","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093430","1483093432","1483093496","1483093430","1","8","0","-1","64","2","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093443","1483093446","1483093476","1483093443","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093467","1483093468","1483093499","1483093467","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093470","1483093471","1483093502","1483093470","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093473","1483093474","1483093504","1483093473","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093497","1483093498","1483093573","1483093497","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093499","1483093501","1483093582","1483093499","1","8","0","-1","81","2","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093503","1483093504","1483093632","1483093503","1","8","0","-1","128","1","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093505","1483093507","1483093586","1483093505","1","8","0","-1","79","2","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093511","1483093512","1483093574","1483093511","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093537","1483093538","1483093578","1483093537","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093575","1483093577","1483093637","1483093575","1","8","0","-1","60","2","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093578","1483093580","1483093638","1483093578","1","8","0","-1","58","2","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093582","1483093583","1483093626","1483093582","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093634","1483093636","1483093700","1483093634","1","8","0","-1","64","2","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093637","1483093638","1483093688","1483093637","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093638","1483093639","1483093691","1483093638","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093700","1483093701","1483093740","1483093700","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093717","1483093720","1483093785","1483093717","1","8","0","-1","65","3","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093722","1483093723","1483093786","1483093722","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093724","1483093726","1483093770","1483093724","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093738","1483093739","1483093865","1483093738","1","8","0","-1","126","1","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093741","1483093742","1483093865","1483093741","1","8","0","-1","123","1","984","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093770","1483093771","1483093899","1483093770","1","8","0","-1","128","1","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093786","1483093787","1483093849","1483093786","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093787","1483093789","1483093918","1483093787","1","8","0","-1","129","2","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093850","1483093851","1483093973","1483093850","1","8","0","-1","122","1","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093865","1483093866","1483093956","1483093865","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093878","1483093879","1483093988","1483093878","1","8","0","-1","109","1","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093900","1483093901","1483094010","1483093900","1","8","0","-1","109","1","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093973","1483093975","1483094138","1483093973","1","8","0","-1","163","2","1304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094023","1483094024","1483094063","1483094023","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094063","1483094064","1483094116","1483094063","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094071","1483094072","1483094117","1483094071","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979598","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094093","1483094094","1483094127","1483094093","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094118","1483094119","1483094156","1483094118","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094124","1483094125","1483094157","1483094124","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094126","1483094127","1483094165","1483094126","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094132","1483094134","1483094165","1483094132","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094138","1483094139","1483094176","1483094138","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094156","1483094157","1483094208","1483094156","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094158","1483094161","1483094251","1483094158","1","8","0","-1","90","3","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094165","1483094166","1483094220","1483094165","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094166","1483094169","1483094215","1483094166","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094177","1483094178","1483094271","1483094177","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094215","1483094216","1483094269","1483094215","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094216","1483094217","1483094280","1483094216","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094221","1483094222","1483094259","1483094221","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094260","1483094261","1483094310","1483094260","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094264","1483094265","1483094311","1483094264","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094272","1483094273","1483094333","1483094272","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094281","1483094284","1483094339","1483094281","1","8","0","-1","55","3","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094310","1483094311","1483094357","1483094310","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094312","1483094314","1483094394","1483094312","1","8","0","-1","80","2","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979661","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094319","1483094320","1483094402","1483094319","1","8","0","-1","82","1","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094391","1483094392","1483094431","1483094391","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094432","1483094434","1483094476","1483094432","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094469","1483094470","1483094524","1483094469","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094490","1483094491","1483094585","1483094490","1","8","0","-1","94","1","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094572","1483094573","1483094610","1483094572","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094575","1483094578","1483094623","1483094575","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094586","1483094587","1483094644","1483094586","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094590","1483094591","1483094641","1483094590","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094605","1483094606","1483094646","1483094605","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094610","1483094612","1483094667","1483094610","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094623","1483094624","1483094660","1483094623","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094645","1483094646","1483094676","1483094645","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094646","1483094649","1483094710","1483094646","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094659","1483094660","1483094718","1483094659","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094660","1483094663","1483094735","1483094660","1","8","0","-1","72","3","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094689","1483094690","1483094763","1483094689","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094711","1483094712","1483094745","1483094711","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094742","1483094743","1483094789","1483094742","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094763","1483094764","1483094797","1483094763","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094766","1483094767","1483094811","1483094766","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094810","1483094811","1483094853","1483094810","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094812","1483094814","1483094879","1483094812","1","8","0","-1","65","2","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094822","1483094823","1483094893","1483094822","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979800","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094831","1483094833","1483094884","1483094831","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094879","1483094880","1483094915","1483094879","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094953","1483094954","1483094984","1483094953","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094968","1483094969","1483095000","1483094968","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094972","1483094973","1483095016","1483094972","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094974","1483094975","1483095023","1483094974","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094975","1483094976","1483095016","1483094975","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094985","1483094988","1483095034","1483094985","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095000","1483095001","1483095033","1483095000","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095017","1483095020","1483095054","1483095017","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095023","1483095024","1483095084","1483095023","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095044","1483095045","1483095077","1483095044","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095074","1483095075","1483095107","1483095074","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095076","1483095077","1483095110","1483095076","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095077","1483095078","1483095142","1483095077","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095081","1483095082","1483095158","1483095081","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095083","1483095084","1483095157","1483095083","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095107","1483095108","1483095185","1483095107","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095111","1483095112","1483095188","1483095111","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095190","1483095192","1483095240","1483095190","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095214","1483095215","1483095350","1483095214","1","8","0","-1","135","1","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095215","1483095217","1483095262","1483095215","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095219","1483095220","1483095256","1483095219","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095257","1483095258","1483095308","1483095257","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095259","1483095261","1483095307","1483095259","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095309","1483095312","1483095375","1483095309","1","8","0","-1","63","3","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095312","1483095315","1483095345","1483095312","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095316","1483095318","1483095446","1483095316","1","8","0","-1","128","2","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979952","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095335","1483095336","1483095375","1483095335","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095346","1483095347","1483095385","1483095346","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095351","1483095353","1483095404","1483095351","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095376","1483095379","1483095419","1483095376","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095389","1483095390","1483095425","1483095389","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095404","1483095405","1483095451","1483095404","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979974","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095420","1483095422","1483095473","1483095420","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095424","1483095425","1483095474","1483095424","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979978","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095426","1483095428","1483095463","1483095426","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979980","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095446","1483095447","1483095526","1483095446","1","8","0","-1","79","1","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095447","1483095450","1483095526","1483095447","1","8","0","-1","76","3","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979984","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095451","1483095453","1483095599","1483095451","1","8","0","-1","146","2","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095464","1483095465","1483095511","1483095464","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095473","1483095474","1483095557","1483095473","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095474","1483095475","1483095546","1483095474","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095527","1483095528","1483095585","1483095527","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095564","1483095565","1483095616","1483095564","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095587","1483095589","1483095671","1483095587","1","8","0","-1","82","2","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095607","1483095608","1483095664","1483095607","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095616","1483095617","1483095698","1483095616","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095653","1483095654","1483095695","1483095653","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095663","1483095664","1483095709","1483095663","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095697","1483095698","1483095846","1483095697","1","8","0","-1","148","1","1184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095724","1483095725","1483095806","1483095724","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095748","1483095749","1483095802","1483095748","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095754","1483095755","1483095816","1483095754","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095757","1483095758","1483095794","1483095757","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095797","1483095799","1483095841","1483095797","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095807","1483095808","1483095877","1483095807","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095834","1483095835","1483095981","1483095834","1","8","0","-1","146","1","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095842","1483095843","1483095888","1483095842","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095878","1483095879","1483095957","1483095878","1","8","0","-1","78","1","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095888","1483095890","1483095963","1483095888","1","8","0","-1","73","2","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095893","1483095894","1483095959","1483095893","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095954","1483095955","1483096001","1483095954","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095957","1483095958","1483096031","1483095957","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095960","1483095961","1483096068","1483095960","1","8","0","-1","107","1","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095982","1483095983","1483096084","1483095982","1","8","0","-1","101","1","808","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095984","1483095986","1483096105","1483095984","1","8","0","-1","119","2","952","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096031","1483096032","1483096066","1483096031","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096066","1483096067","1483096097","1483096066","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096075","1483096078","1483096121","1483096075","1","8","0","-1","43","3","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096096","1483096097","1483096136","1483096096","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096137","1483096138","1483096168","1483096137","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096155","1483096156","1483096206","1483096155","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096160","1483096163","1483096210","1483096160","1","8","0","-1","47","3","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096169","1483096170","1483096304","1483096169","1","8","0","-1","134","1","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096187","1483096188","1483096228","1483096187","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096210","1483096211","1483096249","1483096210","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096229","1483096230","1483096260","1483096229","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096229","1483096230","1483096263","1483096229","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096250","1483096251","1483096288","1483096250","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096261","1483096262","1483096312","1483096261","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096289","1483096290","1483096320","1483096289","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096290","1483096293","1483096350","1483096290","1","8","0","-1","57","3","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096297","1483096298","1483096358","1483096297","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096305","1483096306","1483096391","1483096305","1","8","0","-1","85","1","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096313","1483096315","1483096358","1483096313","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980187","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096320","1483096321","1483096388","1483096320","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096359","1483096362","1483096421","1483096359","1","8","0","-1","59","3","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096362","1483096365","1483096506","1483096362","1","8","0","-1","141","3","1128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096389","1483096391","1483096470","1483096389","1","8","0","-1","79","2","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096401","1483096402","1483096488","1483096401","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096470","1483096471","1483096650","1483096470","1","8","0","-1","179","1","1432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096552","1483096553","1483096691","1483096552","1","8","0","-1","138","1","1104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096651","1483096652","1483096730","1483096651","1","8","0","-1","78","1","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096761","1483096762","1483096806","1483096761","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096764","1483096765","1483096828","1483096764","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096774","1483096775","1483096820","1483096774","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096821","1483096824","1483096871","1483096821","1","8","0","-1","47","3","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980323","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096966","1483096967","1483097029","1483096966","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096969","1483096970","1483097025","1483096969","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980327","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096973","1483096974","1483097036","1483096973","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980329","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096994","1483096995","1483097047","1483096994","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980337","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097026","1483097027","1483097062","1483097026","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980339","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097028","1483097029","1483097069","1483097028","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980341","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097031","1483097033","1483097110","1483097031","1","8","0","-1","77","2","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980343","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097034","1483097035","1483097112","1483097034","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097036","1483097038","1483097184","1483097036","1","8","0","-1","146","2","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097048","1483097049","1483097104","1483097048","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097063","1483097065","1483097102","1483097063","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097104","1483097105","1483097152","1483097104","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097105","1483097106","1483097169","1483097105","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097110","1483097111","1483097174","1483097110","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097113","1483097114","1483097172","1483097113","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097173","1483097174","1483097227","1483097173","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097175","1483097177","1483097214","1483097175","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097185","1483097187","1483097265","1483097185","1","8","0","-1","78","2","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097210","1483097212","1483097245","1483097210","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097227","1483097228","1483097259","1483097227","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097267","1483097269","1483097319","1483097267","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097292","1483097293","1483097355","1483097292","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097332","1483097333","1483097374","1483097332","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097340","1483097341","1483097387","1483097340","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097347","1483097348","1483097418","1483097347","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097356","1483097357","1483097408","1483097356","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097375","1483097376","1483097419","1483097375","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097388","1483097389","1483097429","1483097388","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097406","1483097407","1483097456","1483097406","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097409","1483097410","1483097448","1483097409","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097418","1483097419","1483097455","1483097418","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097420","1483097422","1483097455","1483097420","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097429","1483097431","1483097475","1483097429","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980455","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097449","1483097450","1483097495","1483097449","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097456","1483097457","1483097500","1483097456","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097457","1483097458","1483097491","1483097457","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097476","1483097477","1483097509","1483097476","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097485","1483097486","1483097520","1483097485","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097510","1483097512","1483097651","1483097510","1","8","0","-1","139","2","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097521","1483097523","1483097561","1483097521","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097540","1483097541","1483097594","1483097540","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097545","1483097546","1483097593","1483097545","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097628","1483097629","1483097683","1483097628","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097633","1483097634","1483097687","1483097633","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097677","1483097678","1483097715","1483097677","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097680","1483097681","1483097741","1483097680","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097699","1483097700","1483097772","1483097699","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097715","1483097716","1483097762","1483097715","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097738","1483097739","1483097773","1483097738","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097742","1483097743","1483097791","1483097742","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097752","1483097753","1483097797","1483097752","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097754","1483097755","1483097790","1483097754","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097763","1483097764","1483097817","1483097763","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097792","1483097794","1483097840","1483097792","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097797","1483097798","1483097855","1483097797","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097816","1483097817","1483097847","1483097816","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097817","1483097818","1483097872","1483097817","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097841","1483097844","1483097920","1483097841","1","8","0","-1","76","3","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097848","1483097849","1483097925","1483097848","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097873","1483097874","1483097935","1483097873","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097917","1483097918","1483097955","1483097917","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980585","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097920","1483097921","1483097957","1483097920","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097940","1483097941","1483097994","1483097940","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097958","1483097959","1483098010","1483097958","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097966","1483097967","1483098034","1483097966","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098103","1483098105","1483098140","1483098103","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098121","1483098122","1483098170","1483098121","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980637","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098141","1483098142","1483098176","1483098141","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098155","1483098156","1483098217","1483098155","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098158","1483098159","1483098224","1483098158","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098183","1483098184","1483098214","1483098183","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098197","1483098198","1483098263","1483098197","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098201","1483098202","1483098258","1483098201","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980661","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098207","1483098208","1483098292","1483098207","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098215","1483098216","1483098273","1483098215","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098218","1483098219","1483098258","1483098218","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098225","1483098226","1483098259","1483098225","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098258","1483098259","1483098294","1483098258","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098260","1483098262","1483098319","1483098260","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098264","1483098265","1483098301","1483098264","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098273","1483098274","1483098310","1483098273","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098293","1483098294","1483098328","1483098293","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098294","1483098295","1483098333","1483098294","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098348","1483098349","1483098500","1483098348","1","8","0","-1","151","1","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098375","1483098376","1483098427","1483098375","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098412","1483098413","1483098473","1483098412","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098414","1483098415","1483098479","1483098414","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098427","1483098428","1483098491","1483098427","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098473","1483098474","1483098560","1483098473","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098522","1483098523","1483098569","1483098522","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098534","1483098535","1483098570","1483098534","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098545","1483098546","1483098602","1483098545","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098552","1483098553","1483098591","1483098552","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098570","1483098571","1483098666","1483098570","1","8","0","-1","95","1","760","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098571","1483098573","1483098774","1483098571","1","8","0","-1","201","2","1608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098592","1483098593","1483098716","1483098592","1","8","0","-1","123","1","984","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098603","1483098604","1483098685","1483098603","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098662","1483098663","1483098703","1483098662","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098684","1483098685","1483098719","1483098684","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098686","1483098688","1483098730","1483098686","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098701","1483098702","1483098736","1483098701","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098704","1483098705","1483098740","1483098704","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098717","1483098718","1483098752","1483098717","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098720","1483098721","1483098756","1483098720","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098730","1483098731","1483098763","1483098730","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098737","1483098738","1483098768","1483098737","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098757","1483098758","1483098804","1483098757","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098766","1483098767","1483098824","1483098766","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098769","1483098770","1483098819","1483098769","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098805","1483098807","1483098855","1483098805","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098856","1483098859","1483098890","1483098856","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098875","1483098877","1483098923","1483098875","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098941","1483098943","1483098994","1483098941","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098945","1483098946","1483099088","1483098945","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098959","1483098960","1483098999","1483098959","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098964","1483098965","1483099031","1483098964","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098968","1483098969","1483099001","1483098968","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098995","1483098996","1483099028","1483098995","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980863","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099001","1483099003","1483099044","1483099001","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099014","1483099015","1483099050","1483099014","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980867","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099028","1483099029","1483099061","1483099028","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099030","1483099031","1483099062","1483099030","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099031","1483099032","1483099065","1483099031","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099077","1483099078","1483099138","1483099077","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099088","1483099089","1483099128","1483099088","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099090","1483099092","1483099131","1483099090","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099092","1483099095","1483099218","1483099092","1","8","0","-1","123","3","984","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099105","1483099106","1483099147","1483099105","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099106","1483099109","1483099157","1483099106","1","8","0","-1","48","3","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099167","1483099168","1483099207","1483099167","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099196","1483099198","1483099253","1483099196","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099260","1483099262","1483099333","1483099260","1","8","0","-1","71","2","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099268","1483099269","1483099309","1483099268","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099271","1483099272","1483099371","1483099271","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099274","1483099275","1483099332","1483099274","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099359","1483099361","1483099404","1483099359","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099360","1483099361","1483099401","1483099360","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099372","1483099373","1483099412","1483099372","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980974","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099405","1483099406","1483099454","1483099405","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980978","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099412","1483099413","1483099449","1483099412","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099413","1483099416","1483099509","1483099413","1","8","0","-1","93","3","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099422","1483099423","1483099469","1483099422","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099430","1483099431","1483099474","1483099430","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099454","1483099455","1483099488","1483099454","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099469","1483099470","1483099540","1483099469","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099474","1483099475","1483099513","1483099474","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099513","1483099516","1483099565","1483099513","1","8","0","-1","49","3","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099524","1483099525","1483099559","1483099524","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099541","1483099542","1483099583","1483099541","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099544","1483099545","1483099583","1483099544","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981019","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099565","1483099566","1483099613","1483099565","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099585","1483099587","1483099700","1483099585","1","8","0","-1","113","2","904","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099600","1483099601","1483099669","1483099600","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099613","1483099614","1483099713","1483099613","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981039","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099669","1483099670","1483099724","1483099669","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981041","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099676","1483099678","1483099727","1483099676","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981043","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099681","1483099682","1483099755","1483099681","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981055","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099713","1483099715","1483099776","1483099713","1","8","0","-1","61","2","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981057","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099724","1483099725","1483099779","1483099724","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981061","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099728","1483099731","1483099766","1483099728","1","8","0","-1","35","3","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981063","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099744","1483099745","1483099785","1483099744","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981065","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099756","1483099757","1483099822","1483099756","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981067","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099759","1483099760","1483099853","1483099759","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981069","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099767","1483099768","1483099840","1483099767","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981073","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099777","1483099778","1483099956","1483099777","1","8","0","-1","178","1","1424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981075","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099780","1483099781","1483099878","1483099780","1","8","0","-1","97","1","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981077","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099785","1483099786","1483099894","1483099785","1","8","0","-1","108","1","864","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981081","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099823","1483099824","1483099896","1483099823","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099840","1483099841","1483099914","1483099840","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981091","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099878","1483099879","1483099944","1483099878","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981097","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099897","1483099898","1483099981","1483099897","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981101","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099944","1483099945","1483100017","1483099944","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981107","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099962","1483099963","1483100003","1483099962","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981111","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099974","1483099975","1483100046","1483099974","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981119","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100006","1483100007","1483100180","1483100006","1","8","0","-1","173","1","1384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100047","1483100049","1483100152","1483100047","1","8","0","-1","103","2","824","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981129","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100075","1483100076","1483100231","1483100075","1","8","0","-1","155","1","1240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100153","1483100154","1483100307","1483100153","1","8","0","-1","153","1","1224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981147","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100181","1483100182","1483100328","1483100181","1","8","0","-1","146","1","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981149","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100222","1483100223","1483100318","1483100222","1","8","0","-1","95","1","760","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100227","1483100228","1483100360","1483100227","1","8","0","-1","132","1","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981153","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100232","1483100233","1483100343","1483100232","1","8","0","-1","110","1","880","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981155","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100243","1483100244","1483100380","1483100243","1","8","0","-1","136","1","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100319","1483100320","1483100499","1483100319","1","8","0","-1","179","1","1432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100329","1483100330","1483100505","1483100329","1","8","0","-1","175","1","1400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100343","1483100344","1483100622","1483100343","1","8","0","-1","278","1","2224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100361","1483100362","1483100492","1483100361","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981171","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100380","1483100381","1483100565","1483100380","1","8","0","-1","184","1","1472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100472","1483100475","1483100532","1483100472","1","8","0","-1","57","3","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100492","1483100493","1483100546","1483100492","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100619","1483100621","1483100693","1483100619","1","8","0","-1","72","2","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100623","1483100624","1483100724","1483100623","1","8","0","-1","100","1","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100666","1483100667","1483100757","1483100666","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100674","1483100675","1483100728","1483100674","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100694","1483100695","1483100778","1483100694","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100696","1483100698","1483100745","1483100696","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100724","1483100725","1483100797","1483100724","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100728","1483100729","1483100785","1483100728","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100746","1483100747","1483100801","1483100746","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100758","1483100759","1483100847","1483100758","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100779","1483100780","1483100819","1483100779","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100785","1483100786","1483100847","1483100785","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100788","1483100789","1483100844","1483100788","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100797","1483100800","1483100877","1483100797","1","8","0","-1","77","3","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100801","1483100803","1483100861","1483100801","1","8","0","-1","58","2","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100848","1483100851","1483100912","1483100848","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100862","1483100863","1483100972","1483100862","1","8","0","-1","109","1","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100876","1483100877","1483100959","1483100876","1","8","0","-1","82","1","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100877","1483100878","1483100960","1483100877","1","8","0","-1","82","1","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100912","1483100913","1483100994","1483100912","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100960","1483100963","1483101018","1483100960","1","8","0","-1","55","3","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101017","1483101019","1483101071","1483101017","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101071","1483101072","1483101177","1483101071","1","8","0","-1","105","1","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101080","1483101081","1483101189","1483101080","1","8","0","-1","108","1","864","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101087","1483101088","1483101133","1483101087","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101123","1483101124","1483101173","1483101123","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101134","1483101135","1483101180","1483101134","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101176","1483101177","1483101221","1483101176","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101177","1483101178","1483101231","1483101177","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101179","1483101180","1483101219","1483101179","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101216","1483101218","1483101249","1483101216","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101222","1483101224","1483101361","1483101222","1","8","0","-1","137","2","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101232","1483101233","1483101278","1483101232","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101238","1483101239","1483101277","1483101238","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101249","1483101250","1483101286","1483101249","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101277","1483101278","1483101311","1483101277","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101279","1483101281","1483101331","1483101279","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101293","1483101294","1483101348","1483101293","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101312","1483101313","1483101358","1483101312","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101314","1483101315","1483101352","1483101314","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101358","1483101361","1483101432","1483101358","1","8","0","-1","71","3","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101362","1483101364","1483101432","1483101362","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101412","1483101413","1483101446","1483101412","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101466","1483101467","1483101510","1483101466","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101475","1483101478","1483101515","1483101475","1","8","0","-1","37","3","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101515","1483101516","1483101567","1483101515","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101528","1483101529","1483101568","1483101528","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101530","1483101531","1483101628","1483101530","1","8","0","-1","97","1","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101537","1483101538","1483101581","1483101537","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101540","1483101541","1483101576","1483101540","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101567","1483101568","1483101611","1483101567","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101576","1483101577","1483101607","1483101576","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101607","1483101608","1483101638","1483101607","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101613","1483101615","1483101669","1483101613","1","8","0","-1","54","2","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101616","1483101618","1483101662","1483101616","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101663","1483101665","1483101718","1483101663","1","8","0","-1","53","2","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101670","1483101671","1483101725","1483101670","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101672","1483101674","1483101768","1483101672","1","8","0","-1","94","2","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101717","1483101718","1483101759","1483101717","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101719","1483101721","1483101760","1483101719","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101794","1483101796","1483101835","1483101794","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101798","1483101799","1483101842","1483101798","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101801","1483101802","1483101847","1483101801","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101823","1483101824","1483101884","1483101823","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101835","1483101838","1483101869","1483101835","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981556","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101897","1483101898","1483101931","1483101897","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101899","1483101901","1483101933","1483101899","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101932","1483101934","1483101974","1483101932","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101934","1483101935","1483101967","1483101934","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101939","1483101941","1483102063","1483101939","1","8","0","-1","122","2","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101941","1483101943","1483101981","1483101941","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101960","1483101961","1483101991","1483101960","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101968","1483101969","1483102003","1483101968","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981585","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101975","1483101976","1483102020","1483101975","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101977","1483101979","1483102023","1483101977","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101992","1483101993","1483102042","1483101992","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102021","1483102023","1483102064","1483102021","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102023","1483102024","1483102065","1483102023","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102066","1483102067","1483102102","1483102066","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102072","1483102073","1483102126","1483102072","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102098","1483102099","1483102180","1483102098","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102103","1483102105","1483102142","1483102103","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102140","1483102142","1483102180","1483102140","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102163","1483102164","1483102211","1483102163","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981649","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102164","1483102165","1483102211","1483102164","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102201","1483102202","1483102235","1483102201","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102205","1483102208","1483102265","1483102205","1","8","0","-1","57","3","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102211","1483102212","1483102284","1483102211","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102212","1483102214","1483102356","1483102212","1","8","0","-1","142","2","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102214","1483102215","1483102263","1483102214","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102222","1483102223","1483102260","1483102222","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102236","1483102237","1483102273","1483102236","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981675","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102260","1483102261","1483102295","1483102260","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102264","1483102266","1483102303","1483102264","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102266","1483102267","1483102306","1483102266","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981687","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102284","1483102285","1483102325","1483102284","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981689","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102296","1483102297","1483102327","1483102296","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102303","1483102304","1483102355","1483102303","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102307","1483102308","1483102358","1483102307","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981695","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102318","1483102319","1483102375","1483102318","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102328","1483102331","1483102363","1483102328","1","8","0","-1","32","3","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102359","1483102360","1483102402","1483102359","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981713","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102376","1483102378","1483102505","1483102376","1","8","0","-1","127","2","1016","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981717","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102382","1483102384","1483102435","1483102382","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981721","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102406","1483102407","1483102440","1483102406","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981723","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102418","1483102419","1483102465","1483102418","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981727","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102435","1483102438","1483102476","1483102435","1","8","0","-1","38","3","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981735","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102466","1483102469","1483102500","1483102466","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981739","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102477","1483102480","1483102535","1483102477","1","8","0","-1","55","3","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981755","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102528","1483102530","1483102573","1483102528","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981757","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102531","1483102532","1483102568","1483102531","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102532","1483102533","1483102612","1483102532","1","8","0","-1","79","1","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981761","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102535","1483102536","1483102590","1483102535","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102553","1483102554","1483102593","1483102553","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981765","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102569","1483102570","1483102604","1483102569","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102574","1483102575","1483102643","1483102574","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102590","1483102591","1483102661","1483102590","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102591","1483102593","1483102663","1483102591","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102605","1483102606","1483102662","1483102605","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102613","1483102614","1483102666","1483102613","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102644","1483102645","1483102710","1483102644","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102656","1483102657","1483102723","1483102656","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102661","1483102662","1483102730","1483102661","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102662","1483102663","1483102730","1483102662","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102664","1483102665","1483102706","1483102664","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102667","1483102668","1483102726","1483102667","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102710","1483102711","1483102802","1483102710","1","8","0","-1","91","1","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102723","1483102724","1483102824","1483102723","1","8","0","-1","100","1","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102731","1483102734","1483102849","1483102731","1","8","0","-1","115","3","920","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102802","1483102803","1483102848","1483102802","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102825","1483102826","1483102860","1483102825","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102848","1483102849","1483102887","1483102848","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102850","1483102852","1483102896","1483102850","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981824","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102861","1483102863","1483102916","1483102861","1","8","0","-1","53","2","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981826","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102867","1483102868","1483102909","1483102867","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102887","1483102888","1483102923","1483102887","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102925","1483102927","1483102965","1483102925","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102935","1483102936","1483102982","1483102935","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103045","1483103046","1483103077","1483103045","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103045","1483103046","1483103090","1483103045","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103047","1483103049","1483103178","1483103047","1","8","0","-1","129","2","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103054","1483103055","1483103096","1483103054","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103059","1483103060","1483103110","1483103059","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103100","1483103101","1483103142","1483103100","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103107","1483103108","1483103146","1483103107","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103111","1483103114","1483103152","1483103111","1","8","0","-1","38","3","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103123","1483103124","1483103169","1483103123","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103143","1483103144","1483103189","1483103143","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103179","1483103180","1483103218","1483103179","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103198","1483103199","1483103238","1483103198","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103218","1483103219","1483103251","1483103218","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103272","1483103274","1483103307","1483103272","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103315","1483103317","1483103349","1483103315","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103317","1483103320","1483103382","1483103317","1","8","0","-1","62","3","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103321","1483103322","1483103370","1483103321","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103324","1483103326","1483103365","1483103324","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103330","1483103331","1483103392","1483103330","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103337","1483103338","1483103369","1483103337","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103349","1483103350","1483103383","1483103349","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103366","1483103367","1483103398","1483103366","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103370","1483103371","1483103407","1483103370","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103371","1483103374","1483103419","1483103371","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103392","1483103393","1483103442","1483103392","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103406","1483103407","1483103440","1483103406","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103407","1483103410","1483103456","1483103407","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103442","1483103443","1483103479","1483103442","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103443","1483103446","1483103508","1483103443","1","8","0","-1","62","3","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103447","1483103449","1483103578","1483103447","1","8","0","-1","129","2","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103457","1483103458","1483103496","1483103457","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103479","1483103480","1483103542","1483103479","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103505","1483103506","1483103555","1483103505","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103508","1483103509","1483103542","1483103508","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103542","1483103543","1483103577","1483103542","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982061","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103555","1483103557","1483103587","1483103555","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982067","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103579","1483103581","1483103618","1483103579","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982071","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103590","1483103591","1483103651","1483103590","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982081","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103619","1483103620","1483103707","1483103619","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982083","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103620","1483103621","1483103663","1483103620","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982087","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103652","1483103653","1483103693","1483103652","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982089","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103654","1483103656","1483103725","1483103654","1","8","0","-1","69","2","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982091","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103664","1483103665","1483103733","1483103664","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982095","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103671","1483103672","1483103705","1483103671","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982099","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103693","1483103694","1483103732","1483103693","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982105","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103707","1483103709","1483103757","1483103707","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982107","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103726","1483103727","1483103786","1483103726","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982109","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103733","1483103734","1483103765","1483103733","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982119","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103767","1483103769","1483103839","1483103767","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982121","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103782","1483103783","1483103829","1483103782","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103801","1483103804","1483103847","1483103801","1","8","0","-1","43","3","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103827","1483103828","1483103867","1483103827","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103830","1483103831","1483103866","1483103830","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103847","1483103848","1483103882","1483103847","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103849","1483103851","1483103907","1483103849","1","8","0","-1","56","2","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103866","1483103867","1483103924","1483103866","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103868","1483103869","1483103929","1483103868","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103926","1483103928","1483103996","1483103926","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103930","1483103931","1483103981","1483103930","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103936","1483103938","1483104028","1483103936","1","8","0","-1","90","2","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103997","1483103998","1483104135","1483103997","1","8","0","-1","137","1","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104021","1483104022","1483104155","1483104021","1","8","0","-1","133","1","1064","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104028","1483104029","1483104093","1483104028","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104061","1483104062","1483104204","1483104061","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104094","1483104095","1483104207","1483104094","1","8","0","-1","112","1","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104105","1483104106","1483104222","1483104105","1","8","0","-1","116","1","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104156","1483104157","1483104252","1483104156","1","8","0","-1","95","1","760","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104205","1483104206","1483104376","1483104205","1","8","0","-1","170","1","1360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104207","1483104209","1483104452","1483104207","1","8","0","-1","243","2","1944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104223","1483104224","1483104350","1483104223","1","8","0","-1","126","1","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104253","1483104254","1483104325","1483104253","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104366","1483104368","1483104425","1483104366","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104391","1483104392","1483104436","1483104391","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104453","1483104455","1483104537","1483104453","1","8","0","-1","82","2","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104530","1483104531","1483104587","1483104530","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104531","1483104533","1483104578","1483104531","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104533","1483104534","1483104582","1483104533","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104537","1483104538","1483104573","1483104537","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104558","1483104559","1483104624","1483104558","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104574","1483104575","1483104640","1483104574","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104579","1483104580","1483104649","1483104579","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104582","1483104583","1483104633","1483104582","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104586","1483104587","1483104621","1483104586","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104587","1483104589","1483104630","1483104587","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104622","1483104623","1483104666","1483104622","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104625","1483104626","1483104660","1483104625","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104631","1483104632","1483104720","1483104631","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104633","1483104635","1483104705","1483104633","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104641","1483104642","1483104740","1483104641","1","8","0","-1","98","1","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104660","1483104661","1483104720","1483104660","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104667","1483104668","1483104769","1483104667","1","8","0","-1","101","1","808","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104720","1483104721","1483104787","1483104720","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104721","1483104724","1483104795","1483104721","1","8","0","-1","71","3","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104756","1483104757","1483104817","1483104756","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104770","1483104771","1483104837","1483104770","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104816","1483104817","1483104869","1483104816","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104817","1483104820","1483104881","1483104817","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104840","1483104841","1483104904","1483104840","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104881","1483104883","1483105050","1483104881","1","8","0","-1","167","2","1336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982356","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104927","1483104928","1483105026","1483104927","1","8","0","-1","98","1","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104955","1483104958","1483105000","1483104955","1","8","0","-1","42","3","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104976","1483104978","1483105045","1483104976","1","8","0","-1","67","2","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982372","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104999","1483105000","1483105044","1483104999","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105001","1483105003","1483105040","1483105001","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105027","1483105028","1483105064","1483105027","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105041","1483105042","1483105073","1483105041","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982386","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105046","1483105049","1483105079","1483105046","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982388","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105050","1483105052","1483105097","1483105050","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105073","1483105074","1483105131","1483105073","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982394","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105076","1483105078","1483105161","1483105076","1","8","0","-1","83","2","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105079","1483105080","1483105236","1483105079","1","8","0","-1","156","1","1248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105080","1483105081","1483105155","1483105080","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982402","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105131","1483105132","1483105221","1483105131","1","8","0","-1","89","1","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982410","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105161","1483105163","1483105221","1483105161","1","8","0","-1","58","2","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982412","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105188","1483105189","1483105242","1483105188","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105189","1483105192","1483105237","1483105189","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105222","1483105224","1483105274","1483105222","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105224","1483105225","1483105270","1483105224","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105238","1483105240","1483105286","1483105238","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105259","1483105260","1483105300","1483105259","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105273","1483105274","1483105314","1483105273","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105275","1483105277","1483105345","1483105275","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105298","1483105299","1483105355","1483105298","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105301","1483105302","1483105390","1483105301","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105301","1483105302","1483105337","1483105301","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105370","1483105371","1483105415","1483105370","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105391","1483105392","1483105427","1483105391","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105394","1483105395","1483105426","1483105394","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105398","1483105399","1483105438","1483105398","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105403","1483105404","1483105446","1483105403","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105415","1483105416","1483105460","1483105415","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105416","1483105419","1483105504","1483105416","1","8","0","-1","85","3","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105438","1483105439","1483105513","1483105438","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105446","1483105447","1483105505","1483105446","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105460","1483105461","1483105547","1483105460","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105505","1483105506","1483105547","1483105505","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982494","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105506","1483105509","1483105551","1483105506","1","8","0","-1","42","3","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105513","1483105514","1483105553","1483105513","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105547","1483105548","1483105606","1483105547","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105548","1483105549","1483105616","1483105548","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105552","1483105554","1483105599","1483105552","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105554","1483105555","1483105590","1483105554","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982512","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105591","1483105593","1483105652","1483105591","1","8","0","-1","59","2","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105600","1483105601","1483105644","1483105600","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105607","1483105608","1483105695","1483105607","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105617","1483105618","1483105694","1483105617","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105645","1483105646","1483105717","1483105645","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105652","1483105653","1483105701","1483105652","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105678","1483105679","1483105721","1483105678","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105694","1483105695","1483105757","1483105694","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105696","1483105697","1483105733","1483105696","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105744","1483105745","1483105786","1483105744","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982556","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105786","1483105787","1483105829","1483105786","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105787","1483105789","1483105915","1483105787","1","8","0","-1","126","2","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105796","1483105798","1483105851","1483105796","1","8","0","-1","53","2","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105820","1483105822","1483105903","1483105820","1","8","0","-1","81","2","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105829","1483105830","1483105866","1483105829","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105838","1483105839","1483105893","1483105838","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105852","1483105853","1483105903","1483105852","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105863","1483105864","1483105921","1483105863","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105894","1483105895","1483105932","1483105894","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105916","1483105918","1483105966","1483105916","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105922","1483105923","1483105971","1483105922","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105925","1483105926","1483105999","1483105925","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105932","1483105933","1483106073","1483105932","1","8","0","-1","140","1","1120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105934","1483105935","1483105985","1483105934","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105972","1483105973","1483106016","1483105972","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106002","1483106003","1483106035","1483106002","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106036","1483106038","1483106118","1483106036","1","8","0","-1","80","2","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106050","1483106051","1483106140","1483106050","1","8","0","-1","89","1","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106075","1483106077","1483106129","1483106075","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106140","1483106142","1483106188","1483106140","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106169","1483106170","1483106220","1483106169","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106188","1483106189","1483106280","1483106188","1","8","0","-1","91","1","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982661","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106208","1483106209","1483106271","1483106208","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106221","1483106222","1483106315","1483106221","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106268","1483106269","1483106333","1483106268","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106271","1483106272","1483106337","1483106271","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982677","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106281","1483106282","1483106317","1483106281","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106318","1483106319","1483106373","1483106318","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106321","1483106322","1483106385","1483106321","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982685","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106333","1483106334","1483106424","1483106333","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982695","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106362","1483106363","1483106456","1483106362","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106376","1483106377","1483106448","1483106376","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106385","1483106386","1483106416","1483106385","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106417","1483106418","1483106459","1483106417","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982715","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106427","1483106428","1483106504","1483106427","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982719","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106457","1483106458","1483106515","1483106457","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982721","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106460","1483106461","1483106545","1483106460","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106622","1483106623","1483106732","1483106622","1","8","0","-1","109","1","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106710","1483106711","1483106748","1483106710","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106730","1483106731","1483106800","1483106730","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106733","1483106735","1483106767","1483106733","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106748","1483106749","1483106786","1483106748","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106768","1483106769","1483106812","1483106768","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106786","1483106787","1483106840","1483106786","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982788","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106790","1483106791","1483106891","1483106790","1","8","0","-1","100","1","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106793","1483106794","1483106838","1483106793","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106801","1483106802","1483106849","1483106801","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106807","1483106808","1483106868","1483106807","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106840","1483106843","1483106883","1483106840","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106844","1483106846","1483106898","1483106844","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106850","1483106851","1483106887","1483106850","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106887","1483106888","1483106954","1483106887","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106923","1483106924","1483107005","1483106923","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106962","1483106963","1483107029","1483106962","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106969","1483106970","1483107037","1483106969","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107005","1483107006","1483107042","1483107005","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107006","1483107009","1483107123","1483107006","1","8","0","-1","114","3","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107030","1483107031","1483107076","1483107030","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107043","1483107044","1483107102","1483107043","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107077","1483107078","1483107141","1483107077","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107102","1483107104","1483107211","1483107102","1","8","0","-1","107","2","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107141","1483107142","1483107198","1483107141","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107171","1483107172","1483107277","1483107171","1","8","0","-1","105","1","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107200","1483107202","1483107279","1483107200","1","8","0","-1","77","2","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107212","1483107213","1483107315","1483107212","1","8","0","-1","102","1","816","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107280","1483107281","1483107476","1483107280","1","8","0","-1","195","1","1560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107378","1483107379","1483107485","1483107378","1","8","0","-1","106","1","848","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107478","1483107481","1483107539","1483107478","1","8","0","-1","58","3","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107482","1483107484","1483107524","1483107482","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107485","1483107487","1483107523","1483107485","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107489","1483107490","1483107523","1483107489","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107525","1483107527","1483107574","1483107525","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107540","1483107541","1483107587","1483107540","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107548","1483107549","1483107604","1483107548","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107550","1483107551","1483107606","1483107550","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107551","1483107552","1483107681","1483107551","1","8","0","-1","129","1","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107574","1483107575","1483107630","1483107574","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107588","1483107589","1483107636","1483107588","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107605","1483107606","1483107648","1483107605","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107606","1483107609","1483107664","1483107606","1","8","0","-1","55","3","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107630","1483107631","1483107675","1483107630","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107636","1483107637","1483107670","1483107636","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107649","1483107651","1483107699","1483107649","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107653","1483107654","1483107693","1483107653","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107664","1483107665","1483107708","1483107664","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"]]} +{ + "success": true, + "fields": [ + "Local Job Id", + "Local Job Id Raw", + "Resource", + "Timezone", + "System Username (Deidentified)", + "User", + "Organization", + "Quality of Service", + "Submit Time (Timestamp)", + "Start Time (Timestamp)", + "End Time (Timestamp)", + "Eligible Time (Timestamp)", + "Nodes", + "Cores", + "GPUs", + "Memory Used", + "Wall Time", + "Wait Time", + "Core Time", + "GPU Time", + "Exit Code", + "Exit State", + "Requested Cores", + "Requested memory", + "Requested Wall Time", + "Queue", + "Decanal Unit", + "Department", + "PI Group" + ], + "data": [ + [ + "6109029", + "6109029", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "green-grape", + "1483088296", + "1483088296", + "1483088301", + "1483088296", + "1", + "1", + "0", + "-1", + "5", + "0", + "5", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110613", + "6110613", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "green-grape", + "1483119144", + "1483119144", + "1483119151", + "1483119144", + "1", + "1", + "0", + "-1", + "7", + "0", + "7", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6111540", + "6111540", + "Robertson", + "UTC", + "", + "Roller", + "Screwdriver", + "flapper", + "1483129488", + "1483129488", + "1483129510", + "1483129488", + "1", + "5", + "0", + "-1", + "22", + "0", + "110", + "0", + "1:0", + "FAILED", + "1", + "40000Mn", + "86400", + "pumpernickel", + "Geosciences", + "Earth Sciences", + "Geology and Paleontology" + ], + [ + "968193", + "968193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056132", + "1483056132", + "1483056159", + "1483056132", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968222", + "968222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056227", + "1483056227", + "1483056256", + "1483056227", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968242", + "968242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056285", + "1483056285", + "1483056308", + "1483056285", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968268", + "968268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056366", + "1483056366", + "1483056390", + "1483056366", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968282", + "968282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056431", + "1483056431", + "1483056459", + "1483056431", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968310", + "968310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056504", + "1483056504", + "1483056533", + "1483056504", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968314", + "968314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056512", + "1483056512", + "1483056539", + "1483056512", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968332", + "968332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056579", + "1483056579", + "1483056604", + "1483056579", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968360", + "968360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056682", + "1483056682", + "1483056704", + "1483056682", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968381", + "968381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056733", + "1483056733", + "1483056757", + "1483056733", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968401", + "968401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056790", + "1483056790", + "1483056819", + "1483056790", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968411", + "968411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056827", + "1483056827", + "1483056854", + "1483056827", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968421", + "968421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056855", + "1483056855", + "1483056878", + "1483056855", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968425", + "968425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056863", + "1483056863", + "1483056882", + "1483056863", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968431", + "968431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056873", + "1483056873", + "1483056901", + "1483056873", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968452", + "968452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056908", + "1483056908", + "1483056935", + "1483056908", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968465", + "968465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056945", + "1483056945", + "1483056974", + "1483056945", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968489", + "968489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057048", + "1483057048", + "1483057077", + "1483057048", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968536", + "968536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057206", + "1483057206", + "1483057235", + "1483057206", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968542", + "968542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057226", + "1483057226", + "1483057251", + "1483057226", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968544", + "968544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057236", + "1483057236", + "1483057257", + "1483057236", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968560", + "968560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057297", + "1483057297", + "1483057321", + "1483057297", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968680", + "968680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057736", + "1483057736", + "1483057757", + "1483057736", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968682", + "968682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057743", + "1483057743", + "1483057765", + "1483057743", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968718", + "968718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057857", + "1483057857", + "1483057879", + "1483057857", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968722", + "968722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057875", + "1483057875", + "1483057899", + "1483057875", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968724", + "968724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057880", + "1483057880", + "1483057903", + "1483057880", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968726", + "968726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057891", + "1483057891", + "1483057913", + "1483057891", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968728", + "968728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057900", + "1483057900", + "1483057918", + "1483057900", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968732", + "968732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057904", + "1483057904", + "1483057929", + "1483057904", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968736", + "968736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057914", + "1483057914", + "1483057938", + "1483057914", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968764", + "968764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057971", + "1483057971", + "1483057995", + "1483057971", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968766", + "968766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057972", + "1483057972", + "1483057994", + "1483057972", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968768", + "968768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057989", + "1483057989", + "1483058013", + "1483057989", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968770", + "968770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057994", + "1483057994", + "1483058018", + "1483057994", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968774", + "968774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058013", + "1483058013", + "1483058039", + "1483058013", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968786", + "968786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058039", + "1483058039", + "1483058068", + "1483058039", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968790", + "968790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058044", + "1483058044", + "1483058064", + "1483058044", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968815", + "968815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058116", + "1483058116", + "1483058144", + "1483058116", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968829", + "968829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058148", + "1483058148", + "1483058176", + "1483058148", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968835", + "968835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058177", + "1483058177", + "1483058198", + "1483058177", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968862", + "968862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058279", + "1483058279", + "1483058306", + "1483058279", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968864", + "968864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058283", + "1483058283", + "1483058309", + "1483058283", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968870", + "968870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058307", + "1483058307", + "1483058336", + "1483058307", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968874", + "968874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058310", + "1483058310", + "1483058336", + "1483058310", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968876", + "968876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058322", + "1483058322", + "1483058346", + "1483058322", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968880", + "968880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058335", + "1483058335", + "1483058363", + "1483058335", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968884", + "968884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058337", + "1483058337", + "1483058363", + "1483058337", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968920", + "968920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058474", + "1483058474", + "1483058503", + "1483058474", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968976", + "968976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058680", + "1483058680", + "1483058709", + "1483058680", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969230", + "969230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059986", + "1483059986", + "1483060013", + "1483059986", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969245", + "969245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060045", + "1483060045", + "1483060071", + "1483060045", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969315", + "969315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060288", + "1483060288", + "1483060317", + "1483060288", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969369", + "969369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060469", + "1483060469", + "1483060491", + "1483060469", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969413", + "969413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060639", + "1483060639", + "1483060658", + "1483060639", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969429", + "969429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060688", + "1483060688", + "1483060713", + "1483060688", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969467", + "969467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060802", + "1483060802", + "1483060829", + "1483060802", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969471", + "969471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060809", + "1483060809", + "1483060833", + "1483060809", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969473", + "969473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060814", + "1483060814", + "1483060841", + "1483060814", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969475", + "969475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060828", + "1483060828", + "1483060849", + "1483060828", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969485", + "969485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060841", + "1483060841", + "1483060869", + "1483060841", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969519", + "969519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060954", + "1483060954", + "1483060980", + "1483060954", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969654", + "969654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061415", + "1483061415", + "1483061443", + "1483061415", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969751", + "969751", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061756", + "1483061756", + "1483061779", + "1483061756", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969791", + "969791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061888", + "1483061888", + "1483061917", + "1483061888", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969818", + "969818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061974", + "1483061974", + "1483061999", + "1483061974", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969822", + "969822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061986", + "1483061986", + "1483062010", + "1483061986", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969838", + "969838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062035", + "1483062035", + "1483062059", + "1483062035", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969860", + "969860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062102", + "1483062102", + "1483062131", + "1483062102", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969864", + "969864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062105", + "1483062105", + "1483062128", + "1483062105", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969882", + "969882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062169", + "1483062169", + "1483062198", + "1483062169", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969906", + "969906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062239", + "1483062239", + "1483062268", + "1483062239", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969916", + "969916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062269", + "1483062269", + "1483062298", + "1483062269", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969928", + "969928", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062297", + "1483062297", + "1483062320", + "1483062297", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969932", + "969932", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062309", + "1483062309", + "1483062328", + "1483062309", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969934", + "969934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062321", + "1483062321", + "1483062342", + "1483062321", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969962", + "969962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062406", + "1483062406", + "1483062435", + "1483062406", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970341", + "970341", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064147", + "1483064147", + "1483064169", + "1483064147", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970346", + "970346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064151", + "1483064151", + "1483064173", + "1483064151", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970374", + "970374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064242", + "1483064242", + "1483064261", + "1483064242", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970386", + "970386", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064297", + "1483064297", + "1483064318", + "1483064297", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970388", + "970388", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064298", + "1483064298", + "1483064319", + "1483064298", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970416", + "970416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064371", + "1483064371", + "1483064398", + "1483064371", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970418", + "970418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064372", + "1483064372", + "1483064401", + "1483064372", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970420", + "970420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064399", + "1483064399", + "1483064418", + "1483064399", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970436", + "970436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064441", + "1483064441", + "1483064467", + "1483064441", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970478", + "970478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064559", + "1483064559", + "1483064579", + "1483064559", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970480", + "970480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064562", + "1483064562", + "1483064580", + "1483064562", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970482", + "970482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064575", + "1483064575", + "1483064597", + "1483064575", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970484", + "970484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064579", + "1483064579", + "1483064600", + "1483064579", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970486", + "970486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064581", + "1483064581", + "1483064609", + "1483064581", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970503", + "970503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064610", + "1483064610", + "1483064635", + "1483064610", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970517", + "970517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064656", + "1483064656", + "1483064685", + "1483064656", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970523", + "970523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064667", + "1483064667", + "1483064685", + "1483064667", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970568", + "970568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064801", + "1483064801", + "1483064824", + "1483064801", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970613", + "970613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064940", + "1483064940", + "1483064963", + "1483064940", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970617", + "970617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064956", + "1483064956", + "1483064977", + "1483064956", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970619", + "970619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064964", + "1483064964", + "1483064990", + "1483064964", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970642", + "970642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065035", + "1483065035", + "1483065061", + "1483065035", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970646", + "970646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065055", + "1483065055", + "1483065082", + "1483065055", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970686", + "970686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065153", + "1483065153", + "1483065181", + "1483065153", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970688", + "970688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065168", + "1483065168", + "1483065191", + "1483065168", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970690", + "970690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065169", + "1483065169", + "1483065189", + "1483065169", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970704", + "970704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065221", + "1483065221", + "1483065243", + "1483065221", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970706", + "970706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065226", + "1483065226", + "1483065249", + "1483065226", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970776", + "970776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065546", + "1483065546", + "1483065567", + "1483065546", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970780", + "970780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065566", + "1483065566", + "1483065586", + "1483065566", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970788", + "970788", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065584", + "1483065584", + "1483065609", + "1483065584", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970794", + "970794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065610", + "1483065610", + "1483065632", + "1483065610", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970798", + "970798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065620", + "1483065620", + "1483065640", + "1483065620", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970802", + "970802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065624", + "1483065624", + "1483065650", + "1483065624", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970821", + "970821", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065677", + "1483065677", + "1483065706", + "1483065677", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970841", + "970841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065723", + "1483065723", + "1483065745", + "1483065723", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970843", + "970843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065743", + "1483065743", + "1483065766", + "1483065743", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970876", + "970876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065832", + "1483065832", + "1483065853", + "1483065832", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970880", + "970880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065835", + "1483065835", + "1483065862", + "1483065835", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970886", + "970886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065863", + "1483065863", + "1483065882", + "1483065863", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970892", + "970892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065878", + "1483065878", + "1483065902", + "1483065878", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970920", + "970920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065959", + "1483065959", + "1483065983", + "1483065959", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970936", + "970936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066009", + "1483066009", + "1483066029", + "1483066009", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970944", + "970944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066021", + "1483066021", + "1483066049", + "1483066021", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970962", + "970962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066080", + "1483066080", + "1483066109", + "1483066080", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971008", + "971008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066190", + "1483066190", + "1483066215", + "1483066190", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971024", + "971024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066256", + "1483066256", + "1483066278", + "1483066256", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971068", + "971068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066393", + "1483066393", + "1483066421", + "1483066393", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971070", + "971070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066393", + "1483066393", + "1483066420", + "1483066393", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971116", + "971116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066576", + "1483066576", + "1483066603", + "1483066576", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971308", + "971308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067833", + "1483067833", + "1483067856", + "1483067833", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971310", + "971310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067854", + "1483067854", + "1483067876", + "1483067854", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971314", + "971314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067857", + "1483067857", + "1483067884", + "1483067857", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971369", + "971369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067991", + "1483067991", + "1483068017", + "1483067991", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971371", + "971371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067992", + "1483067992", + "1483068019", + "1483067992", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971373", + "971373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067993", + "1483067993", + "1483068011", + "1483067993", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971393", + "971393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068051", + "1483068051", + "1483068079", + "1483068051", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971409", + "971409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068097", + "1483068097", + "1483068125", + "1483068097", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971417", + "971417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068109", + "1483068109", + "1483068136", + "1483068109", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971419", + "971419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068119", + "1483068119", + "1483068136", + "1483068119", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971421", + "971421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068126", + "1483068126", + "1483068152", + "1483068126", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971423", + "971423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068129", + "1483068129", + "1483068156", + "1483068129", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971440", + "971440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068162", + "1483068162", + "1483068184", + "1483068162", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971444", + "971444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068172", + "1483068172", + "1483068198", + "1483068172", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971446", + "971446", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068176", + "1483068176", + "1483068205", + "1483068176", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971454", + "971454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068198", + "1483068198", + "1483068227", + "1483068198", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971464", + "971464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068223", + "1483068223", + "1483068246", + "1483068223", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971492", + "971492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068317", + "1483068317", + "1483068336", + "1483068317", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971494", + "971494", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068318", + "1483068318", + "1483068334", + "1483068318", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971498", + "971498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068324", + "1483068324", + "1483068346", + "1483068324", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971520", + "971520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068387", + "1483068387", + "1483068405", + "1483068387", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971522", + "971522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068391", + "1483068391", + "1483068410", + "1483068391", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971524", + "971524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068396", + "1483068396", + "1483068415", + "1483068396", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971528", + "971528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068402", + "1483068402", + "1483068422", + "1483068402", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971557", + "971557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068468", + "1483068468", + "1483068494", + "1483068468", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971565", + "971565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068489", + "1483068489", + "1483068509", + "1483068489", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971567", + "971567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068494", + "1483068494", + "1483068522", + "1483068494", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971571", + "971571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068509", + "1483068509", + "1483068534", + "1483068509", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971593", + "971593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068577", + "1483068577", + "1483068599", + "1483068577", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971630", + "971630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068698", + "1483068698", + "1483068718", + "1483068698", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971658", + "971658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068779", + "1483068779", + "1483068801", + "1483068779", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971680", + "971680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068826", + "1483068826", + "1483068854", + "1483068826", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971712", + "971712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068978", + "1483068978", + "1483069005", + "1483068978", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971728", + "971728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069039", + "1483069039", + "1483069057", + "1483069039", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971732", + "971732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069041", + "1483069041", + "1483069064", + "1483069041", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971753", + "971753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069094", + "1483069094", + "1483069119", + "1483069094", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971765", + "971765", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069120", + "1483069120", + "1483069136", + "1483069120", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971767", + "971767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069131", + "1483069131", + "1483069146", + "1483069131", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971769", + "971769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069137", + "1483069137", + "1483069162", + "1483069137", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971783", + "971783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069175", + "1483069175", + "1483069194", + "1483069175", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971789", + "971789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069194", + "1483069194", + "1483069221", + "1483069194", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971859", + "971859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069589", + "1483069589", + "1483069608", + "1483069589", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971865", + "971865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069596", + "1483069596", + "1483069611", + "1483069596", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971871", + "971871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069612", + "1483069612", + "1483069634", + "1483069612", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971877", + "971877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069623", + "1483069623", + "1483069641", + "1483069623", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971879", + "971879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069633", + "1483069633", + "1483069651", + "1483069633", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971881", + "971881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069636", + "1483069636", + "1483069654", + "1483069636", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971883", + "971883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069642", + "1483069642", + "1483069659", + "1483069642", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971885", + "971885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069647", + "1483069647", + "1483069666", + "1483069647", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971909", + "971909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069711", + "1483069711", + "1483069728", + "1483069711", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971911", + "971911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069714", + "1483069714", + "1483069730", + "1483069714", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971913", + "971913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069715", + "1483069715", + "1483069735", + "1483069715", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971917", + "971917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069729", + "1483069729", + "1483069750", + "1483069729", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971933", + "971933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069758", + "1483069758", + "1483069785", + "1483069758", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971935", + "971935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069758", + "1483069758", + "1483069787", + "1483069758", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971973", + "971973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069830", + "1483069830", + "1483069851", + "1483069830", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971979", + "971979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069844", + "1483069844", + "1483069869", + "1483069844", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971981", + "971981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069850", + "1483069850", + "1483069878", + "1483069850", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971993", + "971993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069879", + "1483069879", + "1483069898", + "1483069879", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971997", + "971997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069895", + "1483069895", + "1483069914", + "1483069895", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971999", + "971999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069899", + "1483069899", + "1483069924", + "1483069899", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972001", + "972001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069902", + "1483069902", + "1483069919", + "1483069902", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972013", + "972013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069922", + "1483069922", + "1483069949", + "1483069922", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972015", + "972015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069925", + "1483069925", + "1483069944", + "1483069925", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972017", + "972017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069933", + "1483069933", + "1483069951", + "1483069933", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972023", + "972023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069944", + "1483069944", + "1483069962", + "1483069944", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972044", + "972044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069984", + "1483069984", + "1483070006", + "1483069984", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972048", + "972048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069991", + "1483069991", + "1483070004", + "1483069991", + "1", + "8", + "0", + "-1", + "13", + "0", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972052", + "972052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070003", + "1483070003", + "1483070023", + "1483070003", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972066", + "972066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070022", + "1483070022", + "1483070036", + "1483070022", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972084", + "972084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070054", + "1483070054", + "1483070070", + "1483070054", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972092", + "972092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070074", + "1483070074", + "1483070088", + "1483070074", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972098", + "972098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070088", + "1483070088", + "1483070111", + "1483070088", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972106", + "972106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070106", + "1483070106", + "1483070122", + "1483070106", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972108", + "972108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070109", + "1483070109", + "1483070125", + "1483070109", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972110", + "972110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070112", + "1483070112", + "1483070129", + "1483070112", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972114", + "972114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070119", + "1483070119", + "1483070133", + "1483070119", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972132", + "972132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070153", + "1483070153", + "1483070175", + "1483070153", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972138", + "972138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070163", + "1483070163", + "1483070183", + "1483070163", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972146", + "972146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070184", + "1483070184", + "1483070209", + "1483070184", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972152", + "972152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070201", + "1483070201", + "1483070221", + "1483070201", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972176", + "972176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070255", + "1483070255", + "1483070275", + "1483070255", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972178", + "972178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070260", + "1483070260", + "1483070283", + "1483070260", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972182", + "972182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070270", + "1483070270", + "1483070295", + "1483070270", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972184", + "972184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070276", + "1483070276", + "1483070295", + "1483070276", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972186", + "972186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070282", + "1483070282", + "1483070301", + "1483070282", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972192", + "972192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070295", + "1483070295", + "1483070318", + "1483070295", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972204", + "972204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070319", + "1483070319", + "1483070337", + "1483070319", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972221", + "972221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070367", + "1483070367", + "1483070388", + "1483070367", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972229", + "972229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070389", + "1483070389", + "1483070407", + "1483070389", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972243", + "972243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070406", + "1483070406", + "1483070425", + "1483070406", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972251", + "972251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070422", + "1483070422", + "1483070443", + "1483070422", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972269", + "972269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070472", + "1483070472", + "1483070491", + "1483070472", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972271", + "972271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070479", + "1483070479", + "1483070499", + "1483070479", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972277", + "972277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070492", + "1483070492", + "1483070509", + "1483070492", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972281", + "972281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070500", + "1483070500", + "1483070523", + "1483070500", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972283", + "972283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070506", + "1483070506", + "1483070530", + "1483070506", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972291", + "972291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070519", + "1483070519", + "1483070541", + "1483070519", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972295", + "972295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070531", + "1483070531", + "1483070549", + "1483070531", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972297", + "972297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070537", + "1483070537", + "1483070555", + "1483070537", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972322", + "972322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070590", + "1483070590", + "1483070612", + "1483070590", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972360", + "972360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070749", + "1483070749", + "1483070767", + "1483070749", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972382", + "972382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070800", + "1483070800", + "1483070817", + "1483070800", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972384", + "972384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070805", + "1483070805", + "1483070820", + "1483070805", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972390", + "972390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070821", + "1483070821", + "1483070846", + "1483070821", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972405", + "972405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070847", + "1483070847", + "1483070865", + "1483070847", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972407", + "972407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070854", + "1483070854", + "1483070872", + "1483070854", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972411", + "972411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070866", + "1483070866", + "1483070883", + "1483070866", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972413", + "972413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070872", + "1483070872", + "1483070887", + "1483070872", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972421", + "972421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070879", + "1483070879", + "1483070900", + "1483070879", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972423", + "972423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070884", + "1483070884", + "1483070904", + "1483070884", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972425", + "972425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070887", + "1483070887", + "1483070904", + "1483070887", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972427", + "972427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070898", + "1483070898", + "1483070915", + "1483070898", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972435", + "972435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070905", + "1483070905", + "1483070930", + "1483070905", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972445", + "972445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070930", + "1483070930", + "1483070959", + "1483070930", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972477", + "972477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071010", + "1483071010", + "1483071023", + "1483071010", + "1", + "8", + "0", + "-1", + "13", + "0", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972489", + "972489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071028", + "1483071028", + "1483071054", + "1483071028", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972495", + "972495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071054", + "1483071054", + "1483071072", + "1483071054", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972511", + "972511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071084", + "1483071084", + "1483071103", + "1483071084", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972525", + "972525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071115", + "1483071115", + "1483071131", + "1483071115", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972531", + "972531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071123", + "1483071123", + "1483071151", + "1483071123", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972535", + "972535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071130", + "1483071130", + "1483071159", + "1483071130", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972557", + "972557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071183", + "1483071183", + "1483071206", + "1483071183", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972566", + "972566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071194", + "1483071194", + "1483071214", + "1483071194", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972568", + "972568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071200", + "1483071200", + "1483071216", + "1483071200", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972570", + "972570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071207", + "1483071207", + "1483071223", + "1483071207", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972647", + "972647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071446", + "1483071446", + "1483071475", + "1483071446", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972657", + "972657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071476", + "1483071476", + "1483071503", + "1483071476", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972679", + "972679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071526", + "1483071526", + "1483071552", + "1483071526", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972689", + "972689", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071550", + "1483071550", + "1483071579", + "1483071550", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972699", + "972699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071567", + "1483071567", + "1483071592", + "1483071567", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972701", + "972701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071579", + "1483071579", + "1483071608", + "1483071579", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972703", + "972703", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071582", + "1483071582", + "1483071604", + "1483071582", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972705", + "972705", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071592", + "1483071592", + "1483071616", + "1483071592", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972868", + "972868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072249", + "1483072249", + "1483072277", + "1483072249", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972870", + "972870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072249", + "1483072249", + "1483072278", + "1483072249", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972884", + "972884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072286", + "1483072286", + "1483072312", + "1483072286", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972886", + "972886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072293", + "1483072293", + "1483072320", + "1483072293", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972910", + "972910", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072390", + "1483072390", + "1483072414", + "1483072390", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972912", + "972912", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072397", + "1483072397", + "1483072426", + "1483072397", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972928", + "972928", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072450", + "1483072450", + "1483072471", + "1483072450", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972957", + "972957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072524", + "1483072524", + "1483072553", + "1483072524", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972973", + "972973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072588", + "1483072588", + "1483072608", + "1483072588", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973000", + "973000", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072664", + "1483072664", + "1483072692", + "1483072664", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973002", + "973002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072668", + "1483072668", + "1483072692", + "1483072668", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973012", + "973012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072692", + "1483072692", + "1483072720", + "1483072692", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973018", + "973018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072715", + "1483072715", + "1483072737", + "1483072715", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973040", + "973040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072802", + "1483072802", + "1483072829", + "1483072802", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973046", + "973046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072830", + "1483072830", + "1483072854", + "1483072830", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973048", + "973048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072834", + "1483072834", + "1483072862", + "1483072834", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973064", + "973064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072894", + "1483072894", + "1483072915", + "1483072894", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973086", + "973086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072952", + "1483072952", + "1483072973", + "1483072952", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973102", + "973102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073002", + "1483073002", + "1483073031", + "1483073002", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973110", + "973110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073039", + "1483073039", + "1483073058", + "1483073039", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973131", + "973131", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073092", + "1483073092", + "1483073116", + "1483073092", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973133", + "973133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073108", + "1483073108", + "1483073134", + "1483073108", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973135", + "973135", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073115", + "1483073115", + "1483073137", + "1483073115", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973143", + "973143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073137", + "1483073137", + "1483073163", + "1483073137", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973178", + "973178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073228", + "1483073228", + "1483073256", + "1483073228", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973196", + "973196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073288", + "1483073288", + "1483073317", + "1483073288", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973222", + "973222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073366", + "1483073366", + "1483073393", + "1483073366", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973224", + "973224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073379", + "1483073379", + "1483073406", + "1483073379", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973228", + "973228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073394", + "1483073394", + "1483073421", + "1483073394", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973230", + "973230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073406", + "1483073406", + "1483073433", + "1483073406", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973321", + "973321", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073708", + "1483073708", + "1483073730", + "1483073708", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973341", + "973341", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073770", + "1483073770", + "1483073799", + "1483073770", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973412", + "973412", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074050", + "1483074050", + "1483074075", + "1483074050", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973424", + "973424", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074100", + "1483074100", + "1483074124", + "1483074100", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973454", + "973454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074196", + "1483074196", + "1483074218", + "1483074196", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973456", + "973456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074204", + "1483074204", + "1483074225", + "1483074204", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973458", + "973458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074218", + "1483074218", + "1483074235", + "1483074218", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973520", + "973520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074374", + "1483074374", + "1483074392", + "1483074374", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973548", + "973548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074445", + "1483074445", + "1483074470", + "1483074445", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973557", + "973557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074467", + "1483074467", + "1483074489", + "1483074467", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973562", + "973562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074471", + "1483074471", + "1483074496", + "1483074471", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973564", + "973564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074471", + "1483074471", + "1483074490", + "1483074471", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973596", + "973596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074574", + "1483074574", + "1483074598", + "1483074574", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973604", + "973604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074589", + "1483074589", + "1483074611", + "1483074589", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973639", + "973639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074688", + "1483074688", + "1483074715", + "1483074688", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973649", + "973649", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074736", + "1483074736", + "1483074764", + "1483074736", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973651", + "973651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074748", + "1483074748", + "1483074774", + "1483074748", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973657", + "973657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074763", + "1483074763", + "1483074789", + "1483074763", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973744", + "973744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075098", + "1483075098", + "1483075127", + "1483075098", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973971", + "973971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076155", + "1483076155", + "1483076182", + "1483076155", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973973", + "973973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076155", + "1483076155", + "1483076180", + "1483076155", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974021", + "974021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076309", + "1483076309", + "1483076330", + "1483076309", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974066", + "974066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076473", + "1483076473", + "1483076499", + "1483076473", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974094", + "974094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076574", + "1483076574", + "1483076595", + "1483076574", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974096", + "974096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076587", + "1483076587", + "1483076610", + "1483076587", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974110", + "974110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076639", + "1483076639", + "1483076664", + "1483076639", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974113", + "974113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076639", + "1483076639", + "1483076665", + "1483076639", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974147", + "974147", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076777", + "1483076777", + "1483076802", + "1483076777", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974149", + "974149", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076781", + "1483076781", + "1483076805", + "1483076781", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974196", + "974196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076931", + "1483076931", + "1483076954", + "1483076931", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974198", + "974198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076936", + "1483076936", + "1483076959", + "1483076936", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974200", + "974200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076937", + "1483076937", + "1483076958", + "1483076937", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974202", + "974202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076941", + "1483076941", + "1483076958", + "1483076941", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974245", + "974245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077067", + "1483077067", + "1483077094", + "1483077067", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974247", + "974247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077072", + "1483077072", + "1483077096", + "1483077072", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974334", + "974334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077414", + "1483077414", + "1483077443", + "1483077414", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974497", + "974497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078008", + "1483078008", + "1483078033", + "1483078008", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974515", + "974515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078064", + "1483078064", + "1483078090", + "1483078064", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974517", + "974517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078067", + "1483078067", + "1483078089", + "1483078067", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974543", + "974543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078153", + "1483078153", + "1483078177", + "1483078153", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974547", + "974547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078164", + "1483078164", + "1483078186", + "1483078164", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974565", + "974565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078213", + "1483078213", + "1483078230", + "1483078213", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974603", + "974603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078309", + "1483078309", + "1483078337", + "1483078309", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974638", + "974638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078396", + "1483078396", + "1483078417", + "1483078396", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974685", + "974685", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078530", + "1483078530", + "1483078558", + "1483078530", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974792", + "974792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078946", + "1483078946", + "1483078974", + "1483078946", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975017", + "975017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080089", + "1483080089", + "1483080109", + "1483080089", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975022", + "975022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080092", + "1483080092", + "1483080112", + "1483080092", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975024", + "975024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080096", + "1483080096", + "1483080119", + "1483080096", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975046", + "975046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080155", + "1483080155", + "1483080180", + "1483080155", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975048", + "975048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080172", + "1483080172", + "1483080201", + "1483080172", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975050", + "975050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080180", + "1483080180", + "1483080198", + "1483080180", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975060", + "975060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080202", + "1483080202", + "1483080228", + "1483080202", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975064", + "975064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080225", + "1483080225", + "1483080244", + "1483080225", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975068", + "975068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080229", + "1483080229", + "1483080249", + "1483080229", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975086", + "975086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080276", + "1483080276", + "1483080298", + "1483080276", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975108", + "975108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080366", + "1483080366", + "1483080387", + "1483080366", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975116", + "975116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080376", + "1483080376", + "1483080405", + "1483080376", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975137", + "975137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080432", + "1483080432", + "1483080461", + "1483080432", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975141", + "975141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080438", + "1483080438", + "1483080457", + "1483080438", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975155", + "975155", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080464", + "1483080464", + "1483080491", + "1483080464", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975157", + "975157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080482", + "1483080482", + "1483080511", + "1483080482", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975159", + "975159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080488", + "1483080488", + "1483080509", + "1483080488", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975223", + "975223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080671", + "1483080671", + "1483080695", + "1483080671", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975231", + "975231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080694", + "1483080694", + "1483080708", + "1483080694", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975242", + "975242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080709", + "1483080709", + "1483080726", + "1483080709", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975248", + "975248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080726", + "1483080726", + "1483080742", + "1483080726", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975254", + "975254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080736", + "1483080736", + "1483080763", + "1483080736", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975260", + "975260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080743", + "1483080743", + "1483080771", + "1483080743", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975276", + "975276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080796", + "1483080796", + "1483080816", + "1483080796", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975288", + "975288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080843", + "1483080843", + "1483080867", + "1483080843", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975296", + "975296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080859", + "1483080859", + "1483080880", + "1483080859", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975314", + "975314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080911", + "1483080911", + "1483080940", + "1483080911", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975320", + "975320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080925", + "1483080925", + "1483080950", + "1483080925", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975326", + "975326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080949", + "1483080949", + "1483080976", + "1483080949", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975383", + "975383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081121", + "1483081121", + "1483081143", + "1483081121", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975409", + "975409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081188", + "1483081188", + "1483081217", + "1483081188", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975417", + "975417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081218", + "1483081218", + "1483081247", + "1483081218", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975425", + "975425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081246", + "1483081246", + "1483081269", + "1483081246", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975427", + "975427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081247", + "1483081247", + "1483081269", + "1483081247", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975433", + "975433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081270", + "1483081270", + "1483081292", + "1483081270", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975515", + "975515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081576", + "1483081576", + "1483081596", + "1483081576", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975517", + "975517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081583", + "1483081583", + "1483081605", + "1483081583", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975523", + "975523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081600", + "1483081600", + "1483081628", + "1483081600", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975539", + "975539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081648", + "1483081648", + "1483081673", + "1483081648", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975541", + "975541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081660", + "1483081660", + "1483081686", + "1483081660", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975545", + "975545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081672", + "1483081672", + "1483081699", + "1483081672", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975560", + "975560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081712", + "1483081712", + "1483081734", + "1483081712", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975608", + "975608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081850", + "1483081850", + "1483081866", + "1483081850", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975610", + "975610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081854", + "1483081854", + "1483081879", + "1483081854", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975616", + "975616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081861", + "1483081861", + "1483081885", + "1483081861", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975620", + "975620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081867", + "1483081867", + "1483081896", + "1483081867", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975640", + "975640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081926", + "1483081926", + "1483081942", + "1483081926", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975652", + "975652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081952", + "1483081952", + "1483081969", + "1483081952", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975674", + "975674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081999", + "1483081999", + "1483082026", + "1483081999", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975676", + "975676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082020", + "1483082020", + "1483082048", + "1483082020", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975690", + "975690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082060", + "1483082060", + "1483082087", + "1483082060", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975740", + "975740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082186", + "1483082186", + "1483082214", + "1483082186", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975750", + "975750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082232", + "1483082232", + "1483082256", + "1483082232", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975836", + "975836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082529", + "1483082529", + "1483082557", + "1483082529", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975842", + "975842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082541", + "1483082541", + "1483082570", + "1483082541", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976045", + "976045", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083443", + "1483083443", + "1483083462", + "1483083443", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976056", + "976056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083462", + "1483083462", + "1483083483", + "1483083462", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976058", + "976058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083463", + "1483083463", + "1483083484", + "1483083463", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976062", + "976062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083465", + "1483083465", + "1483083482", + "1483083465", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976068", + "976068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083483", + "1483083483", + "1483083500", + "1483083483", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976085", + "976085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083512", + "1483083512", + "1483083536", + "1483083512", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976087", + "976087", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083519", + "1483083519", + "1483083538", + "1483083519", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976130", + "976130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083620", + "1483083620", + "1483083637", + "1483083620", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976132", + "976132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083625", + "1483083625", + "1483083640", + "1483083625", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976136", + "976136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083633", + "1483083633", + "1483083653", + "1483083633", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976144", + "976144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083646", + "1483083646", + "1483083664", + "1483083646", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976146", + "976146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083654", + "1483083654", + "1483083671", + "1483083654", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976154", + "976154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083664", + "1483083664", + "1483083693", + "1483083664", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976172", + "976172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083709", + "1483083709", + "1483083725", + "1483083709", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976174", + "976174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083713", + "1483083713", + "1483083735", + "1483083713", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976193", + "976193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083757", + "1483083757", + "1483083783", + "1483083757", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976196", + "976196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083757", + "1483083757", + "1483083783", + "1483083757", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976208", + "976208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083784", + "1483083784", + "1483083798", + "1483083784", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976210", + "976210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083798", + "1483083798", + "1483083817", + "1483083798", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976212", + "976212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083798", + "1483083798", + "1483083816", + "1483083798", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976214", + "976214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083799", + "1483083799", + "1483083818", + "1483083799", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976218", + "976218", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083807", + "1483083807", + "1483083826", + "1483083807", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976220", + "976220", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083817", + "1483083817", + "1483083833", + "1483083817", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976230", + "976230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083834", + "1483083834", + "1483083856", + "1483083834", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976242", + "976242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083857", + "1483083857", + "1483083881", + "1483083857", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976254", + "976254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083879", + "1483083879", + "1483083899", + "1483083879", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976256", + "976256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083880", + "1483083880", + "1483083894", + "1483083880", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976262", + "976262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083894", + "1483083894", + "1483083907", + "1483083894", + "1", + "8", + "0", + "-1", + "13", + "0", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976264", + "976264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083895", + "1483083895", + "1483083909", + "1483083895", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976286", + "976286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083936", + "1483083936", + "1483083958", + "1483083936", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976314", + "976314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083999", + "1483083999", + "1483084027", + "1483083999", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976316", + "976316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084022", + "1483084022", + "1483084045", + "1483084022", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976322", + "976322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084043", + "1483084043", + "1483084063", + "1483084043", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976326", + "976326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084046", + "1483084046", + "1483084062", + "1483084046", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976330", + "976330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084054", + "1483084054", + "1483084072", + "1483084054", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976336", + "976336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084063", + "1483084063", + "1483084089", + "1483084063", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976352", + "976352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084105", + "1483084105", + "1483084125", + "1483084105", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976359", + "976359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084113", + "1483084113", + "1483084131", + "1483084113", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976377", + "976377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084158", + "1483084158", + "1483084187", + "1483084158", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976387", + "976387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084187", + "1483084187", + "1483084206", + "1483084187", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976433", + "976433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084344", + "1483084344", + "1483084363", + "1483084344", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976435", + "976435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084349", + "1483084349", + "1483084364", + "1483084349", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976437", + "976437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084364", + "1483084364", + "1483084380", + "1483084364", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976443", + "976443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084381", + "1483084381", + "1483084407", + "1483084381", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976451", + "976451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084404", + "1483084404", + "1483084432", + "1483084404", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976455", + "976455", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084424", + "1483084424", + "1483084442", + "1483084424", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976459", + "976459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084429", + "1483084429", + "1483084445", + "1483084429", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976463", + "976463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084442", + "1483084442", + "1483084468", + "1483084442", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976473", + "976473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084457", + "1483084457", + "1483084483", + "1483084457", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976495", + "976495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084516", + "1483084516", + "1483084529", + "1483084516", + "1", + "8", + "0", + "-1", + "13", + "0", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976509", + "976509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084547", + "1483084547", + "1483084571", + "1483084547", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976513", + "976513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084555", + "1483084555", + "1483084570", + "1483084555", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976517", + "976517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084570", + "1483084570", + "1483084594", + "1483084570", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976587", + "976587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084869", + "1483084869", + "1483084891", + "1483084869", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976607", + "976607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084917", + "1483084917", + "1483084943", + "1483084917", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976609", + "976609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084918", + "1483084918", + "1483084940", + "1483084918", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976619", + "976619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084944", + "1483084944", + "1483084973", + "1483084944", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976631", + "976631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084993", + "1483084993", + "1483085015", + "1483084993", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976635", + "976635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085016", + "1483085016", + "1483085038", + "1483085016", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976637", + "976637", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085016", + "1483085016", + "1483085038", + "1483085016", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976641", + "976641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085027", + "1483085027", + "1483085051", + "1483085027", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976648", + "976648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085039", + "1483085039", + "1483085062", + "1483085039", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976650", + "976650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085040", + "1483085040", + "1483085064", + "1483085040", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976654", + "976654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085045", + "1483085045", + "1483085066", + "1483085045", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976680", + "976680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085123", + "1483085123", + "1483085146", + "1483085123", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976692", + "976692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085139", + "1483085139", + "1483085162", + "1483085139", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976694", + "976694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085146", + "1483085146", + "1483085169", + "1483085146", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976700", + "976700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085158", + "1483085158", + "1483085180", + "1483085158", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976742", + "976742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085270", + "1483085270", + "1483085297", + "1483085270", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976770", + "976770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085358", + "1483085358", + "1483085379", + "1483085358", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976772", + "976772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085364", + "1483085364", + "1483085384", + "1483085364", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976776", + "976776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085379", + "1483085379", + "1483085397", + "1483085379", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976780", + "976780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085385", + "1483085385", + "1483085407", + "1483085385", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976786", + "976786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085398", + "1483085398", + "1483085420", + "1483085398", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976788", + "976788", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085402", + "1483085402", + "1483085423", + "1483085402", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976794", + "976794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085408", + "1483085408", + "1483085425", + "1483085408", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976796", + "976796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085411", + "1483085411", + "1483085430", + "1483085411", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976798", + "976798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085421", + "1483085421", + "1483085440", + "1483085421", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976801", + "976801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085421", + "1483085421", + "1483085450", + "1483085421", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976803", + "976803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085424", + "1483085424", + "1483085452", + "1483085424", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976813", + "976813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085451", + "1483085451", + "1483085470", + "1483085451", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976834", + "976834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085482", + "1483085482", + "1483085500", + "1483085482", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976836", + "976836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085485", + "1483085485", + "1483085503", + "1483085485", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976840", + "976840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085496", + "1483085496", + "1483085512", + "1483085496", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976884", + "976884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085603", + "1483085603", + "1483085632", + "1483085603", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976915", + "976915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085673", + "1483085673", + "1483085699", + "1483085673", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976923", + "976923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085700", + "1483085700", + "1483085724", + "1483085700", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976955", + "976955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085768", + "1483085768", + "1483085792", + "1483085768", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976957", + "976957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085785", + "1483085785", + "1483085811", + "1483085785", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976963", + "976963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085795", + "1483085795", + "1483085822", + "1483085795", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976971", + "976971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085820", + "1483085820", + "1483085845", + "1483085820", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977017", + "977017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085946", + "1483085946", + "1483085971", + "1483085946", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977019", + "977019", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085953", + "1483085953", + "1483085977", + "1483085953", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977094", + "977094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086252", + "1483086252", + "1483086271", + "1483086252", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977105", + "977105", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086279", + "1483086279", + "1483086302", + "1483086279", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977107", + "977107", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086288", + "1483086288", + "1483086309", + "1483086288", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977142", + "977142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086365", + "1483086365", + "1483086388", + "1483086365", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977154", + "977154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086392", + "1483086392", + "1483086413", + "1483086392", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977174", + "977174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086427", + "1483086427", + "1483086453", + "1483086427", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977176", + "977176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086438", + "1483086438", + "1483086458", + "1483086438", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977178", + "977178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086443", + "1483086443", + "1483086467", + "1483086443", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977180", + "977180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086449", + "1483086449", + "1483086477", + "1483086449", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977182", + "977182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086454", + "1483086454", + "1483086474", + "1483086454", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977188", + "977188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086468", + "1483086468", + "1483086491", + "1483086468", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977192", + "977192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086475", + "1483086475", + "1483086500", + "1483086475", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977198", + "977198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086487", + "1483086487", + "1483086514", + "1483086487", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977200", + "977200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086492", + "1483086492", + "1483086513", + "1483086492", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977223", + "977223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086552", + "1483086552", + "1483086571", + "1483086552", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977235", + "977235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086576", + "1483086576", + "1483086596", + "1483086576", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977269", + "977269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086648", + "1483086648", + "1483086670", + "1483086648", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977271", + "977271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086650", + "1483086650", + "1483086669", + "1483086650", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977275", + "977275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086658", + "1483086658", + "1483086675", + "1483086658", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977277", + "977277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086662", + "1483086662", + "1483086688", + "1483086662", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977284", + "977284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086670", + "1483086670", + "1483086691", + "1483086670", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977290", + "977290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086676", + "1483086676", + "1483086693", + "1483086676", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977296", + "977296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086692", + "1483086692", + "1483086718", + "1483086692", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977298", + "977298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086692", + "1483086692", + "1483086720", + "1483086692", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977300", + "977300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086693", + "1483086693", + "1483086721", + "1483086693", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977310", + "977310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086719", + "1483086719", + "1483086746", + "1483086719", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977320", + "977320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086740", + "1483086740", + "1483086767", + "1483086740", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977338", + "977338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086781", + "1483086781", + "1483086806", + "1483086781", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977426", + "977426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087044", + "1483087044", + "1483087073", + "1483087044", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977563", + "977563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087539", + "1483087539", + "1483087568", + "1483087539", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977627", + "977627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087795", + "1483087795", + "1483087820", + "1483087795", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977629", + "977629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087807", + "1483087807", + "1483087831", + "1483087807", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977631", + "977631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087821", + "1483087821", + "1483087845", + "1483087821", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977633", + "977633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087832", + "1483087832", + "1483087856", + "1483087832", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977644", + "977644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087846", + "1483087846", + "1483087871", + "1483087846", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977672", + "977672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087911", + "1483087911", + "1483087934", + "1483087911", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977674", + "977674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087911", + "1483087911", + "1483087936", + "1483087911", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977680", + "977680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087935", + "1483087935", + "1483087957", + "1483087935", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977689", + "977689", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087950", + "1483087950", + "1483087975", + "1483087950", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977693", + "977693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087958", + "1483087958", + "1483087985", + "1483087958", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977697", + "977697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087965", + "1483087965", + "1483087992", + "1483087965", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977699", + "977699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087976", + "1483087976", + "1483088000", + "1483087976", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977724", + "977724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088018", + "1483088018", + "1483088040", + "1483088018", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977728", + "977728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088041", + "1483088041", + "1483088067", + "1483088041", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977732", + "977732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088043", + "1483088043", + "1483088068", + "1483088043", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977736", + "977736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088064", + "1483088064", + "1483088092", + "1483088064", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977740", + "977740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088069", + "1483088069", + "1483088091", + "1483088069", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977742", + "977742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088069", + "1483088069", + "1483088092", + "1483088069", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977765", + "977765", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088138", + "1483088138", + "1483088167", + "1483088138", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977769", + "977769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088151", + "1483088151", + "1483088177", + "1483088151", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977785", + "977785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088195", + "1483088195", + "1483088221", + "1483088195", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977787", + "977787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088208", + "1483088208", + "1483088233", + "1483088208", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977815", + "977815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088296", + "1483088296", + "1483088315", + "1483088296", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977839", + "977839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088351", + "1483088351", + "1483088379", + "1483088351", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977870", + "977870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088412", + "1483088412", + "1483088433", + "1483088412", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977876", + "977876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088423", + "1483088423", + "1483088441", + "1483088423", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977878", + "977878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088430", + "1483088430", + "1483088446", + "1483088430", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977880", + "977880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088431", + "1483088431", + "1483088448", + "1483088431", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977898", + "977898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088470", + "1483088470", + "1483088495", + "1483088470", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977902", + "977902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088496", + "1483088496", + "1483088521", + "1483088496", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977916", + "977916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088522", + "1483088522", + "1483088550", + "1483088522", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977918", + "977918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088525", + "1483088525", + "1483088553", + "1483088525", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977924", + "977924", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088541", + "1483088541", + "1483088570", + "1483088541", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977948", + "977948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088633", + "1483088633", + "1483088657", + "1483088633", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977956", + "977956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088657", + "1483088657", + "1483088685", + "1483088657", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977964", + "977964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088676", + "1483088676", + "1483088705", + "1483088676", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977968", + "977968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088682", + "1483088682", + "1483088705", + "1483088682", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977992", + "977992", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088763", + "1483088763", + "1483088789", + "1483088763", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978012", + "978012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088820", + "1483088820", + "1483088849", + "1483088820", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978148", + "978148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089362", + "1483089362", + "1483089388", + "1483089362", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978182", + "978182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089458", + "1483089458", + "1483089478", + "1483089458", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978186", + "978186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089474", + "1483089474", + "1483089497", + "1483089474", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978188", + "978188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089474", + "1483089474", + "1483089500", + "1483089474", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978190", + "978190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089475", + "1483089475", + "1483089500", + "1483089475", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978196", + "978196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089481", + "1483089481", + "1483089503", + "1483089481", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978200", + "978200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089498", + "1483089498", + "1483089517", + "1483089498", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978220", + "978220", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089541", + "1483089541", + "1483089568", + "1483089541", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978230", + "978230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089573", + "1483089573", + "1483089595", + "1483089573", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978234", + "978234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089590", + "1483089590", + "1483089619", + "1483089590", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978240", + "978240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089606", + "1483089606", + "1483089632", + "1483089606", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978246", + "978246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089619", + "1483089619", + "1483089644", + "1483089619", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978248", + "978248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089623", + "1483089623", + "1483089647", + "1483089623", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978252", + "978252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089631", + "1483089631", + "1483089658", + "1483089631", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978280", + "978280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089709", + "1483089709", + "1483089732", + "1483089709", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978288", + "978288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089728", + "1483089728", + "1483089748", + "1483089728", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978290", + "978290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089733", + "1483089733", + "1483089752", + "1483089733", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978292", + "978292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089734", + "1483089734", + "1483089751", + "1483089734", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978315", + "978315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089780", + "1483089780", + "1483089803", + "1483089780", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978319", + "978319", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089797", + "1483089797", + "1483089816", + "1483089797", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978321", + "978321", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089798", + "1483089798", + "1483089817", + "1483089798", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978328", + "978328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089804", + "1483089804", + "1483089827", + "1483089804", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978334", + "978334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089818", + "1483089818", + "1483089838", + "1483089818", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978336", + "978336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089825", + "1483089825", + "1483089843", + "1483089825", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978338", + "978338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089828", + "1483089828", + "1483089846", + "1483089828", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978362", + "978362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089903", + "1483089903", + "1483089932", + "1483089903", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978385", + "978385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089949", + "1483089949", + "1483089978", + "1483089949", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978696", + "978696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091179", + "1483091179", + "1483091200", + "1483091179", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978700", + "978700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091182", + "1483091182", + "1483091202", + "1483091182", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978702", + "978702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091182", + "1483091182", + "1483091204", + "1483091182", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978724", + "978724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091245", + "1483091245", + "1483091266", + "1483091245", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978743", + "978743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091316", + "1483091316", + "1483091342", + "1483091316", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978772", + "978772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091374", + "1483091374", + "1483091393", + "1483091374", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978805", + "978805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091470", + "1483091470", + "1483091499", + "1483091470", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978831", + "978831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091532", + "1483091532", + "1483091554", + "1483091532", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978833", + "978833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091555", + "1483091555", + "1483091574", + "1483091555", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978899", + "978899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091754", + "1483091754", + "1483091780", + "1483091754", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978901", + "978901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091762", + "1483091762", + "1483091789", + "1483091762", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978911", + "978911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091790", + "1483091790", + "1483091810", + "1483091790", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978915", + "978915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091797", + "1483091797", + "1483091822", + "1483091797", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978917", + "978917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091798", + "1483091798", + "1483091825", + "1483091798", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978925", + "978925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091823", + "1483091823", + "1483091840", + "1483091823", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978927", + "978927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091824", + "1483091824", + "1483091844", + "1483091824", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978955", + "978955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091898", + "1483091898", + "1483091918", + "1483091898", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978995", + "978995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092030", + "1483092030", + "1483092055", + "1483092030", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979015", + "979015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092093", + "1483092093", + "1483092114", + "1483092093", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979046", + "979046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092192", + "1483092192", + "1483092215", + "1483092192", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979057", + "979057", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092216", + "1483092216", + "1483092242", + "1483092216", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979065", + "979065", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092238", + "1483092238", + "1483092265", + "1483092238", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979177", + "979177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092606", + "1483092606", + "1483092630", + "1483092606", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979181", + "979181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092631", + "1483092631", + "1483092651", + "1483092631", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979238", + "979238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092812", + "1483092812", + "1483092830", + "1483092812", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979240", + "979240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092821", + "1483092821", + "1483092838", + "1483092821", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979289", + "979289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092937", + "1483092937", + "1483092954", + "1483092937", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979297", + "979297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092944", + "1483092944", + "1483092971", + "1483092944", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979334", + "979334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093042", + "1483093042", + "1483093059", + "1483093042", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979336", + "979336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093043", + "1483093043", + "1483093066", + "1483093043", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979349", + "979349", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093060", + "1483093060", + "1483093087", + "1483093060", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979357", + "979357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093087", + "1483093087", + "1483093113", + "1483093087", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979361", + "979361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093091", + "1483093091", + "1483093120", + "1483093091", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979377", + "979377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093138", + "1483093138", + "1483093159", + "1483093138", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979381", + "979381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093142", + "1483093142", + "1483093161", + "1483093142", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979395", + "979395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093181", + "1483093181", + "1483093207", + "1483093181", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979407", + "979407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093222", + "1483093222", + "1483093245", + "1483093222", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979419", + "979419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093269", + "1483093269", + "1483093293", + "1483093269", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979423", + "979423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093292", + "1483093292", + "1483093317", + "1483093292", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979651", + "979651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094281", + "1483094281", + "1483094310", + "1483094281", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979867", + "979867", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095055", + "1483095055", + "1483095081", + "1483095055", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979900", + "979900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095186", + "1483095186", + "1483095213", + "1483095186", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979902", + "979902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095188", + "1483095188", + "1483095214", + "1483095188", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979904", + "979904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095189", + "1483095189", + "1483095213", + "1483095189", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979923", + "979923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095255", + "1483095255", + "1483095279", + "1483095255", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979933", + "979933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095280", + "1483095280", + "1483095308", + "1483095280", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979937", + "979937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095292", + "1483095292", + "1483095315", + "1483095292", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980035", + "980035", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095672", + "1483095672", + "1483095696", + "1483095672", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980037", + "980037", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095696", + "1483095696", + "1483095724", + "1483095696", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980114", + "980114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096085", + "1483096085", + "1483096110", + "1483096085", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980189", + "980189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096338", + "1483096338", + "1483096361", + "1483096338", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980287", + "980287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096807", + "1483096807", + "1483096835", + "1483096807", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980289", + "980289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096821", + "1483096821", + "1483096849", + "1483096821", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980315", + "980315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096936", + "1483096936", + "1483096965", + "1483096936", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980457", + "980457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097456", + "1483097456", + "1483097485", + "1483097456", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980471", + "980471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097492", + "1483097492", + "1483097519", + "1483097492", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980501", + "980501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097601", + "1483097601", + "1483097628", + "1483097601", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980517", + "980517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097675", + "1483097675", + "1483097699", + "1483097675", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980694", + "980694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098316", + "1483098316", + "1483098344", + "1483098316", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980696", + "980696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098320", + "1483098320", + "1483098348", + "1483098320", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980815", + "980815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098853", + "1483098853", + "1483098882", + "1483098853", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980833", + "980833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098915", + "1483098915", + "1483098940", + "1483098915", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980861", + "980861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099000", + "1483099000", + "1483099029", + "1483099000", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980921", + "980921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099219", + "1483099219", + "1483099244", + "1483099219", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980925", + "980925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099245", + "1483099245", + "1483099270", + "1483099245", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980947", + "980947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099333", + "1483099333", + "1483099359", + "1483099333", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980949", + "980949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099333", + "1483099333", + "1483099359", + "1483099333", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981336", + "981336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101215", + "1483101215", + "1483101237", + "1483101215", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981379", + "981379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101332", + "1483101332", + "1483101357", + "1483101332", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981381", + "981381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101349", + "1483101349", + "1483101371", + "1483101349", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981399", + "981399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101409", + "1483101409", + "1483101426", + "1483101409", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981477", + "981477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101662", + "1483101662", + "1483101684", + "1483101662", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981516", + "981516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101768", + "1483101768", + "1483101790", + "1483101768", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981518", + "981518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101790", + "1483101790", + "1483101813", + "1483101790", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981522", + "981522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101793", + "1483101793", + "1483101818", + "1483101793", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981540", + "981540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101848", + "1483101848", + "1483101869", + "1483101848", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981544", + "981544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101870", + "1483101870", + "1483101898", + "1483101870", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981560", + "981560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101909", + "1483101909", + "1483101931", + "1483101909", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981639", + "981639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102139", + "1483102139", + "1483102163", + "1483102139", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981741", + "981741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102489", + "1483102489", + "1483102517", + "1483102489", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981743", + "981743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102501", + "1483102501", + "1483102527", + "1483102501", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981822", + "981822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102860", + "1483102860", + "1483102884", + "1483102860", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981836", + "981836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102910", + "1483102910", + "1483102934", + "1483102910", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981838", + "981838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102914", + "1483102914", + "1483102935", + "1483102914", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981842", + "981842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102924", + "1483102924", + "1483102950", + "1483102924", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981927", + "981927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103167", + "1483103167", + "1483103186", + "1483103167", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981931", + "981931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103177", + "1483103177", + "1483103197", + "1483103177", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981933", + "981933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103177", + "1483103177", + "1483103198", + "1483103177", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981953", + "981953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103239", + "1483103239", + "1483103263", + "1483103239", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981957", + "981957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103247", + "1483103247", + "1483103270", + "1483103247", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981959", + "981959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103252", + "1483103252", + "1483103272", + "1483103252", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982017", + "982017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103418", + "1483103418", + "1483103439", + "1483103418", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982023", + "982023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103440", + "1483103440", + "1483103468", + "1483103440", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982069", + "982069", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103588", + "1483103588", + "1483103617", + "1483103588", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982427", + "982427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105243", + "1483105243", + "1483105272", + "1483105243", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982431", + "982431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105271", + "1483105271", + "1483105300", + "1483105271", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982490", + "982490", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105502", + "1483105502", + "1483105530", + "1483105502", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982542", + "982542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105734", + "1483105734", + "1483105763", + "1483105734", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982546", + "982546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105758", + "1483105758", + "1483105786", + "1483105758", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982582", + "982582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105904", + "1483105904", + "1483105933", + "1483105904", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982929", + "982929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107523", + "1483107523", + "1483107550", + "1483107523", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982931", + "982931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107524", + "1483107524", + "1483107550", + "1483107524", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982973", + "982973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107671", + "1483107671", + "1483107700", + "1483107671", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982975", + "982975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107676", + "1483107676", + "1483107704", + "1483107676", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982977", + "982977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107682", + "1483107682", + "1483107711", + "1483107682", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983007", + "983007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107794", + "1483107794", + "1483107817", + "1483107794", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983068", + "983068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107994", + "1483107994", + "1483108020", + "1483107994", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983097", + "983097", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108102", + "1483108102", + "1483108125", + "1483108102", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983111", + "983111", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108145", + "1483108145", + "1483108174", + "1483108145", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983113", + "983113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108156", + "1483108156", + "1483108178", + "1483108156", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983250", + "983250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108622", + "1483108622", + "1483108649", + "1483108622", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983291", + "983291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108792", + "1483108792", + "1483108820", + "1483108792", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983297", + "983297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108821", + "1483108821", + "1483108850", + "1483108821", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983497", + "983497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109586", + "1483109586", + "1483109613", + "1483109586", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983501", + "983501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109606", + "1483109606", + "1483109633", + "1483109606", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983505", + "983505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109611", + "1483109611", + "1483109639", + "1483109611", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983544", + "983544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109740", + "1483109740", + "1483109769", + "1483109740", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983548", + "983548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109752", + "1483109752", + "1483109777", + "1483109752", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983566", + "983566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109806", + "1483109806", + "1483109827", + "1483109806", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983570", + "983570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109819", + "1483109819", + "1483109842", + "1483109819", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983588", + "983588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109883", + "1483109883", + "1483109911", + "1483109883", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983609", + "983609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109940", + "1483109940", + "1483109964", + "1483109940", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983611", + "983611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109945", + "1483109945", + "1483109967", + "1483109945", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983641", + "983641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110079", + "1483110079", + "1483110108", + "1483110079", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983979", + "983979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111872", + "1483111872", + "1483111900", + "1483111872", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983999", + "983999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111908", + "1483111908", + "1483111936", + "1483111908", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984003", + "984003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111922", + "1483111922", + "1483111943", + "1483111922", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984005", + "984005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111930", + "1483111930", + "1483111954", + "1483111930", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984021", + "984021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111982", + "1483111982", + "1483112003", + "1483111982", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984045", + "984045", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112055", + "1483112055", + "1483112080", + "1483112055", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984061", + "984061", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112117", + "1483112117", + "1483112144", + "1483112117", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984063", + "984063", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112120", + "1483112120", + "1483112141", + "1483112120", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984087", + "984087", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112193", + "1483112193", + "1483112212", + "1483112193", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984103", + "984103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112241", + "1483112241", + "1483112263", + "1483112241", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984135", + "984135", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112354", + "1483112354", + "1483112380", + "1483112354", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984139", + "984139", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112371", + "1483112371", + "1483112395", + "1483112371", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984161", + "984161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112425", + "1483112425", + "1483112442", + "1483112425", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984163", + "984163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112433", + "1483112433", + "1483112458", + "1483112433", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984169", + "984169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112443", + "1483112443", + "1483112466", + "1483112443", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984179", + "984179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112467", + "1483112467", + "1483112496", + "1483112467", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984183", + "984183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112476", + "1483112476", + "1483112503", + "1483112476", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984243", + "984243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112666", + "1483112666", + "1483112688", + "1483112666", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984247", + "984247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112689", + "1483112689", + "1483112711", + "1483112689", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984271", + "984271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112771", + "1483112771", + "1483112797", + "1483112771", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984273", + "984273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112775", + "1483112775", + "1483112798", + "1483112775", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984298", + "984298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112875", + "1483112875", + "1483112897", + "1483112875", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984353", + "984353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113074", + "1483113074", + "1483113097", + "1483113074", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984369", + "984369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113157", + "1483113157", + "1483113177", + "1483113157", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984371", + "984371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113159", + "1483113159", + "1483113177", + "1483113159", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984393", + "984393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113229", + "1483113229", + "1483113249", + "1483113229", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984429", + "984429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113343", + "1483113343", + "1483113363", + "1483113343", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984526", + "984526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113829", + "1483113829", + "1483113850", + "1483113829", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984532", + "984532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113838", + "1483113838", + "1483113864", + "1483113838", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984546", + "984546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113884", + "1483113884", + "1483113912", + "1483113884", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984548", + "984548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113893", + "1483113893", + "1483113917", + "1483113893", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984552", + "984552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113901", + "1483113901", + "1483113930", + "1483113901", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984554", + "984554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113904", + "1483113904", + "1483113929", + "1483113904", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984570", + "984570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113969", + "1483113969", + "1483113996", + "1483113969", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984574", + "984574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113981", + "1483113981", + "1483114006", + "1483113981", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984592", + "984592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114033", + "1483114033", + "1483114062", + "1483114033", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984596", + "984596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114046", + "1483114046", + "1483114067", + "1483114046", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984636", + "984636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114169", + "1483114169", + "1483114198", + "1483114169", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984642", + "984642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114175", + "1483114175", + "1483114203", + "1483114175", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984648", + "984648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114198", + "1483114198", + "1483114220", + "1483114198", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984654", + "984654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114204", + "1483114204", + "1483114231", + "1483114204", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984674", + "984674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114278", + "1483114278", + "1483114307", + "1483114278", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984680", + "984680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114287", + "1483114287", + "1483114311", + "1483114287", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984682", + "984682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114300", + "1483114300", + "1483114322", + "1483114300", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984694", + "984694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114326", + "1483114326", + "1483114353", + "1483114326", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984708", + "984708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114361", + "1483114361", + "1483114379", + "1483114361", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984714", + "984714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114380", + "1483114380", + "1483114403", + "1483114380", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984720", + "984720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114403", + "1483114403", + "1483114426", + "1483114403", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984730", + "984730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114427", + "1483114427", + "1483114454", + "1483114427", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984734", + "984734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114441", + "1483114441", + "1483114467", + "1483114441", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984740", + "984740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114455", + "1483114455", + "1483114483", + "1483114455", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984754", + "984754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114516", + "1483114516", + "1483114540", + "1483114516", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984791", + "984791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114633", + "1483114633", + "1483114655", + "1483114633", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984817", + "984817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114729", + "1483114729", + "1483114751", + "1483114729", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984841", + "984841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114800", + "1483114800", + "1483114825", + "1483114800", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984895", + "984895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115030", + "1483115030", + "1483115053", + "1483115030", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984901", + "984901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115054", + "1483115054", + "1483115076", + "1483115054", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984917", + "984917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115112", + "1483115112", + "1483115131", + "1483115112", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984919", + "984919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115124", + "1483115124", + "1483115145", + "1483115124", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984939", + "984939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115167", + "1483115167", + "1483115189", + "1483115167", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984961", + "984961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115235", + "1483115235", + "1483115253", + "1483115235", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984977", + "984977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115295", + "1483115295", + "1483115317", + "1483115295", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985056", + "985056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115592", + "1483115592", + "1483115616", + "1483115592", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985076", + "985076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115647", + "1483115647", + "1483115665", + "1483115647", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985094", + "985094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115681", + "1483115681", + "1483115708", + "1483115681", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985120", + "985120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115770", + "1483115770", + "1483115790", + "1483115770", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985122", + "985122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115784", + "1483115784", + "1483115812", + "1483115784", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985150", + "985150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115861", + "1483115861", + "1483115879", + "1483115861", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985168", + "985168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115930", + "1483115930", + "1483115949", + "1483115930", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985192", + "985192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116010", + "1483116010", + "1483116038", + "1483116010", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985200", + "985200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116037", + "1483116037", + "1483116066", + "1483116037", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985215", + "985215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116067", + "1483116067", + "1483116087", + "1483116067", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985235", + "985235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116132", + "1483116132", + "1483116153", + "1483116132", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985237", + "985237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116136", + "1483116136", + "1483116162", + "1483116136", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985239", + "985239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116141", + "1483116141", + "1483116166", + "1483116141", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985241", + "985241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116144", + "1483116144", + "1483116167", + "1483116144", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985247", + "985247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116154", + "1483116154", + "1483116182", + "1483116154", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985249", + "985249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116161", + "1483116161", + "1483116184", + "1483116161", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985257", + "985257", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116183", + "1483116183", + "1483116204", + "1483116183", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985303", + "985303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116299", + "1483116299", + "1483116318", + "1483116299", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985305", + "985305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116310", + "1483116310", + "1483116333", + "1483116310", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "167758", + "167758", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056162", + "1483056162", + "1483056186", + "1483056162", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "167879", + "167879", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056885", + "1483056885", + "1483056906", + "1483056885", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168064", + "168064", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058094", + "1483058094", + "1483058110", + "1483058094", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168090", + "168090", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058262", + "1483058262", + "1483058281", + "1483058262", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168845", + "168845", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064147", + "1483064147", + "1483064162", + "1483064147", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168926", + "168926", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064610", + "1483064610", + "1483064633", + "1483064610", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168941", + "168941", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064686", + "1483064686", + "1483064705", + "1483064686", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168976", + "168976", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064890", + "1483064890", + "1483064911", + "1483064890", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169025", + "169025", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065153", + "1483065153", + "1483065174", + "1483065153", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169092", + "169092", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065655", + "1483065655", + "1483065677", + "1483065655", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169109", + "169109", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065746", + "1483065746", + "1483065765", + "1483065746", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169298", + "169298", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067327", + "1483067327", + "1483067354", + "1483067327", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169344", + "169344", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067698", + "1483067698", + "1483067726", + "1483067698", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169482", + "169482", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068425", + "1483068425", + "1483068448", + "1483068425", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169584", + "169584", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069058", + "1483069058", + "1483069077", + "1483069058", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169732", + "169732", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069959", + "1483069959", + "1483069982", + "1483069959", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169823", + "169823", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070337", + "1483070337", + "1483070359", + "1483070337", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169917", + "169917", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070822", + "1483070822", + "1483070846", + "1483070822", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170003", + "170003", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071184", + "1483071184", + "1483071200", + "1483071184", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170015", + "170015", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071218", + "1483071218", + "1483071244", + "1483071218", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170080", + "170080", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071605", + "1483071605", + "1483071631", + "1483071605", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170208", + "170208", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072517", + "1483072517", + "1483072536", + "1483072517", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170310", + "170310", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073138", + "1483073138", + "1483073154", + "1483073138", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170516", + "170516", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074445", + "1483074445", + "1483074459", + "1483074445", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170522", + "170522", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074467", + "1483074467", + "1483074485", + "1483074467", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170806", + "170806", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076639", + "1483076639", + "1483076654", + "1483076639", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170831", + "170831", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076803", + "1483076803", + "1483076823", + "1483076803", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170999", + "170999", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077948", + "1483077948", + "1483077972", + "1483077948", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171067", + "171067", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078333", + "1483078333", + "1483078353", + "1483078333", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171095", + "171095", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078458", + "1483078458", + "1483078483", + "1483078458", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171493", + "171493", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081270", + "1483081270", + "1483081297", + "1483081270", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171531", + "171531", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081554", + "1483081554", + "1483081578", + "1483081554", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171813", + "171813", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083447", + "1483083447", + "1483083462", + "1483083447", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171825", + "171825", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083484", + "1483083484", + "1483083502", + "1483083484", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171887", + "171887", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083740", + "1483083740", + "1483083753", + "1483083740", + "1", + "8", + "0", + "-1", + "13", + "0", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171973", + "171973", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084106", + "1483084106", + "1483084120", + "1483084106", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172120", + "172120", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085039", + "1483085039", + "1483085056", + "1483085039", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172198", + "172198", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085421", + "1483085421", + "1483085443", + "1483085421", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172354", + "172354", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086263", + "1483086263", + "1483086280", + "1483086263", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172451", + "172451", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086662", + "1483086662", + "1483086678", + "1483086662", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172517", + "172517", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086974", + "1483086974", + "1483086997", + "1483086974", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172525", + "172525", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087009", + "1483087009", + "1483087031", + "1483087009", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172638", + "172638", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087832", + "1483087832", + "1483087847", + "1483087832", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172701", + "172701", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088093", + "1483088093", + "1483088114", + "1483088093", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172993", + "172993", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089804", + "1483089804", + "1483089820", + "1483089804", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173119", + "173119", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090700", + "1483090700", + "1483090728", + "1483090700", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173175", + "173175", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091087", + "1483091087", + "1483091116", + "1483091087", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173235", + "173235", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091394", + "1483091394", + "1483091410", + "1483091394", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173467", + "173467", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092806", + "1483092806", + "1483092835", + "1483092806", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173485", + "173485", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092882", + "1483092882", + "1483092906", + "1483092882", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173710", + "173710", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094470", + "1483094470", + "1483094492", + "1483094470", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173818", + "173818", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095190", + "1483095190", + "1483095211", + "1483095190", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173838", + "173838", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095309", + "1483095309", + "1483095336", + "1483095309", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173950", + "173950", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096229", + "1483096229", + "1483096253", + "1483096229", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174048", + "174048", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097054", + "1483097054", + "1483097082", + "1483097054", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174270", + "174270", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098731", + "1483098731", + "1483098753", + "1483098731", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174358", + "174358", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099360", + "1483099360", + "1483099377", + "1483099360", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174556", + "174556", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101220", + "1483101220", + "1483101244", + "1483101220", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174634", + "174634", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101717", + "1483101717", + "1483101739", + "1483101717", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174672", + "174672", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101932", + "1483101932", + "1483101948", + "1483101932", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174922", + "174922", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103543", + "1483103543", + "1483103571", + "1483103543", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175109", + "175109", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105222", + "1483105222", + "1483105250", + "1483105222", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175438", + "175438", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107965", + "1483107965", + "1483107993", + "1483107965", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175490", + "175490", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108280", + "1483108280", + "1483108297", + "1483108280", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175553", + "175553", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108723", + "1483108723", + "1483108746", + "1483108723", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175588", + "175588", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108974", + "1483108974", + "1483108996", + "1483108974", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175682", + "175682", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109665", + "1483109665", + "1483109682", + "1483109665", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175725", + "175725", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109940", + "1483109940", + "1483109956", + "1483109940", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176322", + "176322", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114577", + "1483114577", + "1483114598", + "1483114577", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176594", + "176594", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116319", + "1483116319", + "1483116337", + "1483116319", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "1010786", + "1010786", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483142202", + "1483142202", + "1483142230", + "1483142202", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006445", + "1006445", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483086222", + "1483086222", + "1483086245", + "1483086222", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "2277104", + "2277104", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070210", + "1483070210", + "1483070216", + "1483070210", + "1", + "12", + "0", + "-1", + "6", + "0", + "72", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278843", + "2278843", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086755", + "1483086755", + "1483086765", + "1483086755", + "1", + "12", + "0", + "-1", + "10", + "0", + "120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279450", + "2279450", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092193", + "1483092193", + "1483092202", + "1483092193", + "1", + "12", + "0", + "-1", + "9", + "0", + "108", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282010", + "2282010", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116063", + "1483116063", + "1483116072", + "1483116063", + "1", + "12", + "0", + "-1", + "9", + "0", + "108", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282560", + "2282560", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120252", + "1483120252", + "1483120262", + "1483120252", + "1", + "12", + "0", + "-1", + "10", + "0", + "120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283953", + "2283953", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133222", + "1483133222", + "1483133234", + "1483133222", + "1", + "12", + "0", + "-1", + "12", + "0", + "144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284714", + "2284714", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140468", + "1483140468", + "1483140480", + "1483140468", + "1", + "12", + "0", + "-1", + "12", + "0", + "144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6108541", + "6108541", + "Robertson", + "UTC", + "", + "Warbler, Golden-winged", + "Screwdriver", + "green-grape", + "1483063853", + "1483063853", + "1483063881", + "1483063853", + "2", + "24", + "0", + "-1", + "28", + "0", + "672", + "0", + "0:0", + "COMPLETED", + "24", + "2147486448Mn", + "3600", + "potbrood", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Economics" + ], + [ + "6110375", + "6110375", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118393", + "1483118396", + "1483118402", + "1483118393", + "1", + "1", + "0", + "-1", + "6", + "3", + "6", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6110382", + "6110382", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118406", + "1483118412", + "1483118421", + "1483118406", + "1", + "1", + "0", + "-1", + "9", + "6", + "9", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6110454", + "6110454", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118629", + "1483118632", + "1483118636", + "1483118629", + "1", + "1", + "0", + "-1", + "4", + "3", + "4", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6110457", + "6110457", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118638", + "1483118640", + "1483118645", + "1483118638", + "1", + "1", + "0", + "-1", + "5", + "2", + "5", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6112281", + "6112281", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483134653", + "1483134669", + "1483134684", + "1483134653", + "1", + "1", + "0", + "-1", + "15", + "16", + "15", + "0", + "0:0", + "COMPLETED", + "1", + "2147531648Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "2284674", + "2284674", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140322", + "1483140323", + "1483140335", + "1483140322", + "1", + "1", + "0", + "-1", + "12", + "1", + "12", + "0", + "1:0", + "FAILED", + "1", + "2147486648Mn", + "259200", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6109028", + "6109028", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "green-grape", + "1483088282", + "1483088283", + "1483088286", + "1483088282", + "1", + "1", + "0", + "-1", + "3", + "1", + "3", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110628", + "6110628", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "green-grape", + "1483119197", + "1483119198", + "1483119203", + "1483119197", + "1", + "1", + "0", + "-1", + "5", + "1", + "5", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "976874", + "976874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "apple", + "1483085575", + "1483085577", + "1483085602", + "1483085575", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968147", + "968147", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055976", + "1483055977", + "1483056005", + "1483055976", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968151", + "968151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055998", + "1483055999", + "1483056024", + "1483055998", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968195", + "968195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056138", + "1483056139", + "1483056161", + "1483056138", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968216", + "968216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056207", + "1483056208", + "1483056234", + "1483056207", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968224", + "968224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056227", + "1483056228", + "1483056254", + "1483056227", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968228", + "968228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056233", + "1483056235", + "1483056261", + "1483056233", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968234", + "968234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056256", + "1483056258", + "1483056287", + "1483056256", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968244", + "968244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056286", + "1483056288", + "1483056312", + "1483056286", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968284", + "968284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056432", + "1483056434", + "1483056461", + "1483056432", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968286", + "968286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056435", + "1483056437", + "1483056458", + "1483056435", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968290", + "968290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056441", + "1483056444", + "1483056467", + "1483056441", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968316", + "968316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056533", + "1483056534", + "1483056556", + "1483056533", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968334", + "968334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056590", + "1483056591", + "1483056615", + "1483056590", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968336", + "968336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056591", + "1483056592", + "1483056619", + "1483056591", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968354", + "968354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056655", + "1483056657", + "1483056681", + "1483056655", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968356", + "968356", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056657", + "1483056658", + "1483056684", + "1483056657", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968366", + "968366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056684", + "1483056686", + "1483056709", + "1483056684", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968368", + "968368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056693", + "1483056694", + "1483056723", + "1483056693", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968370", + "968370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056704", + "1483056705", + "1483056733", + "1483056704", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968375", + "968375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056707", + "1483056708", + "1483056735", + "1483056707", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968377", + "968377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056709", + "1483056711", + "1483056732", + "1483056709", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968397", + "968397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056776", + "1483056777", + "1483056801", + "1483056776", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968399", + "968399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056779", + "1483056780", + "1483056803", + "1483056779", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968405", + "968405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056803", + "1483056805", + "1483056826", + "1483056803", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968413", + "968413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056827", + "1483056830", + "1483056855", + "1483056827", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968415", + "968415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056833", + "1483056835", + "1483056863", + "1483056833", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968419", + "968419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056850", + "1483056851", + "1483056873", + "1483056850", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968423", + "968423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056856", + "1483056858", + "1483056877", + "1483056856", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968427", + "968427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056864", + "1483056866", + "1483056884", + "1483056864", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968450", + "968450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056902", + "1483056903", + "1483056926", + "1483056902", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968461", + "968461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056926", + "1483056927", + "1483056956", + "1483056926", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968510", + "968510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057118", + "1483057119", + "1483057143", + "1483057118", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968512", + "968512", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057121", + "1483057122", + "1483057150", + "1483057121", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968514", + "968514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057127", + "1483057128", + "1483057156", + "1483057127", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968516", + "968516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057138", + "1483057139", + "1483057165", + "1483057138", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968518", + "968518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057142", + "1483057143", + "1483057170", + "1483057142", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968558", + "968558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057286", + "1483057287", + "1483057313", + "1483057286", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968582", + "968582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057346", + "1483057347", + "1483057376", + "1483057346", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968590", + "968590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057374", + "1483057375", + "1483057401", + "1483057374", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968606", + "968606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057416", + "1483057417", + "1483057443", + "1483057416", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968608", + "968608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057434", + "1483057435", + "1483057462", + "1483057434", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968678", + "968678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057730", + "1483057731", + "1483057755", + "1483057730", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968686", + "968686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057758", + "1483057759", + "1483057787", + "1483057758", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968692", + "968692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057776", + "1483057777", + "1483057804", + "1483057776", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968696", + "968696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057794", + "1483057795", + "1483057821", + "1483057794", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968698", + "968698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057799", + "1483057800", + "1483057823", + "1483057799", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968740", + "968740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057915", + "1483057918", + "1483057940", + "1483057915", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968742", + "968742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057919", + "1483057921", + "1483057944", + "1483057919", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968772", + "968772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057995", + "1483057997", + "1483058019", + "1483057995", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968776", + "968776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058019", + "1483058020", + "1483058043", + "1483058019", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968780", + "968780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058024", + "1483058026", + "1483058050", + "1483058024", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968782", + "968782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058029", + "1483058030", + "1483058053", + "1483058029", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968792", + "968792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058051", + "1483058052", + "1483058080", + "1483058051", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968794", + "968794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058054", + "1483058055", + "1483058084", + "1483058054", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968817", + "968817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058117", + "1483058119", + "1483058147", + "1483058117", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968833", + "968833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058170", + "1483058171", + "1483058197", + "1483058170", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968860", + "968860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058262", + "1483058265", + "1483058288", + "1483058262", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968872", + "968872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058308", + "1483058309", + "1483058337", + "1483058308", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968878", + "968878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058334", + "1483058335", + "1483058357", + "1483058334", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968882", + "968882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058336", + "1483058337", + "1483058359", + "1483058336", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968912", + "968912", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058450", + "1483058451", + "1483058479", + "1483058450", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968924", + "968924", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058489", + "1483058490", + "1483058516", + "1483058489", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968926", + "968926", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058493", + "1483058494", + "1483058517", + "1483058493", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969022", + "969022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058893", + "1483058894", + "1483058922", + "1483058893", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969243", + "969243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060032", + "1483060033", + "1483060059", + "1483060032", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969247", + "969247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060046", + "1483060048", + "1483060077", + "1483060046", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969275", + "969275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060130", + "1483060131", + "1483060154", + "1483060130", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969293", + "969293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060183", + "1483060184", + "1483060208", + "1483060183", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969337", + "969337", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060365", + "1483060368", + "1483060396", + "1483060365", + "1", + "8", + "0", + "-1", + "28", + "3", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969339", + "969339", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060368", + "1483060369", + "1483060392", + "1483060368", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969384", + "969384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060528", + "1483060529", + "1483060553", + "1483060528", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969410", + "969410", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060638", + "1483060639", + "1483060664", + "1483060638", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969417", + "969417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060658", + "1483060659", + "1483060687", + "1483060658", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969423", + "969423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060669", + "1483060670", + "1483060698", + "1483060669", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969451", + "969451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060736", + "1483060737", + "1483060763", + "1483060736", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969457", + "969457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060756", + "1483060757", + "1483060784", + "1483060756", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969479", + "969479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060829", + "1483060831", + "1483060859", + "1483060829", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969501", + "969501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060895", + "1483060896", + "1483060925", + "1483060895", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969517", + "969517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060950", + "1483060951", + "1483060978", + "1483060950", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969521", + "969521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060955", + "1483060957", + "1483060981", + "1483060955", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969549", + "969549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061059", + "1483061060", + "1483061084", + "1483061059", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969609", + "969609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061248", + "1483061249", + "1483061276", + "1483061248", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969640", + "969640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061359", + "1483061360", + "1483061384", + "1483061359", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969656", + "969656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061417", + "1483061418", + "1483061447", + "1483061417", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969662", + "969662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061438", + "1483061439", + "1483061463", + "1483061438", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969729", + "969729", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061658", + "1483061660", + "1483061686", + "1483061658", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969731", + "969731", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061682", + "1483061683", + "1483061710", + "1483061682", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969737", + "969737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061697", + "1483061698", + "1483061726", + "1483061697", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969743", + "969743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061726", + "1483061727", + "1483061755", + "1483061726", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969747", + "969747", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061731", + "1483061732", + "1483061760", + "1483061731", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969749", + "969749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061744", + "1483061745", + "1483061767", + "1483061744", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969773", + "969773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061823", + "1483061824", + "1483061850", + "1483061823", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969777", + "969777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061833", + "1483061834", + "1483061856", + "1483061833", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969783", + "969783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061851", + "1483061852", + "1483061879", + "1483061851", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969793", + "969793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061889", + "1483061891", + "1483061920", + "1483061889", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969795", + "969795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061891", + "1483061894", + "1483061918", + "1483061891", + "1", + "8", + "0", + "-1", + "24", + "3", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969814", + "969814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061955", + "1483061957", + "1483061986", + "1483061955", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969816", + "969816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061961", + "1483061962", + "1483061986", + "1483061961", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969820", + "969820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061981", + "1483061982", + "1483062007", + "1483061981", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969830", + "969830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062007", + "1483062008", + "1483062034", + "1483062007", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969836", + "969836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062021", + "1483062022", + "1483062048", + "1483062021", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969840", + "969840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062035", + "1483062036", + "1483062056", + "1483062035", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969842", + "969842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062037", + "1483062039", + "1483062060", + "1483062037", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969868", + "969868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062120", + "1483062121", + "1483062146", + "1483062120", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969876", + "969876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062146", + "1483062147", + "1483062176", + "1483062146", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969884", + "969884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062173", + "1483062175", + "1483062198", + "1483062173", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969892", + "969892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062198", + "1483062199", + "1483062226", + "1483062198", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969914", + "969914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062265", + "1483062266", + "1483062290", + "1483062265", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969926", + "969926", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062291", + "1483062292", + "1483062320", + "1483062291", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969930", + "969930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062299", + "1483062300", + "1483062327", + "1483062299", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969936", + "969936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062321", + "1483062324", + "1483062353", + "1483062321", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969982", + "969982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062476", + "1483062478", + "1483062506", + "1483062476", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970068", + "970068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062814", + "1483062815", + "1483062843", + "1483062814", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970283", + "970283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063952", + "1483063953", + "1483063972", + "1483063952", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970287", + "970287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063969", + "1483063970", + "1483063997", + "1483063969", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970295", + "970295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063998", + "1483063999", + "1483064021", + "1483063998", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970299", + "970299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064004", + "1483064006", + "1483064024", + "1483064004", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970301", + "970301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064009", + "1483064010", + "1483064031", + "1483064009", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970303", + "970303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064015", + "1483064016", + "1483064039", + "1483064015", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970329", + "970329", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064093", + "1483064095", + "1483064114", + "1483064093", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970339", + "970339", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064122", + "1483064124", + "1483064151", + "1483064122", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970348", + "970348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064151", + "1483064152", + "1483064172", + "1483064151", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970372", + "970372", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064234", + "1483064235", + "1483064263", + "1483064234", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970390", + "970390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064298", + "1483064300", + "1483064320", + "1483064298", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970392", + "970392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064306", + "1483064307", + "1483064327", + "1483064306", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970394", + "970394", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064309", + "1483064310", + "1483064338", + "1483064309", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970434", + "970434", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064438", + "1483064439", + "1483064460", + "1483064438", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970438", + "970438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064441", + "1483064442", + "1483064464", + "1483064441", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970440", + "970440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064453", + "1483064455", + "1483064477", + "1483064453", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970456", + "970456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064498", + "1483064499", + "1483064528", + "1483064498", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970466", + "970466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064511", + "1483064512", + "1483064530", + "1483064511", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970470", + "970470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064531", + "1483064532", + "1483064558", + "1483064531", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970488", + "970488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064581", + "1483064582", + "1483064609", + "1483064581", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970507", + "970507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064627", + "1483064630", + "1483064656", + "1483064627", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970509", + "970509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064636", + "1483064637", + "1483064655", + "1483064636", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970511", + "970511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064641", + "1483064642", + "1483064657", + "1483064641", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970513", + "970513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064644", + "1483064645", + "1483064666", + "1483064644", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970525", + "970525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064684", + "1483064685", + "1483064702", + "1483064684", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970527", + "970527", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064686", + "1483064688", + "1483064709", + "1483064686", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970530", + "970530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064686", + "1483064688", + "1483064706", + "1483064686", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970572", + "970572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064822", + "1483064823", + "1483064844", + "1483064822", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970574", + "970574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064825", + "1483064826", + "1483064853", + "1483064825", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970601", + "970601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064907", + "1483064908", + "1483064930", + "1483064907", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970615", + "970615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064941", + "1483064943", + "1483064964", + "1483064941", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970621", + "970621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064965", + "1483064966", + "1483064988", + "1483064965", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970648", + "970648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065062", + "1483065063", + "1483065092", + "1483065062", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970658", + "970658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065079", + "1483065080", + "1483065102", + "1483065079", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970660", + "970660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065080", + "1483065083", + "1483065106", + "1483065080", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970665", + "970665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065083", + "1483065086", + "1483065107", + "1483065083", + "1", + "8", + "0", + "-1", + "21", + "3", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970702", + "970702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065217", + "1483065218", + "1483065246", + "1483065217", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970708", + "970708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065227", + "1483065229", + "1483065252", + "1483065227", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970772", + "970772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065517", + "1483065518", + "1483065545", + "1483065517", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970796", + "970796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065619", + "1483065620", + "1483065639", + "1483065619", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970825", + "970825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065694", + "1483065695", + "1483065715", + "1483065694", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970845", + "970845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065745", + "1483065746", + "1483065768", + "1483065745", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970864", + "970864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065795", + "1483065796", + "1483065823", + "1483065795", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970866", + "970866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065802", + "1483065803", + "1483065831", + "1483065802", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970868", + "970868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065805", + "1483065806", + "1483065834", + "1483065805", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970870", + "970870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065810", + "1483065811", + "1483065834", + "1483065810", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970872", + "970872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065818", + "1483065819", + "1483065835", + "1483065818", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970882", + "970882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065835", + "1483065838", + "1483065867", + "1483065835", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970888", + "970888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065866", + "1483065867", + "1483065887", + "1483065866", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970890", + "970890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065868", + "1483065870", + "1483065895", + "1483065868", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970906", + "970906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065917", + "1483065918", + "1483065947", + "1483065917", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970914", + "970914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065943", + "1483065945", + "1483065969", + "1483065943", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970916", + "970916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065946", + "1483065947", + "1483065972", + "1483065946", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970918", + "970918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065947", + "1483065948", + "1483065966", + "1483065947", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970926", + "970926", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065972", + "1483065973", + "1483066001", + "1483065972", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970930", + "970930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065983", + "1483065984", + "1483066003", + "1483065983", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970932", + "970932", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066001", + "1483066002", + "1483066020", + "1483066001", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970934", + "970934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066004", + "1483066005", + "1483066022", + "1483066004", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970938", + "970938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066011", + "1483066012", + "1483066034", + "1483066011", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970960", + "970960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066069", + "1483066070", + "1483066095", + "1483066069", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970964", + "970964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066081", + "1483066083", + "1483066101", + "1483066081", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970975", + "970975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066101", + "1483066102", + "1483066127", + "1483066101", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970977", + "970977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066108", + "1483066109", + "1483066128", + "1483066108", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970979", + "970979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066110", + "1483066112", + "1483066129", + "1483066110", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970981", + "970981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066127", + "1483066128", + "1483066153", + "1483066127", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970983", + "970983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066129", + "1483066130", + "1483066148", + "1483066129", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970996", + "970996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066149", + "1483066150", + "1483066179", + "1483066149", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971020", + "971020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066226", + "1483066227", + "1483066255", + "1483066226", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971022", + "971022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066230", + "1483066231", + "1483066256", + "1483066230", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971054", + "971054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066335", + "1483066336", + "1483066363", + "1483066335", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971074", + "971074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066406", + "1483066407", + "1483066434", + "1483066406", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971100", + "971100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066496", + "1483066497", + "1483066522", + "1483066496", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971120", + "971120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066578", + "1483066579", + "1483066607", + "1483066578", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971316", + "971316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067865", + "1483067866", + "1483067884", + "1483067865", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971318", + "971318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067877", + "1483067878", + "1483067894", + "1483067877", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971320", + "971320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067884", + "1483067885", + "1483067908", + "1483067884", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971322", + "971322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067885", + "1483067888", + "1483067913", + "1483067885", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971324", + "971324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067895", + "1483067896", + "1483067923", + "1483067895", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971326", + "971326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067897", + "1483067898", + "1483067920", + "1483067897", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971334", + "971334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067909", + "1483067910", + "1483067928", + "1483067909", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971336", + "971336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067913", + "1483067914", + "1483067943", + "1483067913", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971355", + "971355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067957", + "1483067958", + "1483067983", + "1483067957", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971357", + "971357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067964", + "1483067965", + "1483067990", + "1483067964", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971363", + "971363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067984", + "1483067985", + "1483068014", + "1483067984", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971365", + "971365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067986", + "1483067987", + "1483068015", + "1483067986", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971375", + "971375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068012", + "1483068013", + "1483068040", + "1483068012", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971377", + "971377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068015", + "1483068016", + "1483068034", + "1483068015", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971381", + "971381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068018", + "1483068019", + "1483068038", + "1483068018", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971399", + "971399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068071", + "1483068072", + "1483068098", + "1483068071", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971403", + "971403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068078", + "1483068079", + "1483068096", + "1483068078", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971405", + "971405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068079", + "1483068082", + "1483068108", + "1483068079", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971411", + "971411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068098", + "1483068099", + "1483068128", + "1483068098", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971425", + "971425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068132", + "1483068133", + "1483068162", + "1483068132", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971442", + "971442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068164", + "1483068165", + "1483068187", + "1483068164", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971456", + "971456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068199", + "1483068202", + "1483068222", + "1483068199", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971458", + "971458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068206", + "1483068207", + "1483068227", + "1483068206", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971462", + "971462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068222", + "1483068223", + "1483068243", + "1483068222", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971478", + "971478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068274", + "1483068275", + "1483068291", + "1483068274", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971480", + "971480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068281", + "1483068282", + "1483068308", + "1483068281", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971484", + "971484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068290", + "1483068291", + "1483068317", + "1483068290", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971486", + "971486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068292", + "1483068293", + "1483068317", + "1483068292", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971500", + "971500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068335", + "1483068336", + "1483068353", + "1483068335", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971502", + "971502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068336", + "1483068338", + "1483068359", + "1483068336", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971516", + "971516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068378", + "1483068379", + "1483068395", + "1483068378", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971518", + "971518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068381", + "1483068382", + "1483068401", + "1483068381", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971526", + "971526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068398", + "1483068399", + "1483068424", + "1483068398", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971530", + "971530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068406", + "1483068407", + "1483068423", + "1483068406", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971532", + "971532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068410", + "1483068411", + "1483068424", + "1483068410", + "1", + "8", + "0", + "-1", + "13", + "1", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971534", + "971534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068415", + "1483068416", + "1483068443", + "1483068415", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971536", + "971536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068422", + "1483068423", + "1483068437", + "1483068422", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971538", + "971538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068423", + "1483068424", + "1483068446", + "1483068423", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971540", + "971540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068424", + "1483068426", + "1483068455", + "1483068424", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971569", + "971569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068495", + "1483068497", + "1483068518", + "1483068495", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971581", + "971581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068519", + "1483068520", + "1483068548", + "1483068519", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971587", + "971587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068548", + "1483068549", + "1483068578", + "1483068548", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971595", + "971595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068578", + "1483068579", + "1483068601", + "1483068578", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971599", + "971599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068586", + "1483068587", + "1483068614", + "1483068586", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971613", + "971613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068644", + "1483068645", + "1483068674", + "1483068644", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971616", + "971616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068645", + "1483068648", + "1483068673", + "1483068645", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971624", + "971624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068674", + "1483068675", + "1483068694", + "1483068674", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971626", + "971626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068675", + "1483068678", + "1483068698", + "1483068675", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971632", + "971632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068699", + "1483068701", + "1483068729", + "1483068699", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971650", + "971650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068752", + "1483068753", + "1483068778", + "1483068752", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971652", + "971652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068758", + "1483068759", + "1483068780", + "1483068758", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971700", + "971700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068931", + "1483068932", + "1483068959", + "1483068931", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971708", + "971708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068960", + "1483068961", + "1483068978", + "1483068960", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971710", + "971710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068974", + "1483068975", + "1483068999", + "1483068974", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971724", + "971724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069021", + "1483069022", + "1483069040", + "1483069021", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971726", + "971726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069024", + "1483069025", + "1483069041", + "1483069024", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971730", + "971730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069040", + "1483069041", + "1483069057", + "1483069040", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971734", + "971734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069041", + "1483069042", + "1483069071", + "1483069041", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971745", + "971745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069071", + "1483069072", + "1483069086", + "1483069071", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971751", + "971751", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069086", + "1483069089", + "1483069116", + "1483069086", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971755", + "971755", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069106", + "1483069107", + "1483069130", + "1483069106", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971771", + "971771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069146", + "1483069147", + "1483069174", + "1483069146", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971773", + "971773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069149", + "1483069150", + "1483069176", + "1483069149", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971779", + "971779", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069165", + "1483069166", + "1483069191", + "1483069165", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971855", + "971855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069567", + "1483069568", + "1483069588", + "1483069567", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971857", + "971857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069575", + "1483069576", + "1483069595", + "1483069575", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971861", + "971861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069590", + "1483069592", + "1483069613", + "1483069590", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971869", + "971869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069608", + "1483069609", + "1483069632", + "1483069608", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971903", + "971903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069688", + "1483069690", + "1483069710", + "1483069688", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971905", + "971905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069690", + "1483069693", + "1483069713", + "1483069690", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971915", + "971915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069715", + "1483069717", + "1483069738", + "1483069715", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971923", + "971923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069736", + "1483069737", + "1483069757", + "1483069736", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971925", + "971925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069738", + "1483069739", + "1483069757", + "1483069738", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971927", + "971927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069739", + "1483069740", + "1483069759", + "1483069739", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971929", + "971929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069741", + "1483069743", + "1483069760", + "1483069741", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971931", + "971931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069750", + "1483069751", + "1483069770", + "1483069750", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971947", + "971947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069786", + "1483069787", + "1483069806", + "1483069786", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971949", + "971949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069787", + "1483069789", + "1483069808", + "1483069787", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971951", + "971951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069790", + "1483069793", + "1483069812", + "1483069790", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971955", + "971955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069798", + "1483069799", + "1483069816", + "1483069798", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971957", + "971957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069806", + "1483069807", + "1483069823", + "1483069806", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971959", + "971959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069807", + "1483069809", + "1483069829", + "1483069807", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971961", + "971961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069809", + "1483069810", + "1483069832", + "1483069809", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971963", + "971963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069812", + "1483069813", + "1483069836", + "1483069812", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971969", + "971969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069823", + "1483069824", + "1483069843", + "1483069823", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971971", + "971971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069825", + "1483069827", + "1483069849", + "1483069825", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971975", + "971975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069832", + "1483069833", + "1483069850", + "1483069832", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971977", + "971977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069837", + "1483069838", + "1483069855", + "1483069837", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971983", + "971983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069850", + "1483069851", + "1483069880", + "1483069850", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971995", + "971995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069880", + "1483069882", + "1483069901", + "1483069880", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972003", + "972003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069904", + "1483069905", + "1483069921", + "1483069904", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972005", + "972005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069910", + "1483069911", + "1483069932", + "1483069910", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972007", + "972007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069915", + "1483069916", + "1483069937", + "1483069915", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972009", + "972009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069918", + "1483069919", + "1483069940", + "1483069918", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972019", + "972019", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069937", + "1483069938", + "1483069959", + "1483069937", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972021", + "972021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069940", + "1483069941", + "1483069958", + "1483069940", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972029", + "972029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069952", + "1483069953", + "1483069980", + "1483069952", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972038", + "972038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069963", + "1483069965", + "1483069984", + "1483069963", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972042", + "972042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069981", + "1483069984", + "1483070002", + "1483069981", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972046", + "972046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069985", + "1483069987", + "1483070002", + "1483069985", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972050", + "972050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070002", + "1483070003", + "1483070021", + "1483070002", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972054", + "972054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070003", + "1483070005", + "1483070024", + "1483070003", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972056", + "972056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070005", + "1483070006", + "1483070026", + "1483070005", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972070", + "972070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070024", + "1483070025", + "1483070053", + "1483070024", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972072", + "972072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070025", + "1483070026", + "1483070052", + "1483070025", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972074", + "972074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070027", + "1483070029", + "1483070057", + "1483070027", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972088", + "972088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070058", + "1483070060", + "1483070081", + "1483070058", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972090", + "972090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070070", + "1483070071", + "1483070094", + "1483070070", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972094", + "972094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070075", + "1483070077", + "1483070089", + "1483070075", + "1", + "8", + "0", + "-1", + "12", + "2", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972096", + "972096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070082", + "1483070083", + "1483070108", + "1483070082", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972102", + "972102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070090", + "1483070091", + "1483070113", + "1483070090", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972104", + "972104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070095", + "1483070096", + "1483070118", + "1483070095", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972112", + "972112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070113", + "1483070115", + "1483070128", + "1483070113", + "1", + "8", + "0", + "-1", + "13", + "2", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972116", + "972116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070121", + "1483070122", + "1483070147", + "1483070121", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972118", + "972118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070123", + "1483070125", + "1483070152", + "1483070123", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972120", + "972120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070126", + "1483070128", + "1483070155", + "1483070126", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972124", + "972124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070129", + "1483070131", + "1483070159", + "1483070129", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972126", + "972126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070133", + "1483070134", + "1483070162", + "1483070133", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972130", + "972130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070147", + "1483070148", + "1483070169", + "1483070147", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972134", + "972134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070155", + "1483070156", + "1483070179", + "1483070155", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972140", + "972140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070169", + "1483070170", + "1483070188", + "1483070169", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972142", + "972142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070175", + "1483070176", + "1483070200", + "1483070175", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972144", + "972144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070179", + "1483070180", + "1483070201", + "1483070179", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972156", + "972156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070202", + "1483070204", + "1483070227", + "1483070202", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972158", + "972158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070209", + "1483070210", + "1483070230", + "1483070209", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972164", + "972164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070223", + "1483070225", + "1483070254", + "1483070223", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972180", + "972180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070261", + "1483070263", + "1483070285", + "1483070261", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972188", + "972188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070284", + "1483070285", + "1483070307", + "1483070284", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972190", + "972190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070286", + "1483070288", + "1483070310", + "1483070286", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972198", + "972198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070301", + "1483070302", + "1483070321", + "1483070301", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972200", + "972200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070308", + "1483070309", + "1483070327", + "1483070308", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972202", + "972202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070311", + "1483070312", + "1483070337", + "1483070311", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972206", + "972206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070322", + "1483070323", + "1483070341", + "1483070322", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972210", + "972210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070337", + "1483070338", + "1483070366", + "1483070337", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972223", + "972223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070370", + "1483070371", + "1483070392", + "1483070370", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972225", + "972225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070374", + "1483070375", + "1483070398", + "1483070374", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972227", + "972227", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070377", + "1483070378", + "1483070405", + "1483070377", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972231", + "972231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070391", + "1483070392", + "1483070408", + "1483070391", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972233", + "972233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070392", + "1483070393", + "1483070417", + "1483070392", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972237", + "972237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070396", + "1483070398", + "1483070421", + "1483070396", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972245", + "972245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070408", + "1483070409", + "1483070431", + "1483070408", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972247", + "972247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070409", + "1483070412", + "1483070431", + "1483070409", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972249", + "972249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070418", + "1483070419", + "1483070437", + "1483070418", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972267", + "972267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070465", + "1483070466", + "1483070486", + "1483070465", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972275", + "972275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070486", + "1483070487", + "1483070505", + "1483070486", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972279", + "972279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070493", + "1483070495", + "1483070518", + "1483070493", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972285", + "972285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070507", + "1483070509", + "1483070536", + "1483070507", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972289", + "972289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070515", + "1483070516", + "1483070540", + "1483070515", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972293", + "972293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070523", + "1483070524", + "1483070547", + "1483070523", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972336", + "972336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070634", + "1483070636", + "1483070663", + "1483070634", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972358", + "972358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070734", + "1483070735", + "1483070755", + "1483070734", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972364", + "972364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070756", + "1483070757", + "1483070780", + "1483070756", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972368", + "972368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070762", + "1483070763", + "1483070778", + "1483070762", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972370", + "972370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070768", + "1483070769", + "1483070789", + "1483070768", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972372", + "972372", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070778", + "1483070779", + "1483070799", + "1483070778", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972374", + "972374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070780", + "1483070782", + "1483070804", + "1483070780", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972378", + "972378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070796", + "1483070797", + "1483070825", + "1483070796", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972380", + "972380", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070799", + "1483070800", + "1483070821", + "1483070799", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972388", + "972388", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070818", + "1483070820", + "1483070838", + "1483070818", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972415", + "972415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070874", + "1483070876", + "1483070897", + "1483070874", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972419", + "972419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070877", + "1483070879", + "1483070898", + "1483070877", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972429", + "972429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070899", + "1483070900", + "1483070916", + "1483070899", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972431", + "972431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070900", + "1483070901", + "1483070917", + "1483070900", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972449", + "972449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070943", + "1483070944", + "1483070962", + "1483070943", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972451", + "972451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070946", + "1483070947", + "1483070966", + "1483070946", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972453", + "972453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070951", + "1483070952", + "1483070976", + "1483070951", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972455", + "972455", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070959", + "1483070960", + "1483070980", + "1483070959", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972457", + "972457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070963", + "1483070964", + "1483070977", + "1483070963", + "1", + "8", + "0", + "-1", + "13", + "1", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972459", + "972459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070966", + "1483070967", + "1483070979", + "1483070966", + "1", + "8", + "0", + "-1", + "12", + "1", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972463", + "972463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070978", + "1483070980", + "1483071002", + "1483070978", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972465", + "972465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070980", + "1483070981", + "1483071005", + "1483070980", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972469", + "972469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070984", + "1483070986", + "1483071007", + "1483070984", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972471", + "972471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071003", + "1483071004", + "1483071021", + "1483071003", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972473", + "972473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071005", + "1483071007", + "1483071021", + "1483071005", + "1", + "8", + "0", + "-1", + "14", + "2", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972475", + "972475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071007", + "1483071009", + "1483071027", + "1483071007", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972497", + "972497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071054", + "1483071056", + "1483071073", + "1483071054", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972499", + "972499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071057", + "1483071058", + "1483071076", + "1483071057", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972501", + "972501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071058", + "1483071059", + "1483071083", + "1483071058", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972503", + "972503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071073", + "1483071074", + "1483071088", + "1483071073", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972505", + "972505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071074", + "1483071076", + "1483071091", + "1483071074", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972509", + "972509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071078", + "1483071080", + "1483071109", + "1483071078", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972513", + "972513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071089", + "1483071090", + "1483071115", + "1483071089", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972515", + "972515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071091", + "1483071093", + "1483071116", + "1483071091", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972517", + "972517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071104", + "1483071105", + "1483071122", + "1483071104", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972519", + "972519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071108", + "1483071109", + "1483071124", + "1483071108", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972521", + "972521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071110", + "1483071112", + "1483071133", + "1483071110", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972523", + "972523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071113", + "1483071115", + "1483071129", + "1483071113", + "1", + "8", + "0", + "-1", + "14", + "2", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972541", + "972541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071134", + "1483071136", + "1483071157", + "1483071134", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972543", + "972543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071151", + "1483071152", + "1483071174", + "1483071151", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972547", + "972547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071158", + "1483071160", + "1483071183", + "1483071158", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972549", + "972549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071160", + "1483071161", + "1483071183", + "1483071160", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972551", + "972551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071163", + "1483071164", + "1483071178", + "1483071163", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972553", + "972553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071175", + "1483071176", + "1483071200", + "1483071175", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972561", + "972561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071183", + "1483071186", + "1483071209", + "1483071183", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972607", + "972607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071302", + "1483071303", + "1483071325", + "1483071302", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972611", + "972611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071306", + "1483071309", + "1483071334", + "1483071306", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972631", + "972631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071405", + "1483071406", + "1483071434", + "1483071405", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972633", + "972633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071407", + "1483071409", + "1483071435", + "1483071407", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972639", + "972639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071419", + "1483071420", + "1483071445", + "1483071419", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972643", + "972643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071434", + "1483071435", + "1483071464", + "1483071434", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972653", + "972653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071464", + "1483071465", + "1483071491", + "1483071464", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972655", + "972655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071468", + "1483071469", + "1483071494", + "1483071468", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972659", + "972659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071478", + "1483071479", + "1483071502", + "1483071478", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972669", + "972669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071497", + "1483071498", + "1483071527", + "1483071497", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972677", + "972677", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071512", + "1483071513", + "1483071539", + "1483071512", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972685", + "972685", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071539", + "1483071540", + "1483071565", + "1483071539", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972691", + "972691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071552", + "1483071553", + "1483071582", + "1483071552", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972707", + "972707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071593", + "1483071594", + "1483071619", + "1483071593", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972840", + "972840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072144", + "1483072145", + "1483072173", + "1483072144", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972857", + "972857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072191", + "1483072192", + "1483072221", + "1483072191", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972859", + "972859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072220", + "1483072221", + "1483072248", + "1483072220", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972864", + "972864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072222", + "1483072223", + "1483072248", + "1483072222", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972866", + "972866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072223", + "1483072224", + "1483072248", + "1483072223", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972882", + "972882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072279", + "1483072281", + "1483072309", + "1483072279", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972924", + "972924", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072426", + "1483072427", + "1483072448", + "1483072426", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972930", + "972930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072451", + "1483072453", + "1483072474", + "1483072451", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973042", + "973042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072802", + "1483072805", + "1483072833", + "1483072802", + "1", + "8", + "0", + "-1", + "28", + "3", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973068", + "973068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072895", + "1483072897", + "1483072918", + "1483072895", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973084", + "973084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072948", + "1483072949", + "1483072974", + "1483072948", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973090", + "973090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072974", + "1483072975", + "1483072999", + "1483072974", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973092", + "973092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072975", + "1483072977", + "1483072998", + "1483072975", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973094", + "973094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072989", + "1483072990", + "1483073011", + "1483072989", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973113", + "973113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073039", + "1483073042", + "1483073069", + "1483073039", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973137", + "973137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073117", + "1483073118", + "1483073136", + "1483073117", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973139", + "973139", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073120", + "1483073121", + "1483073137", + "1483073120", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973141", + "973141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073135", + "1483073136", + "1483073163", + "1483073135", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973145", + "973145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073137", + "1483073139", + "1483073166", + "1483073137", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973148", + "973148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073138", + "1483073139", + "1483073162", + "1483073138", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973150", + "973150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073138", + "1483073139", + "1483073156", + "1483073138", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973154", + "973154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073157", + "1483073158", + "1483073175", + "1483073157", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973158", + "973158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073163", + "1483073164", + "1483073183", + "1483073163", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973164", + "973164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073175", + "1483073176", + "1483073202", + "1483073175", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973170", + "973170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073197", + "1483073199", + "1483073227", + "1483073197", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973200", + "973200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073304", + "1483073305", + "1483073328", + "1483073304", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973202", + "973202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073312", + "1483073313", + "1483073335", + "1483073312", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973220", + "973220", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073362", + "1483073363", + "1483073392", + "1483073362", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973246", + "973246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073456", + "1483073457", + "1483073480", + "1483073456", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973250", + "973250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073468", + "1483073469", + "1483073492", + "1483073468", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973274", + "973274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073558", + "1483073559", + "1483073582", + "1483073558", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973276", + "973276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073578", + "1483073579", + "1483073600", + "1483073578", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973292", + "973292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073629", + "1483073630", + "1483073656", + "1483073629", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973294", + "973294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073632", + "1483073633", + "1483073653", + "1483073632", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973296", + "973296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073636", + "1483073637", + "1483073662", + "1483073636", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973339", + "973339", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073755", + "1483073757", + "1483073780", + "1483073755", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973402", + "973402", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073986", + "1483073988", + "1483074017", + "1483073986", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973404", + "973404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074018", + "1483074019", + "1483074045", + "1483074018", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973428", + "973428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074110", + "1483074112", + "1483074131", + "1483074110", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973448", + "973448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074175", + "1483074177", + "1483074203", + "1483074175", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973460", + "973460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074226", + "1483074227", + "1483074249", + "1483074226", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973466", + "973466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074236", + "1483074237", + "1483074260", + "1483074236", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973468", + "973468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074237", + "1483074240", + "1483074261", + "1483074237", + "1", + "8", + "0", + "-1", + "21", + "3", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973472", + "973472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074250", + "1483074251", + "1483074270", + "1483074250", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973474", + "973474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074261", + "1483074262", + "1483074283", + "1483074261", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973494", + "973494", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074309", + "1483074310", + "1483074333", + "1483074309", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973496", + "973496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074311", + "1483074313", + "1483074337", + "1483074311", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973498", + "973498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074322", + "1483074323", + "1483074349", + "1483074322", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973502", + "973502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074333", + "1483074334", + "1483074356", + "1483074333", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973510", + "973510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074349", + "1483074350", + "1483074373", + "1483074349", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973512", + "973512", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074351", + "1483074353", + "1483074376", + "1483074351", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973514", + "973514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074356", + "1483074357", + "1483074382", + "1483074356", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973518", + "973518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074368", + "1483074369", + "1483074390", + "1483074368", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973542", + "973542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074418", + "1483074420", + "1483074444", + "1483074418", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973544", + "973544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074441", + "1483074442", + "1483074466", + "1483074441", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973546", + "973546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074442", + "1483074445", + "1483074470", + "1483074442", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973551", + "973551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074445", + "1483074448", + "1483074477", + "1483074445", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973570", + "973570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074489", + "1483074490", + "1483074516", + "1483074489", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973584", + "973584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074516", + "1483074517", + "1483074542", + "1483074516", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973588", + "973588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074552", + "1483074553", + "1483074578", + "1483074552", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973590", + "973590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074554", + "1483074556", + "1483074577", + "1483074554", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973594", + "973594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074569", + "1483074570", + "1483074588", + "1483074569", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973610", + "973610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074609", + "1483074610", + "1483074634", + "1483074609", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973614", + "973614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074633", + "1483074634", + "1483074658", + "1483074633", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973629", + "973629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074657", + "1483074659", + "1483074687", + "1483074657", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973659", + "973659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074765", + "1483074766", + "1483074793", + "1483074765", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973883", + "973883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075761", + "1483075762", + "1483075789", + "1483075761", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973957", + "973957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076106", + "1483076107", + "1483076128", + "1483076106", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973959", + "973959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076108", + "1483076110", + "1483076131", + "1483076108", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973977", + "973977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076158", + "1483076160", + "1483076184", + "1483076158", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974003", + "974003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076244", + "1483076245", + "1483076268", + "1483076244", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974025", + "974025", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076323", + "1483076324", + "1483076349", + "1483076323", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974064", + "974064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076468", + "1483076469", + "1483076498", + "1483076468", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974133", + "974133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076716", + "1483076717", + "1483076741", + "1483076716", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974135", + "974135", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076730", + "1483076731", + "1483076759", + "1483076730", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974141", + "974141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076747", + "1483076749", + "1483076776", + "1483076747", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974153", + "974153", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076798", + "1483076799", + "1483076821", + "1483076798", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974157", + "974157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076803", + "1483076805", + "1483076824", + "1483076803", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974162", + "974162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076805", + "1483076808", + "1483076837", + "1483076805", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974176", + "974176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076858", + "1483076859", + "1483076886", + "1483076858", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974178", + "974178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076876", + "1483076877", + "1483076903", + "1483076876", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974180", + "974180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076877", + "1483076880", + "1483076902", + "1483076877", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974182", + "974182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076882", + "1483076883", + "1483076908", + "1483076882", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974184", + "974184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076886", + "1483076887", + "1483076912", + "1483076886", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974188", + "974188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076904", + "1483076906", + "1483076930", + "1483076904", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974190", + "974190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076908", + "1483076909", + "1483076936", + "1483076908", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974194", + "974194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076914", + "1483076916", + "1483076940", + "1483076914", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974204", + "974204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076944", + "1483076945", + "1483076965", + "1483076944", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974235", + "974235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077030", + "1483077031", + "1483077059", + "1483077030", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974288", + "974288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077227", + "1483077229", + "1483077254", + "1483077227", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974292", + "974292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077255", + "1483077256", + "1483077278", + "1483077255", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974294", + "974294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077260", + "1483077261", + "1483077289", + "1483077260", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974338", + "974338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077416", + "1483077417", + "1483077443", + "1483077416", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974357", + "974357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077481", + "1483077482", + "1483077511", + "1483077481", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974365", + "974365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077512", + "1483077513", + "1483077540", + "1483077512", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974367", + "974367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077516", + "1483077517", + "1483077543", + "1483077516", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974371", + "974371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077523", + "1483077524", + "1483077550", + "1483077523", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974383", + "974383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077555", + "1483077556", + "1483077578", + "1483077555", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974458", + "974458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077875", + "1483077876", + "1483077895", + "1483077875", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974462", + "974462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077883", + "1483077884", + "1483077912", + "1483077883", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974468", + "974468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077913", + "1483077914", + "1483077941", + "1483077913", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974470", + "974470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077924", + "1483077925", + "1483077947", + "1483077924", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974472", + "974472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077933", + "1483077934", + "1483077959", + "1483077933", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974474", + "974474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077937", + "1483077938", + "1483077962", + "1483077937", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974499", + "974499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078008", + "1483078011", + "1483078038", + "1483078008", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974501", + "974501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078016", + "1483078017", + "1483078041", + "1483078016", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974507", + "974507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078034", + "1483078037", + "1483078063", + "1483078034", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974511", + "974511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078042", + "1483078043", + "1483078072", + "1483078042", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974519", + "974519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078073", + "1483078074", + "1483078095", + "1483078073", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974521", + "974521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078080", + "1483078081", + "1483078108", + "1483078080", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974523", + "974523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078089", + "1483078090", + "1483078112", + "1483078089", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974551", + "974551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078178", + "1483078180", + "1483078208", + "1483078178", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974563", + "974563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078210", + "1483078212", + "1483078234", + "1483078210", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974595", + "974595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078283", + "1483078284", + "1483078308", + "1483078283", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974597", + "974597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078285", + "1483078287", + "1483078313", + "1483078285", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974599", + "974599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078302", + "1483078303", + "1483078332", + "1483078302", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974601", + "974601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078306", + "1483078307", + "1483078335", + "1483078306", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974605", + "974605", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078310", + "1483078311", + "1483078339", + "1483078310", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974611", + "974611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078332", + "1483078333", + "1483078353", + "1483078332", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974616", + "974616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078336", + "1483078337", + "1483078364", + "1483078336", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974620", + "974620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078339", + "1483078340", + "1483078369", + "1483078339", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974630", + "974630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078370", + "1483078371", + "1483078396", + "1483078370", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974640", + "974640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078396", + "1483078399", + "1483078425", + "1483078396", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974652", + "974652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078426", + "1483078427", + "1483078453", + "1483078426", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974658", + "974658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078450", + "1483078451", + "1483078475", + "1483078450", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974660", + "974660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078451", + "1483078453", + "1483078477", + "1483078451", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974675", + "974675", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078488", + "1483078489", + "1483078518", + "1483078488", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974703", + "974703", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078570", + "1483078572", + "1483078597", + "1483078570", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975005", + "975005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080021", + "1483080023", + "1483080040", + "1483080021", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975020", + "975020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080089", + "1483080092", + "1483080110", + "1483080089", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975052", + "975052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080180", + "1483080183", + "1483080206", + "1483080180", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975062", + "975062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080206", + "1483080207", + "1483080235", + "1483080206", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975066", + "975066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080225", + "1483080226", + "1483080245", + "1483080225", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975070", + "975070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080236", + "1483080238", + "1483080260", + "1483080236", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975092", + "975092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080303", + "1483080304", + "1483080328", + "1483080303", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975096", + "975096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080306", + "1483080307", + "1483080329", + "1483080306", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975110", + "975110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080367", + "1483080369", + "1483080391", + "1483080367", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975112", + "975112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080370", + "1483080372", + "1483080391", + "1483080370", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975114", + "975114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080374", + "1483080375", + "1483080398", + "1483080374", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975139", + "975139", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080437", + "1483080438", + "1483080458", + "1483080437", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975153", + "975153", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080462", + "1483080464", + "1483080492", + "1483080462", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975161", + "975161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080491", + "1483080492", + "1483080518", + "1483080491", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975184", + "975184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080551", + "1483080553", + "1483080576", + "1483080551", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975186", + "975186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080564", + "1483080565", + "1483080582", + "1483080564", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975190", + "975190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080576", + "1483080577", + "1483080606", + "1483080576", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975194", + "975194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080583", + "1483080584", + "1483080611", + "1483080583", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975198", + "975198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080606", + "1483080607", + "1483080624", + "1483080606", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975200", + "975200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080612", + "1483080613", + "1483080630", + "1483080612", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975203", + "975203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080612", + "1483080613", + "1483080631", + "1483080612", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975219", + "975219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080658", + "1483080659", + "1483080687", + "1483080658", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975221", + "975221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080668", + "1483080669", + "1483080694", + "1483080668", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975225", + "975225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080671", + "1483080672", + "1483080695", + "1483080671", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975229", + "975229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080688", + "1483080689", + "1483080707", + "1483080688", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975233", + "975233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080694", + "1483080696", + "1483080725", + "1483080694", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975235", + "975235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080696", + "1483080697", + "1483080720", + "1483080696", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975238", + "975238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080696", + "1483080697", + "1483080723", + "1483080696", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975240", + "975240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080708", + "1483080709", + "1483080735", + "1483080708", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975244", + "975244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080720", + "1483080721", + "1483080737", + "1483080720", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975246", + "975246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080724", + "1483080725", + "1483080742", + "1483080724", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975250", + "975250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080727", + "1483080728", + "1483080747", + "1483080727", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975262", + "975262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080743", + "1483080745", + "1483080772", + "1483080743", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975272", + "975272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080773", + "1483080775", + "1483080802", + "1483080773", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975274", + "975274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080781", + "1483080782", + "1483080803", + "1483080781", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975290", + "975290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080844", + "1483080845", + "1483080865", + "1483080844", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975294", + "975294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080847", + "1483080849", + "1483080870", + "1483080847", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975334", + "975334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080975", + "1483080976", + "1483080997", + "1483080975", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975336", + "975336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080976", + "1483080978", + "1483081001", + "1483080976", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975338", + "975338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080984", + "1483080985", + "1483081008", + "1483080984", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975340", + "975340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080996", + "1483080997", + "1483081018", + "1483080996", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975342", + "975342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080998", + "1483081000", + "1483081029", + "1483080998", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975361", + "975361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081050", + "1483081052", + "1483081080", + "1483081050", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975363", + "975363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081053", + "1483081055", + "1483081083", + "1483081053", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975367", + "975367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081074", + "1483081075", + "1483081096", + "1483081074", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975375", + "975375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081084", + "1483081085", + "1483081114", + "1483081084", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975379", + "975379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081108", + "1483081109", + "1483081131", + "1483081108", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975381", + "975381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081115", + "1483081116", + "1483081138", + "1483081115", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975385", + "975385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081121", + "1483081122", + "1483081144", + "1483081121", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975387", + "975387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081124", + "1483081125", + "1483081146", + "1483081124", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975407", + "975407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081187", + "1483081188", + "1483081215", + "1483081187", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975419", + "975419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081218", + "1483081219", + "1483081245", + "1483081218", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975429", + "975429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081248", + "1483081249", + "1483081269", + "1483081248", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975500", + "975500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081526", + "1483081527", + "1483081555", + "1483081526", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975504", + "975504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081543", + "1483081544", + "1483081567", + "1483081543", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975521", + "975521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081596", + "1483081597", + "1483081620", + "1483081596", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975549", + "975549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081686", + "1483081687", + "1483081702", + "1483081686", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975552", + "975552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081687", + "1483081690", + "1483081712", + "1483081687", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975562", + "975562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081712", + "1483081713", + "1483081730", + "1483081712", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975564", + "975564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081726", + "1483081727", + "1483081744", + "1483081726", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975566", + "975566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081731", + "1483081732", + "1483081751", + "1483081731", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975568", + "975568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081733", + "1483081735", + "1483081752", + "1483081733", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975574", + "975574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081739", + "1483081741", + "1483081768", + "1483081739", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975580", + "975580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081752", + "1483081753", + "1483081782", + "1483081752", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975592", + "975592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081798", + "1483081799", + "1483081820", + "1483081798", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975594", + "975594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081805", + "1483081806", + "1483081820", + "1483081805", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975602", + "975602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081823", + "1483081824", + "1483081853", + "1483081823", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975612", + "975612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081856", + "1483081858", + "1483081877", + "1483081856", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975614", + "975614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081858", + "1483081861", + "1483081877", + "1483081858", + "1", + "8", + "0", + "-1", + "16", + "3", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975648", + "975648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081943", + "1483081945", + "1483081972", + "1483081943", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975654", + "975654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081970", + "1483081971", + "1483081989", + "1483081970", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975656", + "975656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081973", + "1483081974", + "1483081995", + "1483081973", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975658", + "975658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081976", + "1483081978", + "1483081997", + "1483081976", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975660", + "975660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081979", + "1483081981", + "1483081998", + "1483081979", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975686", + "975686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082045", + "1483082046", + "1483082062", + "1483082045", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975688", + "975688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082049", + "1483082050", + "1483082076", + "1483082049", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975694", + "975694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082061", + "1483082063", + "1483082092", + "1483082061", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975698", + "975698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082064", + "1483082067", + "1483082085", + "1483082064", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975700", + "975700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082077", + "1483082078", + "1483082096", + "1483082077", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975704", + "975704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082085", + "1483082088", + "1483082104", + "1483082085", + "1", + "8", + "0", + "-1", + "16", + "3", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975706", + "975706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082088", + "1483082091", + "1483082113", + "1483082088", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975730", + "975730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082149", + "1483082150", + "1483082178", + "1483082149", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975744", + "975744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082202", + "1483082204", + "1483082231", + "1483082202", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975746", + "975746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082214", + "1483082215", + "1483082239", + "1483082214", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975748", + "975748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082218", + "1483082219", + "1483082243", + "1483082218", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975777", + "975777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082319", + "1483082321", + "1483082349", + "1483082319", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975806", + "975806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082404", + "1483082405", + "1483082427", + "1483082404", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975820", + "975820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082457", + "1483082458", + "1483082487", + "1483082457", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975834", + "975834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082517", + "1483082518", + "1483082544", + "1483082517", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976004", + "976004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083255", + "1483083256", + "1483083282", + "1483083255", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976043", + "976043", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083430", + "1483083431", + "1483083449", + "1483083430", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976047", + "976047", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083444", + "1483083446", + "1483083463", + "1483083444", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976049", + "976049", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083446", + "1483083449", + "1483083464", + "1483083446", + "1", + "8", + "0", + "-1", + "15", + "3", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976054", + "976054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083450", + "1483083452", + "1483083476", + "1483083450", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976060", + "976060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083464", + "1483083465", + "1483083483", + "1483083464", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976066", + "976066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083476", + "1483083478", + "1483083495", + "1483083476", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976070", + "976070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083484", + "1483083485", + "1483083511", + "1483083484", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976073", + "976073", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083484", + "1483083485", + "1483083511", + "1483083484", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976089", + "976089", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083537", + "1483083538", + "1483083554", + "1483083537", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976091", + "976091", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083538", + "1483083541", + "1483083555", + "1483083538", + "1", + "8", + "0", + "-1", + "14", + "3", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976093", + "976093", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083541", + "1483083544", + "1483083566", + "1483083541", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976095", + "976095", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083549", + "1483083550", + "1483083574", + "1483083549", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976098", + "976098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083550", + "1483083553", + "1483083573", + "1483083550", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976100", + "976100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083555", + "1483083556", + "1483083578", + "1483083555", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976104", + "976104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083556", + "1483083559", + "1483083577", + "1483083556", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976106", + "976106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083559", + "1483083562", + "1483083580", + "1483083559", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976108", + "976108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083567", + "1483083568", + "1483083584", + "1483083567", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976110", + "976110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083574", + "1483083575", + "1483083591", + "1483083574", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976112", + "976112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083575", + "1483083577", + "1483083602", + "1483083575", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976114", + "976114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083577", + "1483083578", + "1483083604", + "1483083577", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976116", + "976116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083578", + "1483083581", + "1483083606", + "1483083578", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976124", + "976124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083603", + "1483083604", + "1483083632", + "1483083603", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976128", + "976128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083606", + "1483083607", + "1483083627", + "1483083606", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976134", + "976134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083627", + "1483083628", + "1483083655", + "1483083627", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976138", + "976138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083638", + "1483083639", + "1483083659", + "1483083638", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976140", + "976140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083640", + "1483083641", + "1483083662", + "1483083640", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976142", + "976142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083641", + "1483083642", + "1483083663", + "1483083641", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976148", + "976148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083656", + "1483083658", + "1483083673", + "1483083656", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976150", + "976150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083660", + "1483083661", + "1483083677", + "1483083660", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976152", + "976152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083662", + "1483083663", + "1483083680", + "1483083662", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976156", + "976156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083664", + "1483083667", + "1483083692", + "1483083664", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976166", + "976166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083681", + "1483083682", + "1483083708", + "1483083681", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976170", + "976170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083693", + "1483083696", + "1483083713", + "1483083693", + "1", + "8", + "0", + "-1", + "17", + "3", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976176", + "976176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083714", + "1483083715", + "1483083736", + "1483083714", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976178", + "976178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083716", + "1483083718", + "1483083739", + "1483083716", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976184", + "976184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083735", + "1483083736", + "1483083756", + "1483083735", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976186", + "976186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083737", + "1483083739", + "1483083759", + "1483083737", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976188", + "976188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083740", + "1483083742", + "1483083762", + "1483083740", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976191", + "976191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083740", + "1483083742", + "1483083760", + "1483083740", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976206", + "976206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083783", + "1483083784", + "1483083799", + "1483083783", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976216", + "976216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083800", + "1483083801", + "1483083820", + "1483083800", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976222", + "976222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083818", + "1483083819", + "1483083834", + "1483083818", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976224", + "976224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083819", + "1483083820", + "1483083834", + "1483083819", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976226", + "976226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083821", + "1483083823", + "1483083837", + "1483083821", + "1", + "8", + "0", + "-1", + "14", + "2", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976228", + "976228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083827", + "1483083828", + "1483083842", + "1483083827", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976232", + "976232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083834", + "1483083835", + "1483083860", + "1483083834", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976234", + "976234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083835", + "1483083837", + "1483083862", + "1483083835", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976240", + "976240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083843", + "1483083844", + "1483083872", + "1483083843", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976246", + "976246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083860", + "1483083862", + "1483083878", + "1483083860", + "1", + "8", + "0", + "-1", + "16", + "2", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976248", + "976248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083862", + "1483083863", + "1483083879", + "1483083862", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976250", + "976250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083873", + "1483083874", + "1483083890", + "1483083873", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976252", + "976252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083876", + "1483083877", + "1483083893", + "1483083876", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976258", + "976258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083882", + "1483083883", + "1483083896", + "1483083882", + "1", + "8", + "0", + "-1", + "13", + "1", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976260", + "976260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083891", + "1483083892", + "1483083904", + "1483083891", + "1", + "8", + "0", + "-1", + "12", + "1", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976266", + "976266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083897", + "1483083898", + "1483083920", + "1483083897", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976268", + "976268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083900", + "1483083901", + "1483083923", + "1483083900", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976274", + "976274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083908", + "1483083909", + "1483083936", + "1483083908", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976278", + "976278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083910", + "1483083913", + "1483083936", + "1483083910", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976280", + "976280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083921", + "1483083922", + "1483083944", + "1483083921", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976282", + "976282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083924", + "1483083925", + "1483083953", + "1483083924", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976288", + "976288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083936", + "1483083937", + "1483083959", + "1483083936", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976290", + "976290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083942", + "1483083943", + "1483083963", + "1483083942", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976292", + "976292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083945", + "1483083946", + "1483083965", + "1483083945", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976294", + "976294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083954", + "1483083955", + "1483083975", + "1483083954", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976296", + "976296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083958", + "1483083959", + "1483083977", + "1483083958", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976298", + "976298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083960", + "1483083962", + "1483083981", + "1483083960", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976300", + "976300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083963", + "1483083965", + "1483083994", + "1483083963", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976304", + "976304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083969", + "1483083971", + "1483083998", + "1483083969", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976318", + "976318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084027", + "1483084028", + "1483084051", + "1483084027", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976320", + "976320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084029", + "1483084031", + "1483084053", + "1483084029", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976324", + "976324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084045", + "1483084046", + "1483084065", + "1483084045", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976328", + "976328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084051", + "1483084052", + "1483084070", + "1483084051", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976332", + "976332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084054", + "1483084055", + "1483084082", + "1483084054", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976348", + "976348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084089", + "1483084090", + "1483084112", + "1483084089", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976354", + "976354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084105", + "1483084108", + "1483084127", + "1483084105", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976357", + "976357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084106", + "1483084108", + "1483084126", + "1483084106", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976361", + "976361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084125", + "1483084126", + "1483084151", + "1483084125", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976363", + "976363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084127", + "1483084128", + "1483084157", + "1483084127", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976365", + "976365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084128", + "1483084129", + "1483084157", + "1483084128", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976373", + "976373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084152", + "1483084153", + "1483084182", + "1483084152", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976383", + "976383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084166", + "1483084167", + "1483084188", + "1483084166", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976385", + "976385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084182", + "1483084183", + "1483084200", + "1483084182", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976389", + "976389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084187", + "1483084188", + "1483084214", + "1483084187", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976393", + "976393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084193", + "1483084194", + "1483084220", + "1483084193", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976431", + "976431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084329", + "1483084331", + "1483084348", + "1483084329", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976439", + "976439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084365", + "1483084367", + "1483084394", + "1483084365", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976441", + "976441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084377", + "1483084378", + "1483084403", + "1483084377", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976453", + "976453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084407", + "1483084408", + "1483084424", + "1483084407", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976457", + "976457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084425", + "1483084427", + "1483084442", + "1483084425", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976461", + "976461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084432", + "1483084433", + "1483084457", + "1483084432", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976465", + "976465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084443", + "1483084445", + "1483084469", + "1483084443", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976477", + "976477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084468", + "1483084469", + "1483084486", + "1483084468", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976479", + "976479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084470", + "1483084471", + "1483084485", + "1483084470", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976481", + "976481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084471", + "1483084472", + "1483084496", + "1483084471", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976483", + "976483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084479", + "1483084480", + "1483084502", + "1483084479", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976489", + "976489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084487", + "1483084488", + "1483084517", + "1483084487", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976499", + "976499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084518", + "1483084520", + "1483084541", + "1483084518", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976501", + "976501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084521", + "1483084523", + "1483084546", + "1483084521", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976503", + "976503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084530", + "1483084531", + "1483084554", + "1483084530", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976511", + "976511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084547", + "1483084549", + "1483084575", + "1483084547", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976519", + "976519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084571", + "1483084572", + "1483084595", + "1483084571", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976585", + "976585", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084843", + "1483084846", + "1483084868", + "1483084843", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976589", + "976589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084869", + "1483084870", + "1483084892", + "1483084869", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976591", + "976591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084878", + "1483084879", + "1483084901", + "1483084878", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976593", + "976593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084884", + "1483084885", + "1483084907", + "1483084884", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976597", + "976597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084892", + "1483084893", + "1483084916", + "1483084892", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976599", + "976599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084893", + "1483084894", + "1483084917", + "1483084893", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976601", + "976601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084901", + "1483084902", + "1483084924", + "1483084901", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976603", + "976603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084907", + "1483084908", + "1483084931", + "1483084907", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976605", + "976605", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084915", + "1483084917", + "1483084941", + "1483084915", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976633", + "976633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084993", + "1483084996", + "1483085017", + "1483084993", + "1", + "8", + "0", + "-1", + "21", + "3", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976639", + "976639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085018", + "1483085019", + "1483085040", + "1483085018", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976645", + "976645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085038", + "1483085039", + "1483085065", + "1483085038", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976652", + "976652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085041", + "1483085042", + "1483085068", + "1483085041", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976656", + "976656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085051", + "1483085052", + "1483085074", + "1483085051", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976660", + "976660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085062", + "1483085063", + "1483085086", + "1483085062", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976676", + "976676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085098", + "1483085101", + "1483085123", + "1483085098", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976682", + "976682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085123", + "1483085126", + "1483085148", + "1483085123", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976684", + "976684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085127", + "1483085129", + "1483085149", + "1483085127", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976688", + "976688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085131", + "1483085132", + "1483085157", + "1483085131", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976690", + "976690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085133", + "1483085135", + "1483085159", + "1483085133", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976696", + "976696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085148", + "1483085149", + "1483085172", + "1483085148", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976698", + "976698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085150", + "1483085152", + "1483085176", + "1483085150", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976702", + "976702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085160", + "1483085161", + "1483085185", + "1483085160", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976710", + "976710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085177", + "1483085178", + "1483085207", + "1483085177", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976712", + "976712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085181", + "1483085182", + "1483085211", + "1483085181", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976722", + "976722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085211", + "1483085212", + "1483085236", + "1483085211", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976728", + "976728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085239", + "1483085241", + "1483085268", + "1483085239", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976730", + "976730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085244", + "1483085245", + "1483085273", + "1483085244", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976732", + "976732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085245", + "1483085246", + "1483085270", + "1483085245", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976736", + "976736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085250", + "1483085251", + "1483085280", + "1483085250", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976738", + "976738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085253", + "1483085254", + "1483085282", + "1483085253", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976744", + "976744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085271", + "1483085273", + "1483085300", + "1483085271", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976746", + "976746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085273", + "1483085275", + "1483085303", + "1483085273", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976748", + "976748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085281", + "1483085282", + "1483085304", + "1483085281", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976752", + "976752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085297", + "1483085298", + "1483085326", + "1483085297", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976768", + "976768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085341", + "1483085343", + "1483085363", + "1483085341", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976774", + "976774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085365", + "1483085367", + "1483085387", + "1483085365", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976778", + "976778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085379", + "1483085382", + "1483085400", + "1483085379", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976782", + "976782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085388", + "1483085389", + "1483085410", + "1483085388", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976784", + "976784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085397", + "1483085398", + "1483085420", + "1483085397", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976792", + "976792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085405", + "1483085408", + "1483085426", + "1483085405", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976815", + "976815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085453", + "1483085454", + "1483085473", + "1483085453", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976819", + "976819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085462", + "1483085463", + "1483085482", + "1483085462", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976823", + "976823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085468", + "1483085469", + "1483085484", + "1483085468", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976825", + "976825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085471", + "1483085472", + "1483085493", + "1483085471", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976827", + "976827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085474", + "1483085475", + "1483085496", + "1483085474", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976832", + "976832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085477", + "1483085478", + "1483085498", + "1483085477", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976838", + "976838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085494", + "1483085495", + "1483085509", + "1483085494", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976842", + "976842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085497", + "1483085498", + "1483085514", + "1483085497", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976846", + "976846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085500", + "1483085501", + "1483085526", + "1483085500", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976848", + "976848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085504", + "1483085505", + "1483085530", + "1483085504", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976856", + "976856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085527", + "1483085528", + "1483085555", + "1483085527", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976858", + "976858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085530", + "1483085531", + "1483085554", + "1483085530", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976860", + "976860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085548", + "1483085549", + "1483085575", + "1483085548", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976862", + "976862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085550", + "1483085552", + "1483085577", + "1483085550", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976864", + "976864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085554", + "1483085555", + "1483085579", + "1483085554", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976866", + "976866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085556", + "1483085558", + "1483085584", + "1483085556", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976870", + "976870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085571", + "1483085573", + "1483085599", + "1483085571", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976876", + "976876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085577", + "1483085578", + "1483085603", + "1483085577", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976878", + "976878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085580", + "1483085581", + "1483085608", + "1483085580", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976882", + "976882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085599", + "1483085600", + "1483085626", + "1483085599", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976903", + "976903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085651", + "1483085653", + "1483085666", + "1483085651", + "1", + "8", + "0", + "-1", + "13", + "2", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976905", + "976905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085655", + "1483085656", + "1483085680", + "1483085655", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976907", + "976907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085658", + "1483085659", + "1483085682", + "1483085658", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976911", + "976911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085662", + "1483085663", + "1483085684", + "1483085662", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976917", + "976917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085680", + "1483085681", + "1483085707", + "1483085680", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976919", + "976919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085683", + "1483085684", + "1483085710", + "1483085683", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976921", + "976921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085685", + "1483085687", + "1483085712", + "1483085685", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976951", + "976951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085760", + "1483085761", + "1483085784", + "1483085760", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976961", + "976961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085793", + "1483085795", + "1483085820", + "1483085793", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976967", + "976967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085807", + "1483085808", + "1483085834", + "1483085807", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976969", + "976969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085812", + "1483085813", + "1483085839", + "1483085812", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976973", + "976973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085821", + "1483085823", + "1483085847", + "1483085821", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976975", + "976975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085823", + "1483085824", + "1483085850", + "1483085823", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977003", + "977003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085910", + "1483085911", + "1483085934", + "1483085910", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977021", + "977021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085954", + "1483085956", + "1483085978", + "1483085954", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977023", + "977023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085962", + "1483085963", + "1483085988", + "1483085962", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977090", + "977090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086228", + "1483086229", + "1483086251", + "1483086228", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977092", + "977092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086241", + "1483086242", + "1483086262", + "1483086241", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977098", + "977098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086263", + "1483086265", + "1483086287", + "1483086263", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977101", + "977101", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086264", + "1483086265", + "1483086288", + "1483086264", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977103", + "977103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086272", + "1483086273", + "1483086296", + "1483086272", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977109", + "977109", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086288", + "1483086289", + "1483086308", + "1483086288", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977120", + "977120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086302", + "1483086304", + "1483086332", + "1483086302", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977130", + "977130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086334", + "1483086336", + "1483086358", + "1483086334", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977132", + "977132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086341", + "1483086342", + "1483086364", + "1483086341", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977134", + "977134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086347", + "1483086348", + "1483086370", + "1483086347", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977140", + "977140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086359", + "1483086361", + "1483086389", + "1483086359", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977144", + "977144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086366", + "1483086368", + "1483086391", + "1483086366", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977146", + "977146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086371", + "1483086372", + "1483086393", + "1483086371", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977148", + "977148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086383", + "1483086384", + "1483086407", + "1483086383", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977150", + "977150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086388", + "1483086389", + "1483086412", + "1483086388", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977152", + "977152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086389", + "1483086392", + "1483086412", + "1483086389", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977156", + "977156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086394", + "1483086395", + "1483086413", + "1483086394", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977163", + "977163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086407", + "1483086408", + "1483086437", + "1483086407", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977184", + "977184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086455", + "1483086457", + "1483086474", + "1483086455", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977186", + "977186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086459", + "1483086460", + "1483086486", + "1483086459", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977194", + "977194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086475", + "1483086478", + "1483086505", + "1483086475", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977202", + "977202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086500", + "1483086501", + "1483086517", + "1483086500", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977204", + "977204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086503", + "1483086504", + "1483086527", + "1483086503", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977209", + "977209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086506", + "1483086507", + "1483086536", + "1483086506", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977219", + "977219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086536", + "1483086538", + "1483086557", + "1483086536", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977221", + "977221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086548", + "1483086549", + "1483086569", + "1483086548", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977225", + "977225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086555", + "1483086556", + "1483086575", + "1483086555", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977227", + "977227", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086557", + "1483086559", + "1483086576", + "1483086557", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977229", + "977229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086562", + "1483086563", + "1483086579", + "1483086562", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977231", + "977231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086569", + "1483086570", + "1483086590", + "1483086569", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977233", + "977233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086571", + "1483086573", + "1483086594", + "1483086571", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977237", + "977237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086576", + "1483086579", + "1483086599", + "1483086576", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977239", + "977239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086579", + "1483086582", + "1483086601", + "1483086579", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977241", + "977241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086590", + "1483086591", + "1483086609", + "1483086590", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977243", + "977243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086594", + "1483086595", + "1483086612", + "1483086594", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977245", + "977245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086596", + "1483086598", + "1483086613", + "1483086596", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977247", + "977247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086600", + "1483086601", + "1483086617", + "1483086600", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977249", + "977249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086602", + "1483086603", + "1483086621", + "1483086602", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977253", + "977253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086608", + "1483086609", + "1483086636", + "1483086608", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977255", + "977255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086610", + "1483086612", + "1483086637", + "1483086610", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977261", + "977261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086618", + "1483086619", + "1483086647", + "1483086618", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977263", + "977263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086621", + "1483086622", + "1483086649", + "1483086621", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977265", + "977265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086637", + "1483086638", + "1483086657", + "1483086637", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977267", + "977267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086638", + "1483086641", + "1483086661", + "1483086638", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977273", + "977273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086650", + "1483086651", + "1483086670", + "1483086650", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977286", + "977286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086671", + "1483086673", + "1483086692", + "1483086671", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977288", + "977288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086671", + "1483086673", + "1483086692", + "1483086671", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977292", + "977292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086680", + "1483086681", + "1483086698", + "1483086680", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977294", + "977294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086688", + "1483086689", + "1483086707", + "1483086688", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977318", + "977318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086738", + "1483086740", + "1483086769", + "1483086738", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977336", + "977336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086769", + "1483086771", + "1483086796", + "1483086769", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977364", + "977364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086866", + "1483086868", + "1483086895", + "1483086866", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977428", + "977428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087044", + "1483087045", + "1483087074", + "1483087044", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977640", + "977640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087839", + "1483087841", + "1483087867", + "1483087839", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977646", + "977646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087846", + "1483087847", + "1483087873", + "1483087846", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977648", + "977648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087849", + "1483087850", + "1483087878", + "1483087849", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977650", + "977650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087856", + "1483087858", + "1483087883", + "1483087856", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977676", + "977676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087911", + "1483087912", + "1483087935", + "1483087911", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977684", + "977684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087937", + "1483087939", + "1483087964", + "1483087937", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977686", + "977686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087949", + "1483087950", + "1483087976", + "1483087949", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977691", + "977691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087953", + "1483087954", + "1483087982", + "1483087953", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977701", + "977701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087977", + "1483087978", + "1483088003", + "1483087977", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977721", + "977721", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088017", + "1483088018", + "1483088042", + "1483088017", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977730", + "977730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088041", + "1483088043", + "1483088068", + "1483088041", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977734", + "977734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088043", + "1483088044", + "1483088069", + "1483088043", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977738", + "977738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088067", + "1483088068", + "1483088097", + "1483088067", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977744", + "977744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088069", + "1483088071", + "1483088099", + "1483088069", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977807", + "977807", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088264", + "1483088267", + "1483088289", + "1483088264", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977811", + "977811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088272", + "1483088273", + "1483088295", + "1483088272", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977813", + "977813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088289", + "1483088290", + "1483088312", + "1483088289", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977817", + "977817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088298", + "1483088299", + "1483088317", + "1483088298", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977819", + "977819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088300", + "1483088302", + "1483088326", + "1483088300", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977821", + "977821", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088312", + "1483088313", + "1483088338", + "1483088312", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977823", + "977823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088316", + "1483088317", + "1483088341", + "1483088316", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977825", + "977825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088318", + "1483088320", + "1483088342", + "1483088318", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977827", + "977827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088326", + "1483088327", + "1483088350", + "1483088326", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977829", + "977829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088327", + "1483088330", + "1483088351", + "1483088327", + "1", + "8", + "0", + "-1", + "21", + "3", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977831", + "977831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088332", + "1483088333", + "1483088353", + "1483088332", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977833", + "977833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088339", + "1483088340", + "1483088358", + "1483088339", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977835", + "977835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088342", + "1483088343", + "1483088363", + "1483088342", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977841", + "977841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088352", + "1483088353", + "1483088382", + "1483088352", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977853", + "977853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088383", + "1483088384", + "1483088404", + "1483088383", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977855", + "977855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088386", + "1483088387", + "1483088408", + "1483088386", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977858", + "977858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088386", + "1483088387", + "1483088407", + "1483088386", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977860", + "977860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088399", + "1483088400", + "1483088418", + "1483088399", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977862", + "977862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088405", + "1483088406", + "1483088422", + "1483088405", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977864", + "977864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088406", + "1483088407", + "1483088429", + "1483088406", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977866", + "977866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088407", + "1483088408", + "1483088430", + "1483088407", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977868", + "977868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088408", + "1483088409", + "1483088430", + "1483088408", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977874", + "977874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088419", + "1483088420", + "1483088439", + "1483088419", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977882", + "977882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088431", + "1483088433", + "1483088452", + "1483088431", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977884", + "977884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088434", + "1483088436", + "1483088465", + "1483088434", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977886", + "977886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088439", + "1483088440", + "1483088468", + "1483088439", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977888", + "977888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088442", + "1483088443", + "1483088470", + "1483088442", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977900", + "977900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088471", + "1483088473", + "1483088498", + "1483088471", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977904", + "977904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088497", + "1483088499", + "1483088524", + "1483088497", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977912", + "977912", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088513", + "1483088514", + "1483088540", + "1483088513", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977944", + "977944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088605", + "1483088608", + "1483088632", + "1483088605", + "1", + "8", + "0", + "-1", + "24", + "3", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977946", + "977946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088621", + "1483088622", + "1483088648", + "1483088621", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977950", + "977950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088644", + "1483088645", + "1483088671", + "1483088644", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977952", + "977952", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088645", + "1483088648", + "1483088675", + "1483088645", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977962", + "977962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088672", + "1483088673", + "1483088700", + "1483088672", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977990", + "977990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088751", + "1483088752", + "1483088779", + "1483088751", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977994", + "977994", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088779", + "1483088780", + "1483088807", + "1483088779", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977996", + "977996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088781", + "1483088783", + "1483088809", + "1483088781", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977998", + "977998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088784", + "1483088786", + "1483088811", + "1483088784", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978000", + "978000", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088789", + "1483088790", + "1483088819", + "1483088789", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978002", + "978002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088791", + "1483088793", + "1483088821", + "1483088791", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978004", + "978004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088795", + "1483088796", + "1483088824", + "1483088795", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978008", + "978008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088809", + "1483088811", + "1483088839", + "1483088809", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978010", + "978010", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088812", + "1483088814", + "1483088843", + "1483088812", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978014", + "978014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088821", + "1483088823", + "1483088847", + "1483088821", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978016", + "978016", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088824", + "1483088826", + "1483088853", + "1483088824", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978040", + "978040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088910", + "1483088911", + "1483088940", + "1483088910", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978044", + "978044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088928", + "1483088929", + "1483088954", + "1483088928", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978046", + "978046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088929", + "1483088932", + "1483088957", + "1483088929", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978064", + "978064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088974", + "1483088975", + "1483088997", + "1483088974", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978128", + "978128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089271", + "1483089272", + "1483089293", + "1483089271", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978130", + "978130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089273", + "1483089275", + "1483089298", + "1483089273", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978132", + "978132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089294", + "1483089295", + "1483089318", + "1483089294", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978134", + "978134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089299", + "1483089300", + "1483089323", + "1483089299", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978136", + "978136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089318", + "1483089319", + "1483089341", + "1483089318", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978140", + "978140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089323", + "1483089325", + "1483089350", + "1483089323", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978142", + "978142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089341", + "1483089342", + "1483089366", + "1483089341", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978144", + "978144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089350", + "1483089351", + "1483089375", + "1483089350", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978146", + "978146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089353", + "1483089354", + "1483089378", + "1483089353", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978150", + "978150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089362", + "1483089365", + "1483089387", + "1483089362", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978152", + "978152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089367", + "1483089368", + "1483089389", + "1483089367", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978154", + "978154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089376", + "1483089377", + "1483089396", + "1483089376", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978174", + "978174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089425", + "1483089426", + "1483089449", + "1483089425", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978176", + "978176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089428", + "1483089429", + "1483089451", + "1483089428", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978178", + "978178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089449", + "1483089450", + "1483089473", + "1483089449", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978180", + "978180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089451", + "1483089453", + "1483089476", + "1483089451", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978184", + "978184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089460", + "1483089461", + "1483089480", + "1483089460", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978192", + "978192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089477", + "1483089478", + "1483089505", + "1483089477", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978194", + "978194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089479", + "1483089481", + "1483089505", + "1483089479", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978222", + "978222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089542", + "1483089544", + "1483089567", + "1483089542", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978224", + "978224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089546", + "1483089547", + "1483089572", + "1483089546", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978226", + "978226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089567", + "1483089568", + "1483089590", + "1483089567", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978228", + "978228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089568", + "1483089571", + "1483089590", + "1483089568", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978238", + "978238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089596", + "1483089598", + "1483089622", + "1483089596", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978242", + "978242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089606", + "1483089608", + "1483089630", + "1483089606", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978244", + "978244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089608", + "1483089609", + "1483089631", + "1483089608", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978264", + "978264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089660", + "1483089663", + "1483089692", + "1483089660", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978266", + "978266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089665", + "1483089666", + "1483089686", + "1483089665", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978268", + "978268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089676", + "1483089677", + "1483089697", + "1483089676", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978270", + "978270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089687", + "1483089688", + "1483089708", + "1483089687", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978272", + "978272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089693", + "1483089694", + "1483089714", + "1483089693", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978274", + "978274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089694", + "1483089697", + "1483089715", + "1483089694", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978276", + "978276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089698", + "1483089700", + "1483089716", + "1483089698", + "1", + "8", + "0", + "-1", + "16", + "2", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978278", + "978278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089704", + "1483089705", + "1483089727", + "1483089704", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978282", + "978282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089714", + "1483089715", + "1483089737", + "1483089714", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978284", + "978284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089716", + "1483089717", + "1483089739", + "1483089716", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978286", + "978286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089717", + "1483089718", + "1483089740", + "1483089717", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978294", + "978294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089738", + "1483089739", + "1483089757", + "1483089738", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978296", + "978296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089739", + "1483089740", + "1483089760", + "1483089739", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978300", + "978300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089749", + "1483089750", + "1483089778", + "1483089749", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978302", + "978302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089751", + "1483089753", + "1483089779", + "1483089751", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978310", + "978310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089775", + "1483089778", + "1483089807", + "1483089775", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978312", + "978312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089779", + "1483089780", + "1483089803", + "1483089779", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978325", + "978325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089803", + "1483089804", + "1483089828", + "1483089803", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978330", + "978330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089808", + "1483089809", + "1483089831", + "1483089808", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978332", + "978332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089817", + "1483089818", + "1483089839", + "1483089817", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978340", + "978340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089828", + "1483089829", + "1483089849", + "1483089828", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978408", + "978408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090026", + "1483090027", + "1483090056", + "1483090026", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978692", + "978692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091152", + "1483091153", + "1483091178", + "1483091152", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978694", + "978694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091169", + "1483091170", + "1483091190", + "1483091169", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978698", + "978698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091180", + "1483091181", + "1483091200", + "1483091180", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978739", + "978739", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091292", + "1483091293", + "1483091315", + "1483091292", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978741", + "978741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091300", + "1483091301", + "1483091323", + "1483091300", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978745", + "978745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091321", + "1483091322", + "1483091341", + "1483091321", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978747", + "978747", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091323", + "1483091325", + "1483091354", + "1483091323", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978768", + "978768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091359", + "1483091360", + "1483091387", + "1483091359", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978785", + "978785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091394", + "1483091395", + "1483091420", + "1483091394", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978817", + "978817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091500", + "1483091501", + "1483091520", + "1483091500", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978829", + "978829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091527", + "1483091529", + "1483091555", + "1483091527", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978863", + "978863", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091650", + "1483091652", + "1483091670", + "1483091650", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978867", + "978867", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091660", + "1483091662", + "1483091691", + "1483091660", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978875", + "978875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091692", + "1483091693", + "1483091712", + "1483091692", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978877", + "978877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091694", + "1483091695", + "1483091714", + "1483091694", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978879", + "978879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091701", + "1483091702", + "1483091718", + "1483091701", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978881", + "978881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091703", + "1483091705", + "1483091726", + "1483091703", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978883", + "978883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091712", + "1483091713", + "1483091731", + "1483091712", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978903", + "978903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091772", + "1483091773", + "1483091799", + "1483091772", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978905", + "978905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091774", + "1483091776", + "1483091797", + "1483091774", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978909", + "978909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091780", + "1483091782", + "1483091797", + "1483091780", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978913", + "978913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091791", + "1483091793", + "1483091816", + "1483091791", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978919", + "978919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091799", + "1483091801", + "1483091823", + "1483091799", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978921", + "978921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091810", + "1483091811", + "1483091828", + "1483091810", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978923", + "978923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091817", + "1483091818", + "1483091836", + "1483091817", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978939", + "978939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091841", + "1483091843", + "1483091872", + "1483091841", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978969", + "978969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091950", + "1483091951", + "1483091976", + "1483091950", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978975", + "978975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091954", + "1483091957", + "1483091979", + "1483091954", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979001", + "979001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092043", + "1483092044", + "1483092065", + "1483092043", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979013", + "979013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092069", + "1483092070", + "1483092092", + "1483092069", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979018", + "979018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092093", + "1483092096", + "1483092120", + "1483092093", + "1", + "8", + "0", + "-1", + "24", + "3", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979061", + "979061", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092236", + "1483092237", + "1483092260", + "1483092236", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979085", + "979085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092312", + "1483092314", + "1483092339", + "1483092312", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979087", + "979087", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092317", + "1483092318", + "1483092343", + "1483092317", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979097", + "979097", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092353", + "1483092354", + "1483092383", + "1483092353", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979105", + "979105", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092376", + "1483092379", + "1483092399", + "1483092376", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979107", + "979107", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092384", + "1483092385", + "1483092408", + "1483092384", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979173", + "979173", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092577", + "1483092578", + "1483092605", + "1483092577", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979189", + "979189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092660", + "1483092661", + "1483092688", + "1483092660", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979195", + "979195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092688", + "1483092689", + "1483092709", + "1483092688", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979197", + "979197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092690", + "1483092692", + "1483092716", + "1483092690", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979199", + "979199", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092698", + "1483092699", + "1483092720", + "1483092698", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979201", + "979201", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092706", + "1483092707", + "1483092734", + "1483092706", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979215", + "979215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092743", + "1483092745", + "1483092773", + "1483092743", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979221", + "979221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092773", + "1483092774", + "1483092796", + "1483092773", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979227", + "979227", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092791", + "1483092794", + "1483092811", + "1483092791", + "1", + "8", + "0", + "-1", + "17", + "3", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979229", + "979229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092796", + "1483092797", + "1483092820", + "1483092796", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979244", + "979244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092827", + "1483092829", + "1483092849", + "1483092827", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979246", + "979246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092831", + "1483092832", + "1483092851", + "1483092831", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979260", + "979260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092852", + "1483092854", + "1483092880", + "1483092852", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979264", + "979264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092881", + "1483092884", + "1483092904", + "1483092881", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979267", + "979267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092882", + "1483092884", + "1483092909", + "1483092882", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979269", + "979269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092886", + "1483092887", + "1483092913", + "1483092886", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979279", + "979279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092911", + "1483092912", + "1483092939", + "1483092911", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979281", + "979281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092913", + "1483092915", + "1483092938", + "1483092913", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979283", + "979283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092916", + "1483092917", + "1483092936", + "1483092916", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979291", + "979291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092938", + "1483092939", + "1483092956", + "1483092938", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979305", + "979305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092972", + "1483092973", + "1483093000", + "1483092972", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979307", + "979307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092974", + "1483092976", + "1483092998", + "1483092974", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979309", + "979309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092979", + "1483092980", + "1483093002", + "1483092979", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979311", + "979311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092988", + "1483092989", + "1483093008", + "1483092988", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979313", + "979313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092996", + "1483092997", + "1483093021", + "1483092996", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979315", + "979315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092998", + "1483093000", + "1483093022", + "1483092998", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979317", + "979317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093000", + "1483093002", + "1483093018", + "1483093000", + "1", + "8", + "0", + "-1", + "16", + "2", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979324", + "979324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093008", + "1483093009", + "1483093035", + "1483093008", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979328", + "979328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093021", + "1483093022", + "1483093042", + "1483093021", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979330", + "979330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093023", + "1483093025", + "1483093041", + "1483093023", + "1", + "8", + "0", + "-1", + "16", + "2", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979332", + "979332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093036", + "1483093037", + "1483093052", + "1483093036", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979371", + "979371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093113", + "1483093116", + "1483093144", + "1483093113", + "1", + "8", + "0", + "-1", + "28", + "3", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979373", + "979373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093120", + "1483093121", + "1483093142", + "1483093120", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979375", + "979375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093122", + "1483093124", + "1483093141", + "1483093122", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979379", + "979379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093139", + "1483093141", + "1483093163", + "1483093139", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979451", + "979451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093391", + "1483093392", + "1483093421", + "1483093391", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979453", + "979453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093401", + "1483093402", + "1483093428", + "1483093401", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979513", + "979513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093658", + "1483093659", + "1483093685", + "1483093658", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979636", + "979636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094251", + "1483094252", + "1483094280", + "1483094251", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979669", + "979669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094349", + "1483094352", + "1483094371", + "1483094349", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979742", + "979742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094633", + "1483094634", + "1483094659", + "1483094633", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979764", + "979764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094719", + "1483094720", + "1483094749", + "1483094719", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979786", + "979786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094797", + "1483094798", + "1483094822", + "1483094797", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979828", + "979828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094946", + "1483094949", + "1483094975", + "1483094946", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979851", + "979851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095016", + "1483095017", + "1483095043", + "1483095016", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979887", + "979887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095133", + "1483095134", + "1483095159", + "1483095133", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979889", + "979889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095143", + "1483095144", + "1483095172", + "1483095143", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979891", + "979891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095158", + "1483095159", + "1483095188", + "1483095158", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979896", + "979896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095160", + "1483095162", + "1483095189", + "1483095160", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979906", + "979906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095189", + "1483095192", + "1483095218", + "1483095189", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979929", + "979929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095262", + "1483095264", + "1483095292", + "1483095262", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979935", + "979935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095282", + "1483095283", + "1483095311", + "1483095282", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979943", + "979943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095308", + "1483095309", + "1483095334", + "1483095308", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979972", + "979972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095418", + "1483095419", + "1483095446", + "1483095418", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980003", + "980003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095557", + "1483095558", + "1483095587", + "1483095557", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980033", + "980033", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095665", + "1483095667", + "1483095695", + "1483095665", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980058", + "980058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095767", + "1483095768", + "1483095796", + "1483095767", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980060", + "980060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095795", + "1483095796", + "1483095824", + "1483095795", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980064", + "980064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095803", + "1483095804", + "1483095833", + "1483095803", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980086", + "980086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095901", + "1483095902", + "1483095929", + "1483095901", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980110", + "980110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096068", + "1483096069", + "1483096093", + "1483096068", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980134", + "980134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096126", + "1483096127", + "1483096154", + "1483096126", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980152", + "980152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096207", + "1483096208", + "1483096228", + "1483096207", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980156", + "980156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096225", + "1483096226", + "1483096253", + "1483096225", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980171", + "980171", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096263", + "1483096264", + "1483096289", + "1483096263", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980331", + "980331", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096995", + "1483096998", + "1483097027", + "1483096995", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980333", + "980333", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097003", + "1483097004", + "1483097033", + "1483097003", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980377", + "980377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097153", + "1483097155", + "1483097183", + "1483097153", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980425", + "980425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097320", + "1483097321", + "1483097350", + "1483097320", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980499", + "980499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097596", + "1483097598", + "1483097625", + "1483097596", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980515", + "980515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097653", + "1483097655", + "1483097676", + "1483097653", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980559", + "980559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097810", + "1483097811", + "1483097840", + "1483097810", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980589", + "980589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097935", + "1483097938", + "1483097966", + "1483097935", + "1", + "8", + "0", + "-1", + "28", + "3", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980647", + "980647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098167", + "1483098168", + "1483098196", + "1483098167", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980649", + "980649", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098170", + "1483098171", + "1483098200", + "1483098170", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980651", + "980651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098176", + "1483098178", + "1483098206", + "1483098176", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980692", + "980692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098310", + "1483098311", + "1483098340", + "1483098310", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980787", + "980787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098740", + "1483098741", + "1483098766", + "1483098740", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980857", + "980857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098988", + "1483098989", + "1483099013", + "1483098988", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980875", + "980875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099051", + "1483099052", + "1483099076", + "1483099051", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980877", + "980877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099062", + "1483099063", + "1483099091", + "1483099062", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980879", + "980879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099063", + "1483099066", + "1483099089", + "1483099063", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980883", + "980883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099075", + "1483099077", + "1483099105", + "1483099075", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980901", + "980901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099139", + "1483099140", + "1483099166", + "1483099139", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980927", + "980927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099246", + "1483099248", + "1483099273", + "1483099246", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980929", + "980929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099254", + "1483099255", + "1483099283", + "1483099254", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980951", + "980951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099357", + "1483099358", + "1483099384", + "1483099357", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980958", + "980958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099361", + "1483099364", + "1483099391", + "1483099361", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980964", + "980964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099379", + "1483099382", + "1483099409", + "1483099379", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980966", + "980966", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099384", + "1483099385", + "1483099412", + "1483099384", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980970", + "980970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099392", + "1483099394", + "1483099421", + "1483099392", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980972", + "980972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099402", + "1483099403", + "1483099430", + "1483099402", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981320", + "981320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101174", + "1483101175", + "1483101196", + "1483101174", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981332", + "981332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101190", + "1483101191", + "1483101214", + "1483101190", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981334", + "981334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101196", + "1483101197", + "1483101221", + "1483101196", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981340", + "981340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101220", + "1483101221", + "1483101244", + "1483101220", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981363", + "981363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101286", + "1483101287", + "1483101314", + "1483101286", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981383", + "981383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101352", + "1483101353", + "1483101381", + "1483101352", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981409", + "981409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101433", + "1483101435", + "1483101463", + "1483101433", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981411", + "981411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101442", + "1483101443", + "1483101465", + "1483101442", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981425", + "981425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101501", + "1483101502", + "1483101527", + "1483101501", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981427", + "981427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101503", + "1483101505", + "1483101531", + "1483101503", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981429", + "981429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101509", + "1483101510", + "1483101539", + "1483101509", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981431", + "981431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101511", + "1483101513", + "1483101536", + "1483101511", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981451", + "981451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101569", + "1483101571", + "1483101598", + "1483101569", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981457", + "981457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101598", + "1483101599", + "1483101622", + "1483101598", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981469", + "981469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101628", + "1483101629", + "1483101653", + "1483101628", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981471", + "981471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101638", + "1483101639", + "1483101661", + "1483101638", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981473", + "981473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101642", + "1483101643", + "1483101667", + "1483101642", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981502", + "981502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101728", + "1483101729", + "1483101749", + "1483101728", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981514", + "981514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101761", + "1483101763", + "1483101792", + "1483101761", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981538", + "981538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101843", + "1483101844", + "1483101872", + "1483101843", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981542", + "981542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101858", + "1483101859", + "1483101883", + "1483101858", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981546", + "981546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101870", + "1483101873", + "1483101896", + "1483101870", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981548", + "981548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101873", + "1483101876", + "1483101896", + "1483101873", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981550", + "981550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101883", + "1483101884", + "1483101908", + "1483101883", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981552", + "981552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101885", + "1483101887", + "1483101911", + "1483101885", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981562", + "981562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101912", + "1483101913", + "1483101938", + "1483101912", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981566", + "981566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101931", + "1483101932", + "1483101960", + "1483101931", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981593", + "981593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102003", + "1483102004", + "1483102031", + "1483102003", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981605", + "981605", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102051", + "1483102052", + "1483102078", + "1483102051", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981643", + "981643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102143", + "1483102145", + "1483102174", + "1483102143", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981651", + "981651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102175", + "1483102176", + "1483102201", + "1483102175", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981653", + "981653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102180", + "1483102181", + "1483102205", + "1483102180", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981655", + "981655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102181", + "1483102184", + "1483102213", + "1483102181", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981699", + "981699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102326", + "1483102328", + "1483102352", + "1483102326", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981703", + "981703", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102353", + "1483102354", + "1483102380", + "1483102353", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981705", + "981705", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102356", + "1483102357", + "1483102381", + "1483102356", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981731", + "981731", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102441", + "1483102444", + "1483102466", + "1483102441", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981745", + "981745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102502", + "1483102504", + "1483102531", + "1483102502", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981747", + "981747", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102506", + "1483102507", + "1483102531", + "1483102506", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981834", + "981834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102896", + "1483102897", + "1483102924", + "1483102896", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981840", + "981840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102917", + "1483102918", + "1483102941", + "1483102917", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981860", + "981860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102985", + "1483102986", + "1483103014", + "1483102985", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981862", + "981862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102987", + "1483102988", + "1483103016", + "1483102987", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981866", + "981866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102999", + "1483103000", + "1483103027", + "1483102999", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981868", + "981868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103004", + "1483103005", + "1483103024", + "1483103004", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981872", + "981872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103014", + "1483103015", + "1483103044", + "1483103014", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981880", + "981880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103019", + "1483103021", + "1483103044", + "1483103019", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981882", + "981882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103024", + "1483103025", + "1483103046", + "1483103024", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981903", + "981903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103078", + "1483103079", + "1483103106", + "1483103078", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981907", + "981907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103096", + "1483103098", + "1483103126", + "1483103096", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981923", + "981923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103146", + "1483103147", + "1483103176", + "1483103146", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981925", + "981925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103152", + "1483103153", + "1483103176", + "1483103152", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981929", + "981929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103170", + "1483103171", + "1483103193", + "1483103170", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981973", + "981973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103302", + "1483103303", + "1483103323", + "1483103302", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981975", + "981975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103307", + "1483103308", + "1483103329", + "1483103307", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981979", + "981979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103313", + "1483103314", + "1483103336", + "1483103313", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982005", + "982005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103383", + "1483103386", + "1483103406", + "1483103383", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982019", + "982019", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103419", + "1483103420", + "1483103440", + "1483103419", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982025", + "982025", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103441", + "1483103443", + "1483103472", + "1483103441", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982063", + "982063", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103558", + "1483103560", + "1483103589", + "1483103558", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982384", + "982384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105045", + "1483105046", + "1483105075", + "1483105045", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982508", + "982508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105589", + "1483105590", + "1483105619", + "1483105589", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982510", + "982510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105590", + "1483105591", + "1483105620", + "1483105590", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982584", + "982584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105904", + "1483105905", + "1483105928", + "1483105904", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982753", + "982753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106680", + "1483106681", + "1483106710", + "1483106680", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982755", + "982755", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106683", + "1483106684", + "1483106709", + "1483106683", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982776", + "982776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106744", + "1483106745", + "1483106768", + "1483106744", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982796", + "982796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106813", + "1483106814", + "1483106843", + "1483106813", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982800", + "982800", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106839", + "1483106840", + "1483106867", + "1483106839", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982915", + "982915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107476", + "1483107477", + "1483107502", + "1483107476", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982927", + "982927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107503", + "1483107504", + "1483107529", + "1483107503", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982935", + "982935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107529", + "1483107530", + "1483107558", + "1483107529", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982979", + "982979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107693", + "1483107694", + "1483107718", + "1483107693", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983005", + "983005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107782", + "1483107784", + "1483107813", + "1483107782", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983027", + "983027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107841", + "1483107842", + "1483107869", + "1483107841", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983053", + "983053", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107929", + "1483107930", + "1483107954", + "1483107929", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983064", + "983064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107965", + "1483107967", + "1483107993", + "1483107965", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983117", + "983117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108169", + "1483108170", + "1483108199", + "1483108169", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983142", + "983142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108255", + "1483108257", + "1483108279", + "1483108255", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983154", + "983154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108280", + "1483108282", + "1483108304", + "1483108280", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983157", + "983157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108280", + "1483108282", + "1483108303", + "1483108280", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983161", + "983161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108285", + "1483108288", + "1483108311", + "1483108285", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983187", + "983187", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108377", + "1483108378", + "1483108404", + "1483108377", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983232", + "983232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108542", + "1483108543", + "1483108570", + "1483108542", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983244", + "983244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108592", + "1483108593", + "1483108621", + "1483108592", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983322", + "983322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108904", + "1483108906", + "1483108929", + "1483108904", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983324", + "983324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108929", + "1483108930", + "1483108959", + "1483108929", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983338", + "983338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108973", + "1483108975", + "1483109000", + "1483108973", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983341", + "983341", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108974", + "1483108975", + "1483109002", + "1483108974", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983413", + "983413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109304", + "1483109306", + "1483109329", + "1483109304", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983425", + "983425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109369", + "1483109370", + "1483109394", + "1483109369", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983427", + "983427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109381", + "1483109382", + "1483109405", + "1483109381", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983429", + "983429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109383", + "1483109384", + "1483109413", + "1483109383", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983431", + "983431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109384", + "1483109385", + "1483109409", + "1483109384", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983433", + "983433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109392", + "1483109393", + "1483109416", + "1483109392", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983457", + "983457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109486", + "1483109487", + "1483109514", + "1483109486", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983459", + "983459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109488", + "1483109490", + "1483109513", + "1483109488", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983463", + "983463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109504", + "1483109505", + "1483109533", + "1483109504", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983471", + "983471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109515", + "1483109516", + "1483109539", + "1483109515", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983473", + "983473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109516", + "1483109518", + "1483109543", + "1483109516", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983475", + "983475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109534", + "1483109535", + "1483109557", + "1483109534", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983479", + "983479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109539", + "1483109540", + "1483109566", + "1483109539", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983517", + "983517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109640", + "1483109641", + "1483109664", + "1483109640", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983519", + "983519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109660", + "1483109661", + "1483109681", + "1483109660", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983523", + "983523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109664", + "1483109667", + "1483109690", + "1483109664", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983550", + "983550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109769", + "1483109770", + "1483109790", + "1483109769", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983560", + "983560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109790", + "1483109793", + "1483109822", + "1483109790", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983562", + "983562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109794", + "1483109796", + "1483109818", + "1483109794", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983596", + "983596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109907", + "1483109908", + "1483109934", + "1483109907", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983656", + "983656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110115", + "1483110118", + "1483110146", + "1483110115", + "1", + "8", + "0", + "-1", + "28", + "3", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983819", + "983819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111160", + "1483111161", + "1483111188", + "1483111160", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983997", + "983997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111901", + "1483111902", + "1483111929", + "1483111901", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984017", + "984017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111955", + "1483111956", + "1483111985", + "1483111955", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984025", + "984025", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111986", + "1483111988", + "1483112010", + "1483111986", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984047", + "984047", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112062", + "1483112063", + "1483112089", + "1483112062", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984067", + "984067", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112124", + "1483112126", + "1483112150", + "1483112124", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984085", + "984085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112185", + "1483112186", + "1483112209", + "1483112185", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984125", + "984125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112330", + "1483112331", + "1483112353", + "1483112330", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984133", + "984133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112342", + "1483112343", + "1483112372", + "1483112342", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984141", + "984141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112373", + "1483112374", + "1483112400", + "1483112373", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984143", + "984143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112375", + "1483112377", + "1483112396", + "1483112375", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984171", + "984171", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112445", + "1483112446", + "1483112469", + "1483112445", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984175", + "984175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112455", + "1483112456", + "1483112475", + "1483112455", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984177", + "984177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112458", + "1483112459", + "1483112476", + "1483112458", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984181", + "984181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112469", + "1483112470", + "1483112489", + "1483112469", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984211", + "984211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112578", + "1483112579", + "1483112603", + "1483112578", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984215", + "984215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112591", + "1483112592", + "1483112617", + "1483112591", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984245", + "984245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112679", + "1483112680", + "1483112708", + "1483112679", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984279", + "984279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112798", + "1483112801", + "1483112830", + "1483112798", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984296", + "984296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112849", + "1483112852", + "1483112874", + "1483112849", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984300", + "984300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112875", + "1483112876", + "1483112897", + "1483112875", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984302", + "984302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112881", + "1483112882", + "1483112904", + "1483112881", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984351", + "984351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113069", + "1483113070", + "1483113091", + "1483113069", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984373", + "984373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113159", + "1483113160", + "1483113182", + "1483113159", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984375", + "984375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113177", + "1483113178", + "1483113198", + "1483113177", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984391", + "984391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113228", + "1483113229", + "1483113246", + "1483113228", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984395", + "984395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113234", + "1483113235", + "1483113251", + "1483113234", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984401", + "984401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113246", + "1483113249", + "1483113276", + "1483113246", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984411", + "984411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113277", + "1483113278", + "1483113298", + "1483113277", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984413", + "984413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113281", + "1483113282", + "1483113302", + "1483113281", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984415", + "984415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113288", + "1483113289", + "1483113312", + "1483113288", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984431", + "984431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113351", + "1483113352", + "1483113378", + "1483113351", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984433", + "984433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113363", + "1483113364", + "1483113393", + "1483113363", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984504", + "984504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113764", + "1483113765", + "1483113786", + "1483113764", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984508", + "984508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113770", + "1483113771", + "1483113796", + "1483113770", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984510", + "984510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113773", + "1483113774", + "1483113793", + "1483113773", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984576", + "984576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113981", + "1483113983", + "1483114012", + "1483113981", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984611", + "984611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114099", + "1483114100", + "1483114123", + "1483114099", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984630", + "984630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114138", + "1483114139", + "1483114168", + "1483114138", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984632", + "984632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114142", + "1483114143", + "1483114168", + "1483114142", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984634", + "984634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114152", + "1483114153", + "1483114174", + "1483114152", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984638", + "984638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114169", + "1483114172", + "1483114201", + "1483114169", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984640", + "984640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114173", + "1483114174", + "1483114203", + "1483114173", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984672", + "984672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114276", + "1483114277", + "1483114300", + "1483114276", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984676", + "984676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114279", + "1483114280", + "1483114304", + "1483114279", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984686", + "984686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114305", + "1483114306", + "1483114325", + "1483114305", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984688", + "984688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114307", + "1483114309", + "1483114329", + "1483114307", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984692", + "984692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114322", + "1483114323", + "1483114348", + "1483114322", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984696", + "984696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114330", + "1483114331", + "1483114360", + "1483114330", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984722", + "984722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114404", + "1483114406", + "1483114435", + "1483114404", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984726", + "984726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114418", + "1483114419", + "1483114440", + "1483114418", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984728", + "984728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114421", + "1483114422", + "1483114449", + "1483114421", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984744", + "984744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114470", + "1483114472", + "1483114501", + "1483114470", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984750", + "984750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114485", + "1483114488", + "1483114515", + "1483114485", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984758", + "984758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114525", + "1483114526", + "1483114551", + "1483114525", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984785", + "984785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114616", + "1483114617", + "1483114641", + "1483114616", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984789", + "984789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114621", + "1483114622", + "1483114643", + "1483114621", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984795", + "984795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114644", + "1483114645", + "1483114673", + "1483114644", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984819", + "984819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114731", + "1483114732", + "1483114757", + "1483114731", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984843", + "984843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114809", + "1483114810", + "1483114834", + "1483114809", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984845", + "984845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114815", + "1483114816", + "1483114837", + "1483114815", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984847", + "984847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114816", + "1483114819", + "1483114842", + "1483114816", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984873", + "984873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114896", + "1483114898", + "1483114927", + "1483114896", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984923", + "984923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115132", + "1483115133", + "1483115152", + "1483115132", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984943", + "984943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115189", + "1483115190", + "1483115213", + "1483115189", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984945", + "984945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115190", + "1483115191", + "1483115218", + "1483115190", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984959", + "984959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115220", + "1483115223", + "1483115246", + "1483115220", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985066", + "985066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115620", + "1483115621", + "1483115646", + "1483115620", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985074", + "985074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115640", + "1483115641", + "1483115660", + "1483115640", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985080", + "985080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115652", + "1483115653", + "1483115680", + "1483115652", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985104", + "985104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115716", + "1483115717", + "1483115735", + "1483115716", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985140", + "985140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115823", + "1483115825", + "1483115854", + "1483115823", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985166", + "985166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115928", + "1483115929", + "1483115948", + "1483115928", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985170", + "985170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115930", + "1483115932", + "1483115951", + "1483115930", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985194", + "985194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116012", + "1483116013", + "1483116042", + "1483116012", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985196", + "985196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116021", + "1483116022", + "1483116041", + "1483116021", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985198", + "985198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116036", + "1483116037", + "1483116060", + "1483116036", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985208", + "985208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116042", + "1483116043", + "1483116069", + "1483116042", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985231", + "985231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116104", + "1483116107", + "1483116131", + "1483116104", + "1", + "8", + "0", + "-1", + "24", + "3", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985255", + "985255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116168", + "1483116170", + "1483116187", + "1483116168", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985261", + "985261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116188", + "1483116189", + "1483116218", + "1483116188", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985277", + "985277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116239", + "1483116240", + "1483116260", + "1483116239", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985279", + "985279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116240", + "1483116243", + "1483116264", + "1483116240", + "1", + "8", + "0", + "-1", + "21", + "3", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985281", + "985281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116247", + "1483116248", + "1483116270", + "1483116247", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985285", + "985285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116265", + "1483116266", + "1483116283", + "1483116265", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985287", + "985287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116268", + "1483116269", + "1483116296", + "1483116268", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985289", + "985289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116271", + "1483116272", + "1483116295", + "1483116271", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985291", + "985291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116279", + "1483116280", + "1483116298", + "1483116279", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985293", + "985293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116283", + "1483116284", + "1483116311", + "1483116283", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985295", + "985295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116289", + "1483116290", + "1483116309", + "1483116289", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985299", + "985299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116296", + "1483116297", + "1483116313", + "1483116296", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985301", + "985301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116297", + "1483116298", + "1483116320", + "1483116297", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985307", + "985307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116312", + "1483116313", + "1483116336", + "1483116312", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985309", + "985309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116314", + "1483116316", + "1483116341", + "1483116314", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985311", + "985311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116319", + "1483116320", + "1483116348", + "1483116319", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985376", + "985376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116328", + "1483116334", + "1483116354", + "1483116328", + "1", + "8", + "0", + "-1", + "20", + "6", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985390", + "985390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116330", + "1483116358", + "1483116380", + "1483116330", + "1", + "8", + "0", + "-1", + "22", + "28", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "167841", + "167841", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056704", + "1483056705", + "1483056722", + "1483056704", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168280", + "168280", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059999", + "1483060000", + "1483060029", + "1483059999", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168350", + "168350", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060470", + "1483060471", + "1483060499", + "1483060470", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168371", + "168371", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060638", + "1483060639", + "1483060655", + "1483060638", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169012", + "169012", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065080", + "1483065081", + "1483065109", + "1483065080", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169173", + "169173", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066096", + "1483066099", + "1483066122", + "1483066096", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169183", + "169183", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066130", + "1483066131", + "1483066150", + "1483066130", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169377", + "169377", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067913", + "1483067914", + "1483067929", + "1483067913", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170161", + "170161", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072220", + "1483072221", + "1483072240", + "1483072220", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170291", + "170291", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073039", + "1483073040", + "1483073058", + "1483073039", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170554", + "170554", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074635", + "1483074638", + "1483074665", + "1483074635", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170859", + "170859", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076959", + "1483076960", + "1483076982", + "1483076959", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171276", + "171276", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080089", + "1483080090", + "1483080104", + "1483080089", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171372", + "171372", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080612", + "1483080613", + "1483080626", + "1483080612", + "1", + "8", + "0", + "-1", + "13", + "1", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171391", + "171391", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080696", + "1483080698", + "1483080719", + "1483080696", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171554", + "171554", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081686", + "1483081687", + "1483081715", + "1483081686", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171664", + "171664", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082280", + "1483082281", + "1483082305", + "1483082280", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171676", + "171676", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082350", + "1483082351", + "1483082374", + "1483082350", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171775", + "171775", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083175", + "1483083176", + "1483083204", + "1483083175", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171839", + "171839", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083549", + "1483083550", + "1483083564", + "1483083549", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171891", + "171891", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083757", + "1483083758", + "1483083775", + "1483083757", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172214", + "172214", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085474", + "1483085475", + "1483085489", + "1483085474", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172364", + "172364", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086299", + "1483086300", + "1483086320", + "1483086299", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172386", + "172386", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086394", + "1483086395", + "1483086408", + "1483086394", + "1", + "8", + "0", + "-1", + "13", + "1", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172394", + "172394", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086414", + "1483086415", + "1483086437", + "1483086414", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172414", + "172414", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086506", + "1483086507", + "1483086533", + "1483086506", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172497", + "172497", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086869", + "1483086870", + "1483086891", + "1483086869", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172593", + "172593", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087493", + "1483087494", + "1483087518", + "1483087493", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172666", + "172666", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087949", + "1483087950", + "1483087968", + "1483087949", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172685", + "172685", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088017", + "1483088018", + "1483088034", + "1483088017", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172755", + "172755", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088386", + "1483088387", + "1483088402", + "1483088386", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172985", + "172985", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089779", + "1483089780", + "1483089795", + "1483089779", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173021", + "173021", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089939", + "1483089940", + "1483089959", + "1483089939", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173066", + "173066", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090173", + "1483090174", + "1483090197", + "1483090173", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173208", + "173208", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091281", + "1483091282", + "1483091302", + "1483091281", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173218", + "173218", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091326", + "1483091327", + "1483091350", + "1483091326", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173353", + "173353", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092093", + "1483092094", + "1483092110", + "1483092093", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173513", + "173513", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093000", + "1483093001", + "1483093025", + "1483093000", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173525", + "173525", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093043", + "1483093044", + "1483093065", + "1483093043", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173809", + "173809", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095158", + "1483095159", + "1483095183", + "1483095158", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174061", + "174061", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097153", + "1483097154", + "1483097177", + "1483097153", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174190", + "174190", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098102", + "1483098103", + "1483098131", + "1483098102", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174835", + "174835", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103033", + "1483103034", + "1483103051", + "1483103033", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175480", + "175480", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108246", + "1483108247", + "1483108265", + "1483108246", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175513", + "175513", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108405", + "1483108406", + "1483108426", + "1483108405", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176073", + "176073", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112848", + "1483112849", + "1483112876", + "1483112848", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176230", + "176230", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114048", + "1483114049", + "1483114067", + "1483114048", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176239", + "176239", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114100", + "1483114101", + "1483114121", + "1483114100", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176541", + "176541", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116042", + "1483116043", + "1483116070", + "1483116042", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "1004480", + "1004480", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483059241", + "1483059266", + "1483059279", + "1483059241", + "1", + "8", + "0", + "-1", + "13", + "25", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004562", + "1004562", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483060223", + "1483060227", + "1483060234", + "1483060223", + "1", + "8", + "0", + "-1", + "7", + "4", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004584", + "1004584", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483060445", + "1483060468", + "1483060491", + "1483060445", + "1", + "8", + "0", + "-1", + "23", + "23", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004750", + "1004750", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483062978", + "1483062992", + "1483063008", + "1483062978", + "1", + "8", + "0", + "-1", + "16", + "14", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005003", + "1005003", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483066696", + "1483066718", + "1483066747", + "1483066696", + "1", + "8", + "0", + "-1", + "29", + "22", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005034", + "1005034", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067310", + "1483067319", + "1483067336", + "1483067310", + "1", + "8", + "0", + "-1", + "17", + "9", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005049", + "1005049", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067665", + "1483067687", + "1483067695", + "1483067665", + "1", + "8", + "0", + "-1", + "8", + "22", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005212", + "1005212", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483069489", + "1483069490", + "1483069502", + "1483069489", + "1", + "8", + "0", + "-1", + "12", + "1", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005246", + "1005246", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483069957", + "1483069971", + "1483069987", + "1483069957", + "1", + "8", + "0", + "-1", + "16", + "14", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005404", + "1005404", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483072118", + "1483072135", + "1483072163", + "1483072118", + "1", + "8", + "0", + "-1", + "28", + "17", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005415", + "1005415", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483072355", + "1483072375", + "1483072393", + "1483072355", + "1", + "8", + "0", + "-1", + "18", + "20", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005545", + "1005545", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483074149", + "1483074178", + "1483074205", + "1483074149", + "1", + "8", + "0", + "-1", + "27", + "29", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005594", + "1005594", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483074874", + "1483074899", + "1483074928", + "1483074874", + "1", + "8", + "0", + "-1", + "29", + "25", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005688", + "1005688", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483075965", + "1483075981", + "1483075993", + "1483075965", + "1", + "8", + "0", + "-1", + "12", + "16", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005713", + "1005713", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483076335", + "1483076342", + "1483076349", + "1483076335", + "1", + "8", + "0", + "-1", + "7", + "7", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005818", + "1005818", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483077883", + "1483077904", + "1483077928", + "1483077883", + "1", + "8", + "0", + "-1", + "24", + "21", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005819", + "1005819", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483077896", + "1483077904", + "1483077913", + "1483077896", + "1", + "8", + "0", + "-1", + "9", + "8", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005859", + "1005859", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483078372", + "1483078385", + "1483078394", + "1483078372", + "1", + "8", + "0", + "-1", + "9", + "13", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005903", + "1005903", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483078840", + "1483078866", + "1483078875", + "1483078840", + "1", + "8", + "0", + "-1", + "9", + "26", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006074", + "1006074", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483081016", + "1483081030", + "1483081036", + "1483081016", + "1", + "8", + "0", + "-1", + "6", + "14", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006410", + "1006410", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483085697", + "1483085717", + "1483085745", + "1483085697", + "1", + "8", + "0", + "-1", + "28", + "20", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006558", + "1006558", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483087856", + "1483087881", + "1483087910", + "1483087856", + "1", + "8", + "0", + "-1", + "29", + "25", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006789", + "1006789", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483091097", + "1483091126", + "1483091133", + "1483091097", + "1", + "8", + "0", + "-1", + "7", + "29", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006790", + "1006790", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483091114", + "1483091126", + "1483091152", + "1483091114", + "1", + "8", + "0", + "-1", + "26", + "12", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006937", + "1006937", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093037", + "1483093049", + "1483093078", + "1483093037", + "1", + "8", + "0", + "-1", + "29", + "12", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006996", + "1006996", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093764", + "1483093770", + "1483093792", + "1483093764", + "1", + "8", + "0", + "-1", + "22", + "6", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007082", + "1007082", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483094961", + "1483094972", + "1483094983", + "1483094961", + "1", + "8", + "0", + "-1", + "11", + "11", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007135", + "1007135", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483095684", + "1483095693", + "1483095721", + "1483095684", + "1", + "8", + "0", + "-1", + "28", + "9", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007216", + "1007216", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483096750", + "1483096774", + "1483096803", + "1483096750", + "1", + "8", + "0", + "-1", + "29", + "24", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007218", + "1007218", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483096772", + "1483096774", + "1483096786", + "1483096772", + "1", + "8", + "0", + "-1", + "12", + "2", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007275", + "1007275", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483097363", + "1483097375", + "1483097393", + "1483097363", + "1", + "8", + "0", + "-1", + "18", + "12", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007732", + "1007732", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483104105", + "1483104107", + "1483104113", + "1483104105", + "1", + "8", + "0", + "-1", + "6", + "2", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008017", + "1008017", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483108053", + "1483108074", + "1483108081", + "1483108053", + "1", + "8", + "0", + "-1", + "7", + "21", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008228", + "1008228", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483111192", + "1483111200", + "1483111210", + "1483111192", + "1", + "8", + "0", + "-1", + "10", + "8", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008273", + "1008273", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483111774", + "1483111801", + "1483111815", + "1483111774", + "1", + "8", + "0", + "-1", + "14", + "27", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008309", + "1008309", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483112273", + "1483112282", + "1483112289", + "1483112273", + "1", + "8", + "0", + "-1", + "7", + "9", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008418", + "1008418", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483113696", + "1483113724", + "1483113752", + "1483113696", + "1", + "8", + "0", + "-1", + "28", + "28", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008445", + "1008445", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483114298", + "1483114325", + "1483114331", + "1483114298", + "1", + "8", + "0", + "-1", + "6", + "27", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008582", + "1008582", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483116344", + "1483116368", + "1483116392", + "1483116344", + "1", + "8", + "0", + "-1", + "24", + "24", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008649", + "1008649", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483116821", + "1483116849", + "1483116862", + "1483116821", + "1", + "8", + "0", + "-1", + "13", + "28", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008917", + "1008917", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483119118", + "1483119133", + "1483119141", + "1483119118", + "1", + "8", + "0", + "-1", + "8", + "15", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008964", + "1008964", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483119492", + "1483119493", + "1483119511", + "1483119492", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008993", + "1008993", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483119707", + "1483119733", + "1483119761", + "1483119707", + "1", + "8", + "0", + "-1", + "28", + "26", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009356", + "1009356", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483123450", + "1483123458", + "1483123466", + "1483123450", + "1", + "8", + "0", + "-1", + "8", + "8", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009467", + "1009467", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124756", + "1483124780", + "1483124809", + "1483124756", + "1", + "8", + "0", + "-1", + "29", + "24", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009584", + "1009584", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126320", + "1483126342", + "1483126351", + "1483126320", + "1", + "8", + "0", + "-1", + "9", + "22", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009600", + "1009600", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126556", + "1483126582", + "1483126590", + "1483126556", + "1", + "8", + "0", + "-1", + "8", + "26", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009718", + "1009718", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483128254", + "1483128265", + "1483128276", + "1483128254", + "1", + "8", + "0", + "-1", + "11", + "11", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010004", + "1010004", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483131847", + "1483131869", + "1483131889", + "1483131847", + "1", + "8", + "0", + "-1", + "20", + "22", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010099", + "1010099", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133181", + "1483133191", + "1483133203", + "1483133181", + "1", + "8", + "0", + "-1", + "12", + "10", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010142", + "1010142", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133648", + "1483133672", + "1483133677", + "1483133648", + "1", + "8", + "0", + "-1", + "5", + "24", + "40", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010190", + "1010190", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483134377", + "1483134392", + "1483134400", + "1483134377", + "1", + "8", + "0", + "-1", + "8", + "15", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010215", + "1010215", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483134742", + "1483134753", + "1483134780", + "1483134742", + "1", + "8", + "0", + "-1", + "27", + "11", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010244", + "1010244", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483135095", + "1483135113", + "1483135134", + "1483135095", + "1", + "8", + "0", + "-1", + "21", + "18", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010306", + "1010306", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483135813", + "1483135834", + "1483135860", + "1483135813", + "1", + "8", + "0", + "-1", + "26", + "21", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010658", + "1010658", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140620", + "1483140640", + "1483140656", + "1483140620", + "1", + "8", + "0", + "-1", + "16", + "20", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010675", + "1010675", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140865", + "1483140881", + "1483140905", + "1483140865", + "1", + "8", + "0", + "-1", + "24", + "16", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009156", + "1009156", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483121371", + "1483121375", + "1483121404", + "1483121371", + "1", + "8", + "0", + "-1", + "29", + "4", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006471", + "1006471", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483086629", + "1483086630", + "1483086652", + "1483086629", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "2281771", + "2281771", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114012", + "1483114013", + "1483114023", + "1483114012", + "1", + "12", + "0", + "-1", + "10", + "1", + "120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281976", + "2281976", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115748", + "1483115749", + "1483115757", + "1483115748", + "1", + "12", + "0", + "-1", + "8", + "1", + "96", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283356", + "2283356", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127270", + "1483127271", + "1483127282", + "1483127270", + "1", + "12", + "0", + "-1", + "11", + "1", + "132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284510", + "2284510", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138619", + "1483138620", + "1483138631", + "1483138619", + "1", + "12", + "0", + "-1", + "11", + "1", + "132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284670", + "2284670", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140308", + "1483140309", + "1483140321", + "1483140308", + "1", + "12", + "0", + "-1", + "12", + "1", + "144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991371", + "991371", + "Mortorq", + "UTC", + "", + "Martin, Crag", + "Screwdriver", + "cheese", + "1483129165", + "1483129170", + "1483129172", + "1483129165", + "1", + "20", + "0", + "-1", + "2", + "5", + "40", + "0", + "0:0", + "COMPLETED", + "1", + "62.50Gn", + "259200", + "panettone", + "Geosciences", + "Earth Sciences", + "Geophysics" + ], + [ + "991464", + "991464", + "Mortorq", + "UTC", + "", + "Martin, Crag", + "Screwdriver", + "cheese", + "1483129587", + "1483129591", + "1483129595", + "1483129587", + "1", + "20", + "0", + "-1", + "4", + "4", + "80", + "0", + "0:0", + "COMPLETED", + "1", + "62.50Gn", + "259200", + "panettone", + "Geosciences", + "Earth Sciences", + "Geophysics" + ], + [ + "1008512", + "1008512", + "Posidriv", + "UTC", + "", + "Shrike, Long-tailed", + "Screwdriver", + "banana-cream", + "1483115256", + "1483115259", + "1483115275", + "1483115256", + "1", + "20", + "0", + "-1", + "16", + "3", + "320", + "0", + "0:0", + "COMPLETED", + "20", + "2147490048Mn", + "259200", + "bannock", + "Engineering", + "Electrical and Communication Systems", + "Quantum Electronics, Waves, and Beams" + ], + [ + "1008485", + "1008485", + "Posidriv", + "UTC", + "", + "Shrike, Long-tailed", + "Screwdriver", + "butter", + "1483114756", + "1483114759", + "1483114773", + "1483114756", + "1", + "20", + "0", + "-1", + "14", + "3", + "280", + "0", + "0:0", + "COMPLETED", + "20", + "2147490048Mn", + "259200", + "bannock", + "Engineering", + "Electrical and Communication Systems", + "Quantum Electronics, Waves, and Beams" + ], + [ + "1008494", + "1008494", + "Posidriv", + "UTC", + "", + "Shrike, Long-tailed", + "Screwdriver", + "butter", + "1483114970", + "1483114974", + "1483114988", + "1483114970", + "1", + "20", + "0", + "-1", + "14", + "4", + "280", + "0", + "0:0", + "COMPLETED", + "20", + "2147490048Mn", + "259200", + "bannock", + "Engineering", + "Electrical and Communication Systems", + "Quantum Electronics, Waves, and Beams" + ], + [ + "1007845", + "1007845", + "Posidriv", + "UTC", + "", + "Warbler, Sardinian", + "Screwdriver", + "apple", + "1483105711", + "1483105714", + "1483105719", + "1483105711", + "2", + "16", + "0", + "-1", + "5", + "3", + "80", + "0", + "0:0", + "COMPLETED", + "16", + "40000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "6108348", + "6108348", + "Robertson", + "UTC", + "", + "Warbler, Golden-winged", + "Screwdriver", + "green-grape", + "1483057648", + "1483057651", + "1483057672", + "1483057648", + "2", + "24", + "0", + "-1", + "21", + "3", + "504", + "0", + "0:0", + "COMPLETED", + "24", + "2147486448Mn", + "3600", + "potbrood", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Economics" + ], + [ + "6108751", + "6108751", + "Robertson", + "UTC", + "", + "Moorhen", + "Screwdriver", + "curry", + "1483072813", + "1483072876", + "1483072889", + "1483072813", + "1", + "1", + "0", + "-1", + "13", + "63", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "18000", + "white", + "Computer and Information Science and Engineering", + "Microelectronic Information Processing Systems", + "Systems Prototyping and Fabrication" + ], + [ + "6108752", + "6108752", + "Robertson", + "UTC", + "", + "Moorhen", + "Screwdriver", + "curry", + "1483072827", + "1483072876", + "1483072890", + "1483072827", + "1", + "1", + "0", + "-1", + "14", + "49", + "14", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "19800", + "white", + "Computer and Information Science and Engineering", + "Microelectronic Information Processing Systems", + "Systems Prototyping and Fabrication" + ], + [ + "6111037[50]", + "6111088", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483126383", + "1483126395", + "1483125913", + "1", + "1", + "0", + "-1", + "12", + "471", + "12", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[55]", + "6111093", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483126383", + "1483126409", + "1483125913", + "1", + "1", + "0", + "-1", + "26", + "471", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[119]", + "6111163", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483126944", + "1483126962", + "1483125913", + "1", + "1", + "0", + "-1", + "18", + "1032", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[120]", + "6111164", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483126944", + "1483126962", + "1483125913", + "1", + "1", + "0", + "-1", + "18", + "1032", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[141]", + "6111187", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127093", + "1483127107", + "1483125913", + "1", + "1", + "0", + "-1", + "14", + "1181", + "14", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[185]", + "6111235", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127515", + "1483127542", + "1483125913", + "1", + "1", + "0", + "-1", + "27", + "1603", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[186]", + "6111236", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127515", + "1483127526", + "1483125913", + "1", + "1", + "0", + "-1", + "11", + "1603", + "11", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[198]", + "6111248", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127515", + "1483127530", + "1483125913", + "1", + "1", + "0", + "-1", + "15", + "1603", + "15", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[203]", + "6111253", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127653", + "1483127676", + "1483125913", + "1", + "1", + "0", + "-1", + "23", + "1741", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[2]", + "6111643", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130279", + "1483130306", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "1719", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112235", + "6112235", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483134122", + "1483134408", + "1483134426", + "1483134122", + "1", + "1", + "0", + "-1", + "18", + "286", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "2147531648Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112280", + "6112280", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483134462", + "1483134542", + "1483134563", + "1483134462", + "1", + "1", + "0", + "-1", + "21", + "80", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[2]", + "6112285", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135712", + "1483135739", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "64", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[10]", + "6112293", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135840", + "1483135853", + "1483135648", + "1", + "1", + "0", + "-1", + "13", + "192", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[15]", + "6112298", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135840", + "1483135868", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "192", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[16]", + "6112299", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135840", + "1483135866", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "192", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[17]", + "6112300", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135968", + "1483135989", + "1483135648", + "1", + "1", + "0", + "-1", + "21", + "320", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[22]", + "6112305", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135968", + "1483135997", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "320", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[25]", + "6112309", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483136098", + "1483136123", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "450", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[37]", + "6112321", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483136228", + "1483136255", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "580", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[45]", + "6112332", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483136627", + "1483136638", + "1483135648", + "1", + "1", + "0", + "-1", + "11", + "979", + "11", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[50]", + "6112338", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483136905", + "1483136908", + "1483135648", + "1", + "1", + "0", + "-1", + "3", + "1257", + "3", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[52]", + "6112340", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137041", + "1483137058", + "1483135648", + "1", + "1", + "0", + "-1", + "17", + "1393", + "17", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[55]", + "6112343", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137176", + "1483137195", + "1483135648", + "1", + "1", + "0", + "-1", + "19", + "1528", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[61]", + "6112349", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137306", + "1483137334", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "1658", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[64]", + "6112352", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137306", + "1483137335", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "1658", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[66]", + "6112354", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137306", + "1483137335", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "1658", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[78]", + "6112366", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137438", + "1483137467", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "1790", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[84]", + "6112372", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137438", + "1483137464", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "1790", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6110915[4]", + "6110925", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122066", + "1483122574", + "1483122578", + "1483122068", + "1", + "1", + "0", + "-1", + "4", + "508", + "4", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110916[4]", + "6110963", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122115", + "1483122967", + "1483122975", + "1483122115", + "1", + "1", + "0", + "-1", + "8", + "852", + "8", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110916[7]", + "6110996", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122115", + "1483123513", + "1483123523", + "1483122115", + "1", + "1", + "0", + "-1", + "10", + "1398", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110917[4]", + "6111000", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122187", + "1483123513", + "1483123523", + "1483122187", + "1", + "1", + "0", + "-1", + "10", + "1326", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "72000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110917[7]", + "6111003", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122187", + "1483123513", + "1483123525", + "1483122187", + "1", + "1", + "0", + "-1", + "12", + "1326", + "12", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "72000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110918[4]", + "6111008", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122225", + "1483123648", + "1483123658", + "1483122231", + "1", + "1", + "0", + "-1", + "10", + "1423", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110918[7]", + "6111011", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122225", + "1483123789", + "1483123798", + "1483122231", + "1", + "1", + "0", + "-1", + "9", + "1564", + "9", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "985392", + "985392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116330", + "1483116373", + "1483116394", + "1483116330", + "1", + "8", + "0", + "-1", + "21", + "43", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985396", + "985396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116330", + "1483116379", + "1483116400", + "1483116330", + "1", + "8", + "0", + "-1", + "21", + "49", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985398", + "985398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116331", + "1483116380", + "1483116401", + "1483116331", + "1", + "8", + "0", + "-1", + "21", + "49", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985414", + "985414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116333", + "1483116428", + "1483116457", + "1483116333", + "1", + "8", + "0", + "-1", + "29", + "95", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985420", + "985420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116333", + "1483116460", + "1483116485", + "1483116333", + "1", + "8", + "0", + "-1", + "25", + "127", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985440", + "985440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116336", + "1483116510", + "1483116539", + "1483116336", + "1", + "8", + "0", + "-1", + "29", + "174", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985444", + "985444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116336", + "1483116531", + "1483116551", + "1483116336", + "1", + "8", + "0", + "-1", + "20", + "195", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985464", + "985464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116340", + "1483116569", + "1483116592", + "1483116340", + "1", + "8", + "0", + "-1", + "23", + "229", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985468", + "985468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116340", + "1483116593", + "1483116620", + "1483116340", + "1", + "8", + "0", + "-1", + "27", + "253", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985472", + "985472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116341", + "1483116599", + "1483116625", + "1483116341", + "1", + "8", + "0", + "-1", + "26", + "258", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985476", + "985476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116341", + "1483116606", + "1483116627", + "1483116341", + "1", + "8", + "0", + "-1", + "21", + "265", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985480", + "985480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116342", + "1483116625", + "1483116647", + "1483116342", + "1", + "8", + "0", + "-1", + "22", + "283", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985484", + "985484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116342", + "1483116647", + "1483116670", + "1483116342", + "1", + "8", + "0", + "-1", + "23", + "305", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985500", + "985500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116344", + "1483116683", + "1483116711", + "1483116344", + "1", + "8", + "0", + "-1", + "28", + "339", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985506", + "985506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116345", + "1483116705", + "1483116729", + "1483116345", + "1", + "8", + "0", + "-1", + "24", + "360", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985518", + "985518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116347", + "1483116763", + "1483116791", + "1483116347", + "1", + "8", + "0", + "-1", + "28", + "416", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985522", + "985522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116347", + "1483116773", + "1483116801", + "1483116347", + "1", + "8", + "0", + "-1", + "28", + "426", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985526", + "985526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116348", + "1483116786", + "1483116815", + "1483116348", + "1", + "8", + "0", + "-1", + "29", + "438", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985546", + "985546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116351", + "1483116857", + "1483116878", + "1483116351", + "1", + "8", + "0", + "-1", + "21", + "506", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985554", + "985554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116352", + "1483116896", + "1483116914", + "1483116352", + "1", + "8", + "0", + "-1", + "18", + "544", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985562", + "985562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116353", + "1483116914", + "1483116943", + "1483116353", + "1", + "8", + "0", + "-1", + "29", + "561", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985564", + "985564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116353", + "1483116915", + "1483116938", + "1483116353", + "1", + "8", + "0", + "-1", + "23", + "562", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985570", + "985570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116354", + "1483116922", + "1483116941", + "1483116354", + "1", + "8", + "0", + "-1", + "19", + "568", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985572", + "985572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116354", + "1483116924", + "1483116945", + "1483116354", + "1", + "8", + "0", + "-1", + "21", + "570", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985575", + "985575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116355", + "1483116933", + "1483116962", + "1483116355", + "1", + "8", + "0", + "-1", + "29", + "578", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985589", + "985589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116357", + "1483116962", + "1483116988", + "1483116357", + "1", + "8", + "0", + "-1", + "26", + "605", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985595", + "985595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116358", + "1483116983", + "1483117004", + "1483116358", + "1", + "8", + "0", + "-1", + "21", + "625", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985597", + "985597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116358", + "1483116989", + "1483117018", + "1483116358", + "1", + "8", + "0", + "-1", + "29", + "631", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985602", + "985602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116359", + "1483117005", + "1483117026", + "1483116359", + "1", + "8", + "0", + "-1", + "21", + "646", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985604", + "985604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116359", + "1483117006", + "1483117035", + "1483116359", + "1", + "8", + "0", + "-1", + "29", + "647", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985607", + "985607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116360", + "1483117014", + "1483117033", + "1483116360", + "1", + "8", + "0", + "-1", + "19", + "654", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985609", + "985609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116360", + "1483117019", + "1483117048", + "1483116360", + "1", + "8", + "0", + "-1", + "29", + "659", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985625", + "985625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116363", + "1483117036", + "1483117061", + "1483116363", + "1", + "8", + "0", + "-1", + "25", + "673", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985627", + "985627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116363", + "1483117049", + "1483117073", + "1483116363", + "1", + "8", + "0", + "-1", + "24", + "686", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985630", + "985630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116363", + "1483117061", + "1483117080", + "1483116363", + "1", + "8", + "0", + "-1", + "19", + "698", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985633", + "985633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116364", + "1483117065", + "1483117092", + "1483116364", + "1", + "8", + "0", + "-1", + "27", + "701", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985635", + "985635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116364", + "1483117066", + "1483117091", + "1483116364", + "1", + "8", + "0", + "-1", + "25", + "702", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985638", + "985638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116365", + "1483117071", + "1483117090", + "1483116365", + "1", + "8", + "0", + "-1", + "19", + "706", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985640", + "985640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116365", + "1483117074", + "1483117096", + "1483116365", + "1", + "8", + "0", + "-1", + "22", + "709", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985643", + "985643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116365", + "1483117076", + "1483117096", + "1483116365", + "1", + "8", + "0", + "-1", + "20", + "711", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985645", + "985645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116366", + "1483117081", + "1483117099", + "1483116366", + "1", + "8", + "0", + "-1", + "18", + "715", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985648", + "985648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116366", + "1483117091", + "1483117118", + "1483116366", + "1", + "8", + "0", + "-1", + "27", + "725", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985650", + "985650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116366", + "1483117092", + "1483117117", + "1483116366", + "1", + "8", + "0", + "-1", + "25", + "726", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985663", + "985663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116368", + "1483117118", + "1483117142", + "1483116368", + "1", + "8", + "0", + "-1", + "24", + "750", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985666", + "985666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116369", + "1483117119", + "1483117148", + "1483116369", + "1", + "8", + "0", + "-1", + "29", + "750", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985668", + "985668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116369", + "1483117128", + "1483117147", + "1483116369", + "1", + "8", + "0", + "-1", + "19", + "759", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985681", + "985681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116371", + "1483117146", + "1483117163", + "1483116371", + "1", + "8", + "0", + "-1", + "17", + "775", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985699", + "985699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116374", + "1483117176", + "1483117205", + "1483116374", + "1", + "8", + "0", + "-1", + "29", + "802", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985701", + "985701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116374", + "1483117178", + "1483117197", + "1483116374", + "1", + "8", + "0", + "-1", + "19", + "804", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985704", + "985704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116375", + "1483117181", + "1483117203", + "1483116375", + "1", + "8", + "0", + "-1", + "22", + "806", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985706", + "985706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116375", + "1483117183", + "1483117209", + "1483116375", + "1", + "8", + "0", + "-1", + "26", + "808", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985714", + "985714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116376", + "1483117199", + "1483117222", + "1483116376", + "1", + "8", + "0", + "-1", + "23", + "823", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985719", + "985719", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116377", + "1483117205", + "1483117225", + "1483116377", + "1", + "8", + "0", + "-1", + "20", + "828", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985721", + "985721", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116377", + "1483117210", + "1483117227", + "1483116377", + "1", + "8", + "0", + "-1", + "17", + "833", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985724", + "985724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116378", + "1483117214", + "1483117234", + "1483116378", + "1", + "8", + "0", + "-1", + "20", + "836", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985726", + "985726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116378", + "1483117222", + "1483117246", + "1483116378", + "1", + "8", + "0", + "-1", + "24", + "844", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985736", + "985736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116380", + "1483117235", + "1483117261", + "1483116380", + "1", + "8", + "0", + "-1", + "26", + "855", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985741", + "985741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116381", + "1483117246", + "1483117270", + "1483116381", + "1", + "8", + "0", + "-1", + "24", + "865", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985743", + "985743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116381", + "1483117257", + "1483117284", + "1483116381", + "1", + "8", + "0", + "-1", + "27", + "876", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985745", + "985745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116381", + "1483117262", + "1483117288", + "1483116381", + "1", + "8", + "0", + "-1", + "26", + "881", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985750", + "985750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116382", + "1483117280", + "1483117309", + "1483116382", + "1", + "8", + "0", + "-1", + "29", + "898", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985753", + "985753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116382", + "1483117285", + "1483117313", + "1483116382", + "1", + "8", + "0", + "-1", + "28", + "903", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985820", + "985820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116393", + "1483117514", + "1483117540", + "1483116393", + "1", + "8", + "0", + "-1", + "26", + "1121", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985948", + "985948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116413", + "1483118095", + "1483118124", + "1483116413", + "1", + "8", + "0", + "-1", + "29", + "1682", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985953", + "985953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116414", + "1483118102", + "1483118129", + "1483116414", + "1", + "8", + "0", + "-1", + "27", + "1688", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986003", + "986003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116422", + "1483118206", + "1483118227", + "1483116422", + "1", + "8", + "0", + "-1", + "21", + "1784", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176671", + "176671", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116339", + "1483116416", + "1483116441", + "1483116339", + "1", + "8", + "0", + "-1", + "25", + "77", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176673", + "176673", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116339", + "1483116441", + "1483116465", + "1483116339", + "1", + "8", + "0", + "-1", + "24", + "102", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176675", + "176675", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116339", + "1483116465", + "1483116487", + "1483116339", + "1", + "8", + "0", + "-1", + "22", + "126", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176677", + "176677", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116339", + "1483116487", + "1483116508", + "1483116339", + "1", + "8", + "0", + "-1", + "21", + "148", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176726", + "176726", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116352", + "1483116508", + "1483116522", + "1483116352", + "1", + "8", + "0", + "-1", + "14", + "156", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176734", + "176734", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116353", + "1483116552", + "1483116577", + "1483116353", + "1", + "8", + "0", + "-1", + "25", + "199", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176737", + "176737", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116354", + "1483116578", + "1483116593", + "1483116354", + "1", + "8", + "0", + "-1", + "15", + "224", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176741", + "176741", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116355", + "1483116593", + "1483116612", + "1483116355", + "1", + "8", + "0", + "-1", + "19", + "238", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176746", + "176746", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116356", + "1483116612", + "1483116636", + "1483116356", + "1", + "8", + "0", + "-1", + "24", + "256", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176750", + "176750", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116357", + "1483116636", + "1483116656", + "1483116357", + "1", + "8", + "0", + "-1", + "20", + "279", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176754", + "176754", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116357", + "1483116657", + "1483116677", + "1483116357", + "1", + "8", + "0", + "-1", + "20", + "300", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176757", + "176757", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116358", + "1483116677", + "1483116698", + "1483116358", + "1", + "8", + "0", + "-1", + "21", + "319", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176762", + "176762", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116359", + "1483116698", + "1483116712", + "1483116359", + "1", + "8", + "0", + "-1", + "14", + "339", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176766", + "176766", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116360", + "1483116712", + "1483116724", + "1483116360", + "1", + "8", + "0", + "-1", + "12", + "352", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176770", + "176770", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116360", + "1483116725", + "1483116745", + "1483116360", + "1", + "8", + "0", + "-1", + "20", + "365", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176777", + "176777", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116362", + "1483116780", + "1483116804", + "1483116362", + "1", + "8", + "0", + "-1", + "24", + "418", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176781", + "176781", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116362", + "1483116805", + "1483116821", + "1483116362", + "1", + "8", + "0", + "-1", + "16", + "443", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176785", + "176785", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116363", + "1483116822", + "1483116836", + "1483116363", + "1", + "8", + "0", + "-1", + "14", + "459", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176788", + "176788", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116364", + "1483116837", + "1483116849", + "1483116364", + "1", + "8", + "0", + "-1", + "12", + "473", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176792", + "176792", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116364", + "1483116849", + "1483116874", + "1483116364", + "1", + "8", + "0", + "-1", + "25", + "485", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176796", + "176796", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116365", + "1483116874", + "1483116896", + "1483116365", + "1", + "8", + "0", + "-1", + "22", + "509", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176800", + "176800", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116366", + "1483116896", + "1483116912", + "1483116366", + "1", + "8", + "0", + "-1", + "16", + "530", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176804", + "176804", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116367", + "1483116912", + "1483116932", + "1483116367", + "1", + "8", + "0", + "-1", + "20", + "545", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176815", + "176815", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116369", + "1483117033", + "1483117054", + "1483116369", + "1", + "8", + "0", + "-1", + "21", + "664", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176819", + "176819", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116369", + "1483117054", + "1483117074", + "1483116369", + "1", + "8", + "0", + "-1", + "20", + "685", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176822", + "176822", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116370", + "1483117075", + "1483117094", + "1483116370", + "1", + "8", + "0", + "-1", + "19", + "705", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176826", + "176826", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116371", + "1483117095", + "1483117121", + "1483116371", + "1", + "8", + "0", + "-1", + "26", + "724", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176830", + "176830", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116372", + "1483117121", + "1483117134", + "1483116372", + "1", + "8", + "0", + "-1", + "13", + "749", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176834", + "176834", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116372", + "1483117135", + "1483117164", + "1483116372", + "1", + "8", + "0", + "-1", + "29", + "763", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176837", + "176837", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116373", + "1483117164", + "1483117193", + "1483116373", + "1", + "8", + "0", + "-1", + "29", + "791", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176842", + "176842", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116374", + "1483117193", + "1483117219", + "1483116374", + "1", + "8", + "0", + "-1", + "26", + "819", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176846", + "176846", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116375", + "1483117220", + "1483117238", + "1483116375", + "1", + "8", + "0", + "-1", + "18", + "845", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176850", + "176850", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116375", + "1483117239", + "1483117254", + "1483116375", + "1", + "8", + "0", + "-1", + "15", + "864", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176853", + "176853", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116376", + "1483117254", + "1483117274", + "1483116376", + "1", + "8", + "0", + "-1", + "20", + "878", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176857", + "176857", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116377", + "1483117274", + "1483117294", + "1483116377", + "1", + "8", + "0", + "-1", + "20", + "897", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176862", + "176862", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116378", + "1483117294", + "1483117306", + "1483116378", + "1", + "8", + "0", + "-1", + "12", + "916", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176866", + "176866", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116378", + "1483117306", + "1483117324", + "1483116378", + "1", + "8", + "0", + "-1", + "18", + "928", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176870", + "176870", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116379", + "1483117325", + "1483117346", + "1483116379", + "1", + "8", + "0", + "-1", + "21", + "946", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176875", + "176875", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116380", + "1483117347", + "1483117365", + "1483116380", + "1", + "8", + "0", + "-1", + "18", + "967", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176880", + "176880", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116381", + "1483117366", + "1483117395", + "1483116381", + "1", + "8", + "0", + "-1", + "29", + "985", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176891", + "176891", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116383", + "1483117467", + "1483117495", + "1483116383", + "1", + "8", + "0", + "-1", + "28", + "1084", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176895", + "176895", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116384", + "1483117495", + "1483117517", + "1483116384", + "1", + "8", + "0", + "-1", + "22", + "1111", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176901", + "176901", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116385", + "1483117556", + "1483117582", + "1483116385", + "1", + "8", + "0", + "-1", + "26", + "1171", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176921", + "176921", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116389", + "1483117738", + "1483117767", + "1483116389", + "1", + "8", + "0", + "-1", + "29", + "1349", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176943", + "176943", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116393", + "1483117976", + "1483117994", + "1483116393", + "1", + "8", + "0", + "-1", + "18", + "1583", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176952", + "176952", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116395", + "1483118026", + "1483118048", + "1483116395", + "1", + "8", + "0", + "-1", + "22", + "1631", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176963", + "176963", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116397", + "1483118136", + "1483118165", + "1483116397", + "1", + "8", + "0", + "-1", + "29", + "1739", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "1004250", + "1004250", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483056101", + "1483056141", + "1483056160", + "1483056101", + "1", + "8", + "0", + "-1", + "19", + "40", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004277", + "1004277", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483056525", + "1483056621", + "1483056636", + "1483056525", + "1", + "8", + "0", + "-1", + "15", + "96", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004291", + "1004291", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483056675", + "1483056742", + "1483056759", + "1483056675", + "1", + "8", + "0", + "-1", + "17", + "67", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004332", + "1004332", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483057243", + "1483057343", + "1483057358", + "1483057243", + "1", + "8", + "0", + "-1", + "15", + "100", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004336", + "1004336", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483057290", + "1483057343", + "1483057371", + "1483057290", + "1", + "8", + "0", + "-1", + "28", + "53", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004376", + "1004376", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483057838", + "1483057943", + "1483057950", + "1483057838", + "1", + "8", + "0", + "-1", + "7", + "105", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004379", + "1004379", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483057938", + "1483058064", + "1483058077", + "1483057938", + "1", + "8", + "0", + "-1", + "13", + "126", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004392", + "1004392", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058149", + "1483058184", + "1483058196", + "1483058149", + "1", + "8", + "0", + "-1", + "12", + "35", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004416", + "1004416", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058366", + "1483058424", + "1483058434", + "1483058366", + "1", + "8", + "0", + "-1", + "10", + "58", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004417", + "1004417", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058388", + "1483058424", + "1483058451", + "1483058388", + "1", + "8", + "0", + "-1", + "27", + "36", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004425", + "1004425", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058553", + "1483058665", + "1483058683", + "1483058553", + "1", + "8", + "0", + "-1", + "18", + "112", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004427", + "1004427", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058577", + "1483058665", + "1483058694", + "1483058577", + "1", + "8", + "0", + "-1", + "29", + "88", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004428", + "1004428", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058587", + "1483058665", + "1483058691", + "1483058587", + "1", + "8", + "0", + "-1", + "26", + "78", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004435", + "1004435", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058669", + "1483058785", + "1483058804", + "1483058669", + "1", + "8", + "0", + "-1", + "19", + "116", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004449", + "1004449", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058865", + "1483058905", + "1483058916", + "1483058865", + "1", + "8", + "0", + "-1", + "11", + "40", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004450", + "1004450", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058878", + "1483059025", + "1483059033", + "1483058878", + "1", + "8", + "0", + "-1", + "8", + "147", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004486", + "1004486", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483059270", + "1483059386", + "1483059402", + "1483059270", + "1", + "8", + "0", + "-1", + "16", + "116", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004491", + "1004491", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483059329", + "1483059386", + "1483059399", + "1483059329", + "1", + "8", + "0", + "-1", + "13", + "57", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004547", + "1004547", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483060049", + "1483060107", + "1483060116", + "1483060049", + "1", + "8", + "0", + "-1", + "9", + "58", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004637", + "1004637", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483061076", + "1483061189", + "1483061201", + "1483061076", + "1", + "8", + "0", + "-1", + "12", + "113", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004666", + "1004666", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483061431", + "1483061549", + "1483061559", + "1483061431", + "1", + "8", + "0", + "-1", + "10", + "118", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004669", + "1004669", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483061467", + "1483061549", + "1483061561", + "1483061467", + "1", + "8", + "0", + "-1", + "12", + "82", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004689", + "1004689", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483061885", + "1483062030", + "1483062052", + "1483061885", + "1", + "8", + "0", + "-1", + "22", + "145", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004747", + "1004747", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483062889", + "1483062992", + "1483062998", + "1483062889", + "1", + "8", + "0", + "-1", + "6", + "103", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004761", + "1004761", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483063074", + "1483063112", + "1483063127", + "1483063074", + "1", + "8", + "0", + "-1", + "15", + "38", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004777", + "1004777", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483063256", + "1483063352", + "1483063374", + "1483063256", + "1", + "8", + "0", + "-1", + "22", + "96", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004778", + "1004778", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483063285", + "1483063352", + "1483063380", + "1483063285", + "1", + "8", + "0", + "-1", + "28", + "67", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004801", + "1004801", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483063607", + "1483063713", + "1483063728", + "1483063607", + "1", + "8", + "0", + "-1", + "15", + "106", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004820", + "1004820", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483064010", + "1483064073", + "1483064082", + "1483064010", + "1", + "8", + "0", + "-1", + "9", + "63", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004825", + "1004825", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483064105", + "1483064193", + "1483064215", + "1483064105", + "1", + "8", + "0", + "-1", + "22", + "88", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004870", + "1004870", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483064980", + "1483065035", + "1483065042", + "1483064980", + "1", + "8", + "0", + "-1", + "7", + "55", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004911", + "1004911", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483065443", + "1483065516", + "1483065528", + "1483065443", + "1", + "8", + "0", + "-1", + "12", + "73", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004946", + "1004946", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483065792", + "1483065876", + "1483065886", + "1483065792", + "1", + "8", + "0", + "-1", + "10", + "84", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004973", + "1004973", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483066153", + "1483066237", + "1483066261", + "1483066153", + "1", + "8", + "0", + "-1", + "24", + "84", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004974", + "1004974", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483066176", + "1483066237", + "1483066260", + "1483066176", + "1", + "8", + "0", + "-1", + "23", + "61", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004998", + "1004998", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483066653", + "1483066718", + "1483066725", + "1483066653", + "1", + "8", + "0", + "-1", + "7", + "65", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005009", + "1005009", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483066784", + "1483066838", + "1483066854", + "1483066784", + "1", + "8", + "0", + "-1", + "16", + "54", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005048", + "1005048", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067639", + "1483067687", + "1483067694", + "1483067639", + "1", + "8", + "0", + "-1", + "7", + "48", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005052", + "1005052", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067743", + "1483067807", + "1483067820", + "1483067743", + "1", + "8", + "0", + "-1", + "13", + "64", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005070", + "1005070", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067809", + "1483067927", + "1483067931", + "1483067809", + "1", + "8", + "0", + "-1", + "4", + "118", + "32", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005108", + "1005108", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483068015", + "1483068168", + "1483068194", + "1483068015", + "1", + "8", + "0", + "-1", + "26", + "153", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005112", + "1005112", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483068061", + "1483068168", + "1483068194", + "1483068061", + "1", + "8", + "0", + "-1", + "26", + "107", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005122", + "1005122", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483068217", + "1483068288", + "1483068296", + "1483068217", + "1", + "8", + "0", + "-1", + "8", + "71", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005166", + "1005166", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483068901", + "1483069009", + "1483069015", + "1483068901", + "1", + "8", + "0", + "-1", + "6", + "108", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005169", + "1005169", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483068963", + "1483069009", + "1483069028", + "1483068963", + "1", + "8", + "0", + "-1", + "19", + "46", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005218", + "1005218", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483069540", + "1483069611", + "1483069638", + "1483069540", + "1", + "8", + "0", + "-1", + "27", + "71", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005255", + "1005255", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483070141", + "1483070212", + "1483070235", + "1483070141", + "1", + "8", + "0", + "-1", + "23", + "71", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005281", + "1005281", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483070590", + "1483070692", + "1483070708", + "1483070590", + "1", + "8", + "0", + "-1", + "16", + "102", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005312", + "1005312", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483071021", + "1483071053", + "1483071061", + "1483071021", + "1", + "8", + "0", + "-1", + "8", + "32", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005344", + "1005344", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483071368", + "1483071413", + "1483071435", + "1483071368", + "1", + "8", + "0", + "-1", + "22", + "45", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005364", + "1005364", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483071549", + "1483071774", + "1483071780", + "1483071549", + "1", + "8", + "0", + "-1", + "6", + "225", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005369", + "1005369", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483071600", + "1483071654", + "1483071673", + "1483071600", + "1", + "8", + "0", + "-1", + "19", + "54", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005388", + "1005388", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483071896", + "1483072014", + "1483072026", + "1483071896", + "1", + "8", + "0", + "-1", + "12", + "118", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005413", + "1005413", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483072312", + "1483072375", + "1483072388", + "1483072312", + "1", + "8", + "0", + "-1", + "13", + "63", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005458", + "1005458", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483073011", + "1483073096", + "1483073110", + "1483073011", + "1", + "8", + "0", + "-1", + "14", + "85", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005488", + "1005488", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483073442", + "1483073577", + "1483073585", + "1483073442", + "1", + "8", + "0", + "-1", + "8", + "135", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005498", + "1005498", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483073598", + "1483073697", + "1483073725", + "1483073598", + "1", + "8", + "0", + "-1", + "28", + "99", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005544", + "1005544", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483074136", + "1483074178", + "1483074186", + "1483074136", + "1", + "8", + "0", + "-1", + "8", + "42", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005589", + "1005589", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483074788", + "1483074899", + "1483074907", + "1483074788", + "1", + "8", + "0", + "-1", + "8", + "111", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005621", + "1005621", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483075190", + "1483075260", + "1483075269", + "1483075190", + "1", + "8", + "0", + "-1", + "9", + "70", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005677", + "1005677", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483075805", + "1483075981", + "1483075990", + "1483075805", + "1", + "8", + "0", + "-1", + "9", + "176", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005678", + "1005678", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483075845", + "1483075981", + "1483076004", + "1483075845", + "1", + "8", + "0", + "-1", + "23", + "136", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005703", + "1005703", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483076140", + "1483076222", + "1483076233", + "1483076140", + "1", + "8", + "0", + "-1", + "11", + "82", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005711", + "1005711", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483076250", + "1483076342", + "1483076365", + "1483076250", + "1", + "8", + "0", + "-1", + "23", + "92", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005723", + "1005723", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483076487", + "1483076582", + "1483076603", + "1483076487", + "1", + "8", + "0", + "-1", + "21", + "95", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005767", + "1005767", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483077100", + "1483077303", + "1483077315", + "1483077100", + "1", + "8", + "0", + "-1", + "12", + "203", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005781", + "1005781", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483077284", + "1483077424", + "1483077438", + "1483077284", + "1", + "8", + "0", + "-1", + "14", + "140", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005830", + "1005830", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483078028", + "1483078145", + "1483078156", + "1483078028", + "1", + "8", + "0", + "-1", + "11", + "117", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005839", + "1005839", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483078162", + "1483078265", + "1483078281", + "1483078162", + "1", + "8", + "0", + "-1", + "16", + "103", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005958", + "1005958", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483079410", + "1483079467", + "1483079475", + "1483079410", + "1", + "8", + "0", + "-1", + "8", + "57", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005973", + "1005973", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483079569", + "1483079707", + "1483079713", + "1483079569", + "1", + "8", + "0", + "-1", + "6", + "138", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006022", + "1006022", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483080315", + "1483080429", + "1483080439", + "1483080315", + "1", + "8", + "0", + "-1", + "10", + "114", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006027", + "1006027", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483080361", + "1483080429", + "1483080457", + "1483080361", + "1", + "8", + "0", + "-1", + "28", + "68", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006115", + "1006115", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483081557", + "1483081630", + "1483081638", + "1483081557", + "1", + "8", + "0", + "-1", + "8", + "73", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006154", + "1006154", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483082191", + "1483082232", + "1483082247", + "1483082191", + "1", + "8", + "0", + "-1", + "15", + "41", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006175", + "1006175", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483082587", + "1483082712", + "1483082720", + "1483082587", + "1", + "8", + "0", + "-1", + "8", + "125", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006176", + "1006176", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483082629", + "1483082712", + "1483082732", + "1483082629", + "1", + "8", + "0", + "-1", + "20", + "83", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006236", + "1006236", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483083204", + "1483083313", + "1483083337", + "1483083204", + "1", + "8", + "0", + "-1", + "24", + "109", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006240", + "1006240", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483083234", + "1483083313", + "1483083322", + "1483083234", + "1", + "8", + "0", + "-1", + "9", + "79", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006282", + "1006282", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483083976", + "1483084035", + "1483084049", + "1483083976", + "1", + "8", + "0", + "-1", + "14", + "59", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006335", + "1006335", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483084716", + "1483084756", + "1483084764", + "1483084716", + "1", + "8", + "0", + "-1", + "8", + "40", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006336", + "1006336", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483084730", + "1483084876", + "1483084890", + "1483084730", + "1", + "8", + "0", + "-1", + "14", + "146", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006378", + "1006378", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483085281", + "1483085357", + "1483085364", + "1483085281", + "1", + "8", + "0", + "-1", + "7", + "76", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006392", + "1006392", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483085407", + "1483085477", + "1483085484", + "1483085407", + "1", + "8", + "0", + "-1", + "7", + "70", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006406", + "1006406", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483085605", + "1483085717", + "1483085746", + "1483085605", + "1", + "8", + "0", + "-1", + "29", + "112", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006408", + "1006408", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483085657", + "1483085717", + "1483085735", + "1483085657", + "1", + "8", + "0", + "-1", + "18", + "60", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006446", + "1006446", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483086227", + "1483086318", + "1483086328", + "1483086227", + "1", + "8", + "0", + "-1", + "10", + "91", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006469", + "1006469", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483086591", + "1483086679", + "1483086707", + "1483086591", + "1", + "8", + "0", + "-1", + "28", + "88", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006501", + "1006501", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483087091", + "1483087160", + "1483087166", + "1483087091", + "1", + "8", + "0", + "-1", + "6", + "69", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006546", + "1006546", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483087587", + "1483087761", + "1483087771", + "1483087587", + "1", + "8", + "0", + "-1", + "10", + "174", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006559", + "1006559", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483087896", + "1483088001", + "1483088008", + "1483087896", + "1", + "8", + "0", + "-1", + "7", + "105", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006581", + "1006581", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483088172", + "1483088242", + "1483088248", + "1483088172", + "1", + "8", + "0", + "-1", + "6", + "70", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006595", + "1006595", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483088376", + "1483088482", + "1483088491", + "1483088376", + "1", + "8", + "0", + "-1", + "9", + "106", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006636", + "1006636", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483088987", + "1483089083", + "1483089092", + "1483088987", + "1", + "8", + "0", + "-1", + "9", + "96", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006702", + "1006702", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483089676", + "1483089804", + "1483089815", + "1483089676", + "1", + "8", + "0", + "-1", + "11", + "128", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006726", + "1006726", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483090129", + "1483090164", + "1483090185", + "1483090129", + "1", + "8", + "0", + "-1", + "21", + "35", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006737", + "1006737", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483090372", + "1483090405", + "1483090418", + "1483090372", + "1", + "8", + "0", + "-1", + "13", + "33", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006756", + "1006756", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483090570", + "1483090645", + "1483090674", + "1483090570", + "1", + "8", + "0", + "-1", + "29", + "75", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006793", + "1006793", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483091130", + "1483091246", + "1483091268", + "1483091130", + "1", + "8", + "0", + "-1", + "22", + "116", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006796", + "1006796", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483091146", + "1483091246", + "1483091268", + "1483091146", + "1", + "8", + "0", + "-1", + "22", + "100", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006837", + "1006837", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483091596", + "1483091727", + "1483091735", + "1483091596", + "1", + "8", + "0", + "-1", + "8", + "131", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006890", + "1006890", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483092375", + "1483092448", + "1483092454", + "1483092375", + "1", + "8", + "0", + "-1", + "6", + "73", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006922", + "1006922", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483092863", + "1483092929", + "1483092935", + "1483092863", + "1", + "8", + "0", + "-1", + "6", + "66", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006946", + "1006946", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093204", + "1483093289", + "1483093298", + "1483093204", + "1", + "8", + "0", + "-1", + "9", + "85", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006951", + "1006951", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093247", + "1483093289", + "1483093296", + "1483093247", + "1", + "8", + "0", + "-1", + "7", + "42", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006969", + "1006969", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093427", + "1483093530", + "1483093540", + "1483093427", + "1", + "8", + "0", + "-1", + "10", + "103", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006971", + "1006971", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093490", + "1483093530", + "1483093538", + "1483093490", + "1", + "8", + "0", + "-1", + "8", + "40", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006997", + "1006997", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093775", + "1483093890", + "1483093898", + "1483093775", + "1", + "8", + "0", + "-1", + "8", + "115", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007036", + "1007036", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483094132", + "1483094251", + "1483094263", + "1483094132", + "1", + "8", + "0", + "-1", + "12", + "119", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007085", + "1007085", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483095004", + "1483095092", + "1483095106", + "1483095004", + "1", + "8", + "0", + "-1", + "14", + "88", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007157", + "1007157", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483095971", + "1483096053", + "1483096061", + "1483095971", + "1", + "8", + "0", + "-1", + "8", + "82", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007205", + "1007205", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483096619", + "1483096654", + "1483096661", + "1483096619", + "1", + "8", + "0", + "-1", + "7", + "35", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007224", + "1007224", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483096846", + "1483096895", + "1483096924", + "1483096846", + "1", + "8", + "0", + "-1", + "29", + "49", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007246", + "1007246", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483097094", + "1483097135", + "1483097160", + "1483097094", + "1", + "8", + "0", + "-1", + "25", + "41", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007308", + "1007308", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483097910", + "1483097976", + "1483097996", + "1483097910", + "1", + "8", + "0", + "-1", + "20", + "66", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007313", + "1007313", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483097946", + "1483097976", + "1483097990", + "1483097946", + "1", + "8", + "0", + "-1", + "14", + "30", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007386", + "1007386", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483098969", + "1483099058", + "1483099069", + "1483098969", + "1", + "8", + "0", + "-1", + "11", + "89", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007409", + "1007409", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483099235", + "1483099299", + "1483099313", + "1483099235", + "1", + "8", + "0", + "-1", + "14", + "64", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007454", + "1007454", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483099947", + "1483100020", + "1483100028", + "1483099947", + "1", + "8", + "0", + "-1", + "8", + "73", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007479", + "1007479", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483100224", + "1483100260", + "1483100272", + "1483100224", + "1", + "8", + "0", + "-1", + "12", + "36", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007511", + "1007511", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483100641", + "1483100741", + "1483100763", + "1483100641", + "1", + "8", + "0", + "-1", + "22", + "100", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007526", + "1007526", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483100781", + "1483100861", + "1483100868", + "1483100781", + "1", + "8", + "0", + "-1", + "7", + "80", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007566", + "1007566", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483101339", + "1483101462", + "1483101469", + "1483101339", + "1", + "8", + "0", + "-1", + "7", + "123", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007611", + "1007611", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483102115", + "1483102183", + "1483102188", + "1483102115", + "1", + "8", + "0", + "-1", + "5", + "68", + "40", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007652", + "1007652", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483102592", + "1483102664", + "1483102677", + "1483102592", + "1", + "8", + "0", + "-1", + "13", + "72", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007677", + "1007677", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483102950", + "1483103145", + "1483103152", + "1483102950", + "1", + "8", + "0", + "-1", + "7", + "195", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007685", + "1007685", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483103092", + "1483103145", + "1483103163", + "1483103092", + "1", + "8", + "0", + "-1", + "18", + "53", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007698", + "1007698", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483103256", + "1483103385", + "1483103404", + "1483103256", + "1", + "8", + "0", + "-1", + "19", + "129", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007772", + "1007772", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483104569", + "1483104708", + "1483104714", + "1483104569", + "1", + "8", + "0", + "-1", + "6", + "139", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007788", + "1007788", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483104790", + "1483104948", + "1483104966", + "1483104790", + "1", + "8", + "0", + "-1", + "18", + "158", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007818", + "1007818", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483105256", + "1483105309", + "1483105318", + "1483105256", + "1", + "8", + "0", + "-1", + "9", + "53", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007873", + "1007873", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483106031", + "1483106150", + "1483106164", + "1483106031", + "1", + "8", + "0", + "-1", + "14", + "119", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007881", + "1007881", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483106178", + "1483106271", + "1483106295", + "1483106178", + "1", + "8", + "0", + "-1", + "24", + "93", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007900", + "1007900", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483106531", + "1483106631", + "1483106653", + "1483106531", + "1", + "8", + "0", + "-1", + "22", + "100", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007922", + "1007922", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483106717", + "1483106751", + "1483106770", + "1483106717", + "1", + "8", + "0", + "-1", + "19", + "34", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007935", + "1007935", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483106912", + "1483106992", + "1483107017", + "1483106912", + "1", + "8", + "0", + "-1", + "25", + "80", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007941", + "1007941", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483107003", + "1483107112", + "1483107130", + "1483107003", + "1", + "8", + "0", + "-1", + "18", + "109", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007964", + "1007964", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483107410", + "1483107473", + "1483107483", + "1483107410", + "1", + "8", + "0", + "-1", + "10", + "63", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007971", + "1007971", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483107522", + "1483107593", + "1483107622", + "1483107522", + "1", + "8", + "0", + "-1", + "29", + "71", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008002", + "1008002", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483107851", + "1483107954", + "1483107961", + "1483107851", + "1", + "8", + "0", + "-1", + "7", + "103", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008015", + "1008015", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483107997", + "1483108074", + "1483108089", + "1483107997", + "1", + "8", + "0", + "-1", + "15", + "77", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008022", + "1008022", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483108140", + "1483108194", + "1483108222", + "1483108140", + "1", + "8", + "0", + "-1", + "28", + "54", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008035", + "1008035", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483108314", + "1483108435", + "1483108450", + "1483108314", + "1", + "8", + "0", + "-1", + "15", + "121", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008066", + "1008066", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483108710", + "1483108795", + "1483108802", + "1483108710", + "1", + "8", + "0", + "-1", + "7", + "85", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008103", + "1008103", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483109350", + "1483109396", + "1483109403", + "1483109350", + "1", + "8", + "0", + "-1", + "7", + "46", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008160", + "1008160", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483110153", + "1483110238", + "1483110247", + "1483110153", + "1", + "8", + "0", + "-1", + "9", + "85", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008181", + "1008181", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483110548", + "1483110598", + "1483110622", + "1483110548", + "1", + "8", + "0", + "-1", + "24", + "50", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008215", + "1008215", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483110982", + "1483111079", + "1483111089", + "1483110982", + "1", + "8", + "0", + "-1", + "10", + "97", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008220", + "1008220", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483111082", + "1483111200", + "1483111205", + "1483111082", + "1", + "8", + "0", + "-1", + "5", + "118", + "40", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008229", + "1008229", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483111201", + "1483111320", + "1483111347", + "1483111201", + "1", + "8", + "0", + "-1", + "27", + "119", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008261", + "1008261", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483111621", + "1483111681", + "1483111691", + "1483111621", + "1", + "8", + "0", + "-1", + "10", + "60", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008367", + "1008367", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483113068", + "1483113123", + "1483113131", + "1483113068", + "1", + "8", + "0", + "-1", + "8", + "55", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008385", + "1008385", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483113272", + "1483113364", + "1483113367", + "1483113272", + "1", + "8", + "0", + "-1", + "3", + "92", + "24", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008399", + "1008399", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483113455", + "1483113604", + "1483113613", + "1483113455", + "1", + "8", + "0", + "-1", + "9", + "149", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008402", + "1008402", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483113479", + "1483113604", + "1483113608", + "1483113479", + "1", + "8", + "0", + "-1", + "4", + "125", + "32", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008446", + "1008446", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483114337", + "1483114445", + "1483114471", + "1483114337", + "1", + "8", + "0", + "-1", + "26", + "108", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008505", + "1008505", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483115126", + "1483115167", + "1483115174", + "1483115126", + "1", + "8", + "0", + "-1", + "7", + "41", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008522", + "1008522", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483115318", + "1483115407", + "1483115421", + "1483115318", + "1", + "8", + "0", + "-1", + "14", + "89", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008539", + "1008539", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483115569", + "1483115647", + "1483115665", + "1483115569", + "1", + "8", + "0", + "-1", + "18", + "78", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008547", + "1008547", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483115607", + "1483115647", + "1483115674", + "1483115607", + "1", + "8", + "0", + "-1", + "27", + "40", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008569", + "1008569", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483116071", + "1483116128", + "1483116141", + "1483116071", + "1", + "8", + "0", + "-1", + "13", + "57", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008635", + "1008635", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483116690", + "1483116729", + "1483116757", + "1483116690", + "1", + "8", + "0", + "-1", + "28", + "39", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008752", + "1008752", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483117589", + "1483117690", + "1483117719", + "1483117589", + "1", + "8", + "0", + "-1", + "29", + "101", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008761", + "1008761", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483117708", + "1483117811", + "1483117835", + "1483117708", + "1", + "8", + "0", + "-1", + "24", + "103", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008835", + "1008835", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483118300", + "1483118411", + "1483118428", + "1483118300", + "1", + "8", + "0", + "-1", + "17", + "111", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008899", + "1008899", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483118941", + "1483119012", + "1483119021", + "1483118941", + "1", + "8", + "0", + "-1", + "9", + "71", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008901", + "1008901", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483118971", + "1483119012", + "1483119018", + "1483118971", + "1", + "8", + "0", + "-1", + "6", + "41", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008938", + "1008938", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483119331", + "1483119373", + "1483119385", + "1483119331", + "1", + "8", + "0", + "-1", + "12", + "42", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009011", + "1009011", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483119863", + "1483119974", + "1483120000", + "1483119863", + "1", + "8", + "0", + "-1", + "26", + "111", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009045", + "1009045", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483120108", + "1483120214", + "1483120231", + "1483120108", + "1", + "8", + "0", + "-1", + "17", + "106", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009052", + "1009052", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483120224", + "1483120334", + "1483120358", + "1483120224", + "1", + "8", + "0", + "-1", + "24", + "110", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009082", + "1009082", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483120563", + "1483120695", + "1483120708", + "1483120563", + "1", + "8", + "0", + "-1", + "13", + "132", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009090", + "1009090", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483120671", + "1483120815", + "1483120835", + "1483120671", + "1", + "8", + "0", + "-1", + "20", + "144", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009139", + "1009139", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483121139", + "1483121175", + "1483121184", + "1483121139", + "1", + "8", + "0", + "-1", + "9", + "36", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009196", + "1009196", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483121772", + "1483121896", + "1483121905", + "1483121772", + "1", + "8", + "0", + "-1", + "9", + "124", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009204", + "1009204", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483121858", + "1483121896", + "1483121921", + "1483121858", + "1", + "8", + "0", + "-1", + "25", + "38", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009226", + "1009226", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483122056", + "1483122137", + "1483122163", + "1483122056", + "1", + "8", + "0", + "-1", + "26", + "81", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009282", + "1009282", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483122548", + "1483122617", + "1483122627", + "1483122548", + "1", + "8", + "0", + "-1", + "10", + "69", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009298", + "1009298", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483122682", + "1483122737", + "1483122752", + "1483122682", + "1", + "8", + "0", + "-1", + "15", + "55", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009379", + "1009379", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483123708", + "1483123819", + "1483123834", + "1483123708", + "1", + "8", + "0", + "-1", + "15", + "111", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009416", + "1009416", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124190", + "1483124299", + "1483124308", + "1483124190", + "1", + "8", + "0", + "-1", + "9", + "109", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009441", + "1009441", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124484", + "1483124540", + "1483124563", + "1483124484", + "1", + "8", + "0", + "-1", + "23", + "56", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009450", + "1009450", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124569", + "1483124660", + "1483124688", + "1483124569", + "1", + "8", + "0", + "-1", + "28", + "91", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009465", + "1009465", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124724", + "1483124780", + "1483124797", + "1483124724", + "1", + "8", + "0", + "-1", + "17", + "56", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009477", + "1009477", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124862", + "1483124900", + "1483124917", + "1483124862", + "1", + "8", + "0", + "-1", + "17", + "38", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009478", + "1009478", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124872", + "1483125020", + "1483125029", + "1483124872", + "1", + "8", + "0", + "-1", + "9", + "148", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009589", + "1009589", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126409", + "1483126462", + "1483126470", + "1483126409", + "1", + "8", + "0", + "-1", + "8", + "53", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009592", + "1009592", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126428", + "1483126462", + "1483126479", + "1483126428", + "1", + "8", + "0", + "-1", + "17", + "34", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009613", + "1009613", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126677", + "1483126823", + "1483126829", + "1483126677", + "1", + "8", + "0", + "-1", + "6", + "146", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009640", + "1009640", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126978", + "1483127063", + "1483127082", + "1483126978", + "1", + "8", + "0", + "-1", + "19", + "85", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009650", + "1009650", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483127162", + "1483127303", + "1483127325", + "1483127162", + "1", + "8", + "0", + "-1", + "22", + "141", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009679", + "1009679", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483127574", + "1483127784", + "1483127813", + "1483127574", + "1", + "8", + "0", + "-1", + "29", + "210", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009721", + "1009721", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483128277", + "1483128385", + "1483128407", + "1483128277", + "1", + "8", + "0", + "-1", + "22", + "108", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009746", + "1009746", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483128523", + "1483128625", + "1483128633", + "1483128523", + "1", + "8", + "0", + "-1", + "8", + "102", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009753", + "1009753", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483128685", + "1483128745", + "1483128766", + "1483128685", + "1", + "8", + "0", + "-1", + "21", + "60", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009802", + "1009802", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483129248", + "1483129346", + "1483129357", + "1483129248", + "1", + "8", + "0", + "-1", + "11", + "98", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009826", + "1009826", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483129642", + "1483129707", + "1483129736", + "1483129642", + "1", + "8", + "0", + "-1", + "29", + "65", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009841", + "1009841", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483129869", + "1483129947", + "1483129973", + "1483129869", + "1", + "8", + "0", + "-1", + "26", + "78", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009898", + "1009898", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483130558", + "1483130668", + "1483130693", + "1483130558", + "1", + "8", + "0", + "-1", + "25", + "110", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009905", + "1009905", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483130620", + "1483130668", + "1483130678", + "1483130620", + "1", + "8", + "0", + "-1", + "10", + "48", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009907", + "1009907", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483130636", + "1483130668", + "1483130692", + "1483130636", + "1", + "8", + "0", + "-1", + "24", + "32", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009955", + "1009955", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483131189", + "1483131269", + "1483131291", + "1483131189", + "1", + "8", + "0", + "-1", + "22", + "80", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009966", + "1009966", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483131291", + "1483131389", + "1483131396", + "1483131291", + "1", + "8", + "0", + "-1", + "7", + "98", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009975", + "1009975", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483131469", + "1483131509", + "1483131518", + "1483131469", + "1", + "8", + "0", + "-1", + "9", + "40", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010028", + "1010028", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483132299", + "1483132350", + "1483132356", + "1483132299", + "1", + "8", + "0", + "-1", + "6", + "51", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010073", + "1010073", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483132903", + "1483132951", + "1483132961", + "1483132903", + "1", + "8", + "0", + "-1", + "10", + "48", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010100", + "1010100", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133197", + "1483133311", + "1483133327", + "1483133197", + "1", + "8", + "0", + "-1", + "16", + "114", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010105", + "1010105", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133234", + "1483133311", + "1483133332", + "1483133234", + "1", + "8", + "0", + "-1", + "21", + "77", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010118", + "1010118", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133380", + "1483133431", + "1483133441", + "1483133380", + "1", + "8", + "0", + "-1", + "10", + "51", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010120", + "1010120", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133395", + "1483133431", + "1483133457", + "1483133395", + "1", + "8", + "0", + "-1", + "26", + "36", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010192", + "1010192", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483134427", + "1483134513", + "1483134526", + "1483134427", + "1", + "8", + "0", + "-1", + "13", + "86", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010211", + "1010211", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483134649", + "1483134753", + "1483134767", + "1483134649", + "1", + "8", + "0", + "-1", + "14", + "104", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010267", + "1010267", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483135405", + "1483135474", + "1483135483", + "1483135405", + "1", + "8", + "0", + "-1", + "9", + "69", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010329", + "1010329", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483136080", + "1483136195", + "1483136207", + "1483136080", + "1", + "8", + "0", + "-1", + "12", + "115", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010345", + "1010345", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483136333", + "1483136435", + "1483136456", + "1483136333", + "1", + "8", + "0", + "-1", + "21", + "102", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010376", + "1010376", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483136824", + "1483137036", + "1483137064", + "1483136824", + "1", + "8", + "0", + "-1", + "28", + "212", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010392", + "1010392", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483137073", + "1483137156", + "1483137165", + "1483137073", + "1", + "8", + "0", + "-1", + "9", + "83", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010423", + "1010423", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483137426", + "1483137516", + "1483137529", + "1483137426", + "1", + "8", + "0", + "-1", + "13", + "90", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010466", + "1010466", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483137955", + "1483137997", + "1483138011", + "1483137955", + "1", + "8", + "0", + "-1", + "14", + "42", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010469", + "1010469", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483138023", + "1483138237", + "1483138259", + "1483138023", + "1", + "8", + "0", + "-1", + "22", + "214", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010518", + "1010518", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483138750", + "1483138838", + "1483138844", + "1483138750", + "1", + "8", + "0", + "-1", + "6", + "88", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010570", + "1010570", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483139349", + "1483139439", + "1483139447", + "1483139349", + "1", + "8", + "0", + "-1", + "8", + "90", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010572", + "1010572", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483139426", + "1483139559", + "1483139587", + "1483139426", + "1", + "8", + "0", + "-1", + "28", + "133", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010598", + "1010598", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483139887", + "1483139919", + "1483139926", + "1483139887", + "1", + "8", + "0", + "-1", + "7", + "32", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010608", + "1010608", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140001", + "1483140039", + "1483140050", + "1483140001", + "1", + "8", + "0", + "-1", + "11", + "38", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010610", + "1010610", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140041", + "1483140160", + "1483140174", + "1483140041", + "1", + "8", + "0", + "-1", + "14", + "119", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010617", + "1010617", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140146", + "1483140280", + "1483140304", + "1483140146", + "1", + "8", + "0", + "-1", + "24", + "134", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010633", + "1010633", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140361", + "1483140400", + "1483140420", + "1483140361", + "1", + "8", + "0", + "-1", + "20", + "39", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010653", + "1010653", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140535", + "1483140640", + "1483140648", + "1483140535", + "1", + "8", + "0", + "-1", + "8", + "105", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010678", + "1010678", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140881", + "1483141001", + "1483141014", + "1483140881", + "1", + "8", + "0", + "-1", + "13", + "120", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010679", + "1010679", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140898", + "1483141001", + "1483141029", + "1483140898", + "1", + "8", + "0", + "-1", + "28", + "103", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010713", + "1010713", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483141161", + "1483141241", + "1483141265", + "1483141161", + "1", + "8", + "0", + "-1", + "24", + "80", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010746", + "1010746", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483141603", + "1483141722", + "1483141728", + "1483141603", + "1", + "8", + "0", + "-1", + "6", + "119", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010776", + "1010776", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483142080", + "1483142202", + "1483142217", + "1483142080", + "1", + "8", + "0", + "-1", + "15", + "122", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004945", + "1004945", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483065770", + "1483065876", + "1483065895", + "1483065770", + "1", + "8", + "0", + "-1", + "19", + "106", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "6111037[221]", + "6111273", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127791", + "1483127810", + "1483125913", + "1", + "1", + "0", + "-1", + "19", + "1879", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[268]", + "6111320", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483128080", + "1483128102", + "1483125913", + "1", + "1", + "0", + "-1", + "22", + "2168", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[325]", + "6111382", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483128501", + "1483128528", + "1483125913", + "1", + "1", + "0", + "-1", + "27", + "2589", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[395]", + "6111457", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483129063", + "1483129085", + "1483125913", + "1", + "1", + "0", + "-1", + "22", + "3151", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[431]", + "6111505", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483129321", + "1483129347", + "1483125913", + "1", + "1", + "0", + "-1", + "26", + "3409", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[460]", + "6111534", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483129461", + "1483129481", + "1483125913", + "1", + "1", + "0", + "-1", + "20", + "3549", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[10]", + "6111652", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130411", + "1483130430", + "1483128563", + "1", + "1", + "0", + "-1", + "19", + "1851", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[15]", + "6111657", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130411", + "1483130440", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "1851", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[16]", + "6111658", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130411", + "1483130433", + "1483128563", + "1", + "1", + "0", + "-1", + "22", + "1851", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[17]", + "6111659", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130411", + "1483130431", + "1483128563", + "1", + "1", + "0", + "-1", + "20", + "1851", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[25]", + "6111674", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130539", + "1483130567", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "1979", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[37]", + "6111686", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130539", + "1483130567", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "1979", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[45]", + "6111715", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130676", + "1483130695", + "1483128563", + "1", + "1", + "0", + "-1", + "19", + "2116", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[50]", + "6111720", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130676", + "1483130689", + "1483128563", + "1", + "1", + "0", + "-1", + "13", + "2116", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[52]", + "6111722", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130676", + "1483130695", + "1483128563", + "1", + "1", + "0", + "-1", + "19", + "2116", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[54]", + "6111724", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130676", + "1483130702", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "2116", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[55]", + "6111725", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130676", + "1483130695", + "1483128563", + "1", + "1", + "0", + "-1", + "19", + "2116", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[61]", + "6111750", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130808", + "1483130836", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "2248", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[84]", + "6111782", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130937", + "1483130964", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "2377", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[98]", + "6111796", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130937", + "1483130957", + "1483128563", + "1", + "1", + "0", + "-1", + "20", + "2377", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[106]", + "6111805", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131062", + "1483131090", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "2502", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[119]", + "6111821", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131192", + "1483131207", + "1483128563", + "1", + "1", + "0", + "-1", + "15", + "2632", + "15", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[120]", + "6111822", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131192", + "1483131208", + "1483128563", + "1", + "1", + "0", + "-1", + "16", + "2632", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[127]", + "6111829", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131192", + "1483131219", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "2632", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[131]", + "6111833", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131192", + "1483131220", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "2632", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[138]", + "6111841", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131327", + "1483131356", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "2767", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[141]", + "6111844", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131327", + "1483131332", + "1483128563", + "1", + "1", + "0", + "-1", + "5", + "2767", + "5", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[149]", + "6111852", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131327", + "1483131351", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "2767", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[159]", + "6111863", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131464", + "1483131489", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "2904", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[161]", + "6111865", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131464", + "1483131492", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "2904", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[166]", + "6111870", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131464", + "1483131489", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "2904", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[185]", + "6111890", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131602", + "1483131623", + "1483128563", + "1", + "1", + "0", + "-1", + "21", + "3042", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[186]", + "6111891", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131602", + "1483131612", + "1483128563", + "1", + "1", + "0", + "-1", + "10", + "3042", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[187]", + "6111892", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131602", + "1483131623", + "1483128563", + "1", + "1", + "0", + "-1", + "21", + "3042", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[193]", + "6111898", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131738", + "1483131766", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "3178", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[198]", + "6111903", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131738", + "1483131744", + "1483128563", + "1", + "1", + "0", + "-1", + "6", + "3178", + "6", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[203]", + "6111908", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131738", + "1483131756", + "1483128563", + "1", + "1", + "0", + "-1", + "18", + "3178", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[204]", + "6111909", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131738", + "1483131761", + "1483128563", + "1", + "1", + "0", + "-1", + "23", + "3178", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[206]", + "6111911", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131738", + "1483131766", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "3178", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[212]", + "6111917", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131895", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "3307", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[217]", + "6111922", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131888", + "1483128563", + "1", + "1", + "0", + "-1", + "21", + "3307", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[221]", + "6111926", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131880", + "1483128563", + "1", + "1", + "0", + "-1", + "13", + "3307", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[222]", + "6111927", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131895", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "3307", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[224]", + "6111929", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131895", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "3307", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[225]", + "6111930", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131890", + "1483128563", + "1", + "1", + "0", + "-1", + "23", + "3307", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[226]", + "6111931", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131997", + "1483132026", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "3437", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[236]", + "6111941", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131997", + "1483132026", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "3437", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[241]", + "6111946", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131997", + "1483132023", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "3437", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[254]", + "6111959", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132136", + "1483132156", + "1483128563", + "1", + "1", + "0", + "-1", + "20", + "3576", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[255]", + "6111960", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132136", + "1483132162", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "3576", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[256]", + "6111961", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132136", + "1483132163", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "3576", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[263]", + "6111968", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132136", + "1483132163", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "3576", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[98]", + "6112386", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137566", + "1483137582", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "1918", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[106]", + "6112394", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137566", + "1483137594", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "1918", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[119]", + "6112407", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137692", + "1483137712", + "1483135648", + "1", + "1", + "0", + "-1", + "20", + "2044", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[120]", + "6112408", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137692", + "1483137712", + "1483135648", + "1", + "1", + "0", + "-1", + "20", + "2044", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[127]", + "6112415", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137824", + "1483137853", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "2176", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[129]", + "6112417", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137824", + "1483137851", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "2176", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[138]", + "6112426", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137824", + "1483137853", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "2176", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[141]", + "6112429", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137824", + "1483137835", + "1483135648", + "1", + "1", + "0", + "-1", + "11", + "2176", + "11", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[149]", + "6112437", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137956", + "1483137981", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "2308", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[159]", + "6112447", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137956", + "1483137983", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "2308", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[161]", + "6112449", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137956", + "1483137985", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "2308", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[166]", + "6112454", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138083", + "1483138105", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "2435", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[167]", + "6112455", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138083", + "1483138111", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "2435", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[173]", + "6112461", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138083", + "1483138111", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "2435", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[175]", + "6112463", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138083", + "1483138111", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "2435", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[185]", + "6112473", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138210", + "1483138232", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "2562", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[186]", + "6112474", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138210", + "1483138218", + "1483135648", + "1", + "1", + "0", + "-1", + "8", + "2562", + "8", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[187]", + "6112475", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138210", + "1483138226", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "2562", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[193]", + "6112481", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138210", + "1483138235", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "2562", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[198]", + "6112486", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138210", + "1483138220", + "1483135648", + "1", + "1", + "0", + "-1", + "10", + "2562", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[203]", + "6112491", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138342", + "1483138356", + "1483135648", + "1", + "1", + "0", + "-1", + "14", + "2694", + "14", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[204]", + "6112492", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138342", + "1483138366", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "2694", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[217]", + "6112505", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138342", + "1483138355", + "1483135648", + "1", + "1", + "0", + "-1", + "13", + "2694", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[221]", + "6112509", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138470", + "1483138483", + "1483135648", + "1", + "1", + "0", + "-1", + "13", + "2822", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[224]", + "6112512", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138470", + "1483138499", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "2822", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[241]", + "6112529", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138601", + "1483138623", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "2953", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[254]", + "6112542", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138601", + "1483138617", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "2953", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[255]", + "6112543", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138601", + "1483138623", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "2953", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[256]", + "6112544", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138601", + "1483138628", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "2953", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[268]", + "6112556", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138737", + "1483138746", + "1483135648", + "1", + "1", + "0", + "-1", + "9", + "3089", + "9", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[277]", + "6112565", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138737", + "1483138764", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "3089", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[281]", + "6112569", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138862", + "1483138884", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "3214", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[294]", + "6112582", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138862", + "1483138885", + "1483135648", + "1", + "1", + "0", + "-1", + "23", + "3214", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[310]", + "6112599", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138992", + "1483139008", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "3344", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[325]", + "6112615", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139123", + "1483139130", + "1483135648", + "1", + "1", + "0", + "-1", + "7", + "3475", + "7", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[326]", + "6112616", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139123", + "1483139145", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "3475", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "986006", + "986006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116423", + "1483118225", + "1483118246", + "1483116423", + "1", + "8", + "0", + "-1", + "21", + "1802", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986011", + "986011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116424", + "1483118234", + "1483118251", + "1483116424", + "1", + "8", + "0", + "-1", + "17", + "1810", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986013", + "986013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116424", + "1483118246", + "1483118270", + "1483116424", + "1", + "8", + "0", + "-1", + "24", + "1822", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986016", + "986016", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116424", + "1483118252", + "1483118273", + "1483116424", + "1", + "8", + "0", + "-1", + "21", + "1828", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986018", + "986018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116425", + "1483118254", + "1483118277", + "1483116425", + "1", + "8", + "0", + "-1", + "23", + "1829", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986021", + "986021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116425", + "1483118262", + "1483118281", + "1483116425", + "1", + "8", + "0", + "-1", + "19", + "1837", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986024", + "986024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116426", + "1483118268", + "1483118290", + "1483116426", + "1", + "8", + "0", + "-1", + "22", + "1842", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986026", + "986026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116426", + "1483118270", + "1483118289", + "1483116426", + "1", + "8", + "0", + "-1", + "19", + "1844", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986031", + "986031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116427", + "1483118278", + "1483118307", + "1483116427", + "1", + "8", + "0", + "-1", + "29", + "1851", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986041", + "986041", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116428", + "1483118291", + "1483118313", + "1483116428", + "1", + "8", + "0", + "-1", + "22", + "1863", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986044", + "986044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116429", + "1483118298", + "1483118319", + "1483116429", + "1", + "8", + "0", + "-1", + "21", + "1869", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986049", + "986049", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116429", + "1483118313", + "1483118332", + "1483116429", + "1", + "8", + "0", + "-1", + "19", + "1884", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986051", + "986051", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116430", + "1483118314", + "1483118336", + "1483116430", + "1", + "8", + "0", + "-1", + "22", + "1884", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986054", + "986054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116430", + "1483118320", + "1483118341", + "1483116430", + "1", + "8", + "0", + "-1", + "21", + "1890", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986059", + "986059", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116431", + "1483118336", + "1483118356", + "1483116431", + "1", + "8", + "0", + "-1", + "20", + "1905", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986061", + "986061", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116431", + "1483118337", + "1483118357", + "1483116431", + "1", + "8", + "0", + "-1", + "20", + "1906", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986064", + "986064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116432", + "1483118339", + "1483118358", + "1483116432", + "1", + "8", + "0", + "-1", + "19", + "1907", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986079", + "986079", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116434", + "1483118358", + "1483118379", + "1483116434", + "1", + "8", + "0", + "-1", + "21", + "1924", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986085", + "986085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116435", + "1483118371", + "1483118389", + "1483116435", + "1", + "8", + "0", + "-1", + "18", + "1936", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986087", + "986087", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116435", + "1483118374", + "1483118390", + "1483116435", + "1", + "8", + "0", + "-1", + "16", + "1939", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986092", + "986092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116436", + "1483118380", + "1483118403", + "1483116436", + "1", + "8", + "0", + "-1", + "23", + "1944", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986097", + "986097", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116437", + "1483118391", + "1483118413", + "1483116437", + "1", + "8", + "0", + "-1", + "22", + "1954", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986100", + "986100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116437", + "1483118391", + "1483118410", + "1483116437", + "1", + "8", + "0", + "-1", + "19", + "1954", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986103", + "986103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116438", + "1483118395", + "1483118413", + "1483116438", + "1", + "8", + "0", + "-1", + "18", + "1957", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986118", + "986118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116440", + "1483118427", + "1483118447", + "1483116440", + "1", + "8", + "0", + "-1", + "20", + "1987", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986120", + "986120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116441", + "1483118436", + "1483118457", + "1483116441", + "1", + "8", + "0", + "-1", + "21", + "1995", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986124", + "986124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116441", + "1483118446", + "1483118465", + "1483116441", + "1", + "8", + "0", + "-1", + "19", + "2005", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986129", + "986129", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116442", + "1483118448", + "1483118469", + "1483116442", + "1", + "8", + "0", + "-1", + "21", + "2006", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986134", + "986134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116443", + "1483118458", + "1483118479", + "1483116443", + "1", + "8", + "0", + "-1", + "21", + "2015", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986137", + "986137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116443", + "1483118466", + "1483118485", + "1483116443", + "1", + "8", + "0", + "-1", + "19", + "2023", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986139", + "986139", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116444", + "1483118470", + "1483118488", + "1483116444", + "1", + "8", + "0", + "-1", + "18", + "2026", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986142", + "986142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116444", + "1483118479", + "1483118507", + "1483116444", + "1", + "8", + "0", + "-1", + "28", + "2035", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986145", + "986145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116445", + "1483118481", + "1483118509", + "1483116445", + "1", + "8", + "0", + "-1", + "28", + "2036", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986155", + "986155", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116446", + "1483118495", + "1483118517", + "1483116446", + "1", + "8", + "0", + "-1", + "22", + "2049", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986157", + "986157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116446", + "1483118507", + "1483118527", + "1483116446", + "1", + "8", + "0", + "-1", + "20", + "2061", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986160", + "986160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116447", + "1483118509", + "1483118526", + "1483116447", + "1", + "8", + "0", + "-1", + "17", + "2062", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986163", + "986163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116448", + "1483118517", + "1483118546", + "1483116448", + "1", + "8", + "0", + "-1", + "29", + "2069", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986165", + "986165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116448", + "1483118525", + "1483118553", + "1483116448", + "1", + "8", + "0", + "-1", + "28", + "2077", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986168", + "986168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116448", + "1483118526", + "1483118550", + "1483116448", + "1", + "8", + "0", + "-1", + "24", + "2078", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986170", + "986170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116449", + "1483118528", + "1483118551", + "1483116449", + "1", + "8", + "0", + "-1", + "23", + "2079", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986173", + "986173", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116449", + "1483118528", + "1483118552", + "1483116449", + "1", + "8", + "0", + "-1", + "24", + "2079", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986175", + "986175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116449", + "1483118546", + "1483118564", + "1483116449", + "1", + "8", + "0", + "-1", + "18", + "2097", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986183", + "986183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116451", + "1483118552", + "1483118578", + "1483116451", + "1", + "8", + "0", + "-1", + "26", + "2101", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986191", + "986191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116452", + "1483118555", + "1483118577", + "1483116452", + "1", + "8", + "0", + "-1", + "22", + "2103", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986199", + "986199", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116453", + "1483118578", + "1483118591", + "1483116453", + "1", + "8", + "0", + "-1", + "13", + "2125", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986206", + "986206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116454", + "1483118592", + "1483118613", + "1483116454", + "1", + "8", + "0", + "-1", + "21", + "2138", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986213", + "986213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116455", + "1483118604", + "1483118619", + "1483116455", + "1", + "8", + "0", + "-1", + "15", + "2149", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986216", + "986216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116456", + "1483118614", + "1483118631", + "1483116456", + "1", + "8", + "0", + "-1", + "17", + "2158", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986229", + "986229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116458", + "1483118625", + "1483118647", + "1483116458", + "1", + "8", + "0", + "-1", + "22", + "2167", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986231", + "986231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116458", + "1483118629", + "1483118652", + "1483116458", + "1", + "8", + "0", + "-1", + "23", + "2171", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986233", + "986233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116459", + "1483118631", + "1483118653", + "1483116459", + "1", + "8", + "0", + "-1", + "22", + "2172", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986236", + "986236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116459", + "1483118631", + "1483118651", + "1483116459", + "1", + "8", + "0", + "-1", + "20", + "2172", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986238", + "986238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116459", + "1483118647", + "1483118666", + "1483116459", + "1", + "8", + "0", + "-1", + "19", + "2188", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986240", + "986240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116460", + "1483118650", + "1483118674", + "1483116460", + "1", + "8", + "0", + "-1", + "24", + "2190", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986243", + "986243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116460", + "1483118651", + "1483118675", + "1483116460", + "1", + "8", + "0", + "-1", + "24", + "2191", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986248", + "986248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116461", + "1483118653", + "1483118674", + "1483116461", + "1", + "8", + "0", + "-1", + "21", + "2192", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986251", + "986251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116462", + "1483118654", + "1483118681", + "1483116462", + "1", + "8", + "0", + "-1", + "27", + "2192", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986253", + "986253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116462", + "1483118667", + "1483118687", + "1483116462", + "1", + "8", + "0", + "-1", + "20", + "2205", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986268", + "986268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116464", + "1483118688", + "1483118710", + "1483116464", + "1", + "8", + "0", + "-1", + "22", + "2224", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986271", + "986271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116465", + "1483118706", + "1483118727", + "1483116465", + "1", + "8", + "0", + "-1", + "21", + "2241", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986277", + "986277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116466", + "1483118706", + "1483118732", + "1483116466", + "1", + "8", + "0", + "-1", + "26", + "2240", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986279", + "986279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116466", + "1483118710", + "1483118734", + "1483116466", + "1", + "8", + "0", + "-1", + "24", + "2244", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986287", + "986287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116467", + "1483118728", + "1483118751", + "1483116467", + "1", + "8", + "0", + "-1", + "23", + "2261", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986290", + "986290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116468", + "1483118728", + "1483118748", + "1483116468", + "1", + "8", + "0", + "-1", + "20", + "2260", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986292", + "986292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116468", + "1483118732", + "1483118753", + "1483116468", + "1", + "8", + "0", + "-1", + "21", + "2264", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986305", + "986305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116471", + "1483118753", + "1483118775", + "1483116471", + "1", + "8", + "0", + "-1", + "22", + "2282", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986308", + "986308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116471", + "1483118754", + "1483118776", + "1483116471", + "1", + "8", + "0", + "-1", + "22", + "2283", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986310", + "986310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116471", + "1483118769", + "1483118794", + "1483116471", + "1", + "8", + "0", + "-1", + "25", + "2298", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986312", + "986312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116472", + "1483118775", + "1483118796", + "1483116472", + "1", + "8", + "0", + "-1", + "21", + "2303", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986315", + "986315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116472", + "1483118777", + "1483118801", + "1483116472", + "1", + "8", + "0", + "-1", + "24", + "2305", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986317", + "986317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116472", + "1483118779", + "1483118803", + "1483116472", + "1", + "8", + "0", + "-1", + "24", + "2307", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986322", + "986322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116473", + "1483118790", + "1483118814", + "1483116473", + "1", + "8", + "0", + "-1", + "24", + "2317", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986325", + "986325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116474", + "1483118795", + "1483118815", + "1483116474", + "1", + "8", + "0", + "-1", + "20", + "2321", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986328", + "986328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116474", + "1483118797", + "1483118816", + "1483116474", + "1", + "8", + "0", + "-1", + "19", + "2323", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986330", + "986330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116474", + "1483118801", + "1483118820", + "1483116474", + "1", + "8", + "0", + "-1", + "19", + "2327", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986345", + "986345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116477", + "1483118821", + "1483118842", + "1483116477", + "1", + "8", + "0", + "-1", + "21", + "2344", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986348", + "986348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116477", + "1483118834", + "1483118861", + "1483116477", + "1", + "8", + "0", + "-1", + "27", + "2357", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986350", + "986350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116478", + "1483118843", + "1483118863", + "1483116478", + "1", + "8", + "0", + "-1", + "20", + "2365", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986353", + "986353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116478", + "1483118847", + "1483118871", + "1483116478", + "1", + "8", + "0", + "-1", + "24", + "2369", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986355", + "986355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116478", + "1483118859", + "1483118883", + "1483116478", + "1", + "8", + "0", + "-1", + "24", + "2381", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986363", + "986363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116480", + "1483118871", + "1483118892", + "1483116480", + "1", + "8", + "0", + "-1", + "21", + "2391", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986365", + "986365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116480", + "1483118882", + "1483118903", + "1483116480", + "1", + "8", + "0", + "-1", + "21", + "2402", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986368", + "986368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116481", + "1483118884", + "1483118904", + "1483116481", + "1", + "8", + "0", + "-1", + "20", + "2403", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986396", + "986396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116485", + "1483118942", + "1483118970", + "1483116485", + "1", + "8", + "0", + "-1", + "28", + "2457", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986419", + "986419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116489", + "1483119023", + "1483119043", + "1483116489", + "1", + "8", + "0", + "-1", + "20", + "2534", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986421", + "986421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116489", + "1483119027", + "1483119048", + "1483116489", + "1", + "8", + "0", + "-1", + "21", + "2538", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986426", + "986426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116490", + "1483119044", + "1483119061", + "1483116490", + "1", + "8", + "0", + "-1", + "17", + "2554", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986428", + "986428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116490", + "1483119049", + "1483119065", + "1483116490", + "1", + "8", + "0", + "-1", + "16", + "2559", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986431", + "986431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116491", + "1483119062", + "1483119088", + "1483116491", + "1", + "8", + "0", + "-1", + "26", + "2571", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986433", + "986433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116491", + "1483119066", + "1483119090", + "1483116491", + "1", + "8", + "0", + "-1", + "24", + "2575", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986436", + "986436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116491", + "1483119070", + "1483119092", + "1483116491", + "1", + "8", + "0", + "-1", + "22", + "2579", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986439", + "986439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116492", + "1483119088", + "1483119108", + "1483116492", + "1", + "8", + "0", + "-1", + "20", + "2596", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986441", + "986441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116492", + "1483119091", + "1483119107", + "1483116492", + "1", + "8", + "0", + "-1", + "16", + "2599", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986444", + "986444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116493", + "1483119092", + "1483119111", + "1483116493", + "1", + "8", + "0", + "-1", + "19", + "2599", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986457", + "986457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116495", + "1483119108", + "1483119136", + "1483116495", + "1", + "8", + "0", + "-1", + "28", + "2613", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986459", + "986459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116495", + "1483119111", + "1483119133", + "1483116495", + "1", + "8", + "0", + "-1", + "22", + "2616", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986462", + "986462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116496", + "1483119119", + "1483119141", + "1483116496", + "1", + "8", + "0", + "-1", + "22", + "2623", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986464", + "986464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116496", + "1483119129", + "1483119146", + "1483116496", + "1", + "8", + "0", + "-1", + "17", + "2633", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986467", + "986467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116496", + "1483119134", + "1483119161", + "1483116496", + "1", + "8", + "0", + "-1", + "27", + "2638", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986469", + "986469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116497", + "1483119134", + "1483119163", + "1483116497", + "1", + "8", + "0", + "-1", + "29", + "2637", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986472", + "986472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116497", + "1483119136", + "1483119159", + "1483116497", + "1", + "8", + "0", + "-1", + "23", + "2639", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986475", + "986475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116498", + "1483119141", + "1483119164", + "1483116498", + "1", + "8", + "0", + "-1", + "23", + "2643", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986477", + "986477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116498", + "1483119146", + "1483119166", + "1483116498", + "1", + "8", + "0", + "-1", + "20", + "2648", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986480", + "986480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116498", + "1483119153", + "1483119169", + "1483116498", + "1", + "8", + "0", + "-1", + "16", + "2655", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986482", + "986482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116499", + "1483119159", + "1483119178", + "1483116499", + "1", + "8", + "0", + "-1", + "19", + "2660", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986498", + "986498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116501", + "1483119179", + "1483119199", + "1483116501", + "1", + "8", + "0", + "-1", + "20", + "2678", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986500", + "986500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116502", + "1483119197", + "1483119218", + "1483116502", + "1", + "8", + "0", + "-1", + "21", + "2695", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986503", + "986503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116502", + "1483119197", + "1483119211", + "1483116502", + "1", + "8", + "0", + "-1", + "14", + "2695", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986505", + "986505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116502", + "1483119199", + "1483119226", + "1483116502", + "1", + "8", + "0", + "-1", + "27", + "2697", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986508", + "986508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116503", + "1483119199", + "1483119225", + "1483116503", + "1", + "8", + "0", + "-1", + "26", + "2696", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986511", + "986511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116504", + "1483119201", + "1483119230", + "1483116504", + "1", + "8", + "0", + "-1", + "29", + "2697", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986513", + "986513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116504", + "1483119209", + "1483119227", + "1483116504", + "1", + "8", + "0", + "-1", + "18", + "2705", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986516", + "986516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116504", + "1483119211", + "1483119226", + "1483116504", + "1", + "8", + "0", + "-1", + "15", + "2707", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986518", + "986518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116505", + "1483119218", + "1483119233", + "1483116505", + "1", + "8", + "0", + "-1", + "15", + "2713", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986521", + "986521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116505", + "1483119225", + "1483119249", + "1483116505", + "1", + "8", + "0", + "-1", + "24", + "2720", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986525", + "986525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116506", + "1483119226", + "1483119252", + "1483116506", + "1", + "8", + "0", + "-1", + "26", + "2720", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986528", + "986528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116506", + "1483119227", + "1483119255", + "1483116506", + "1", + "8", + "0", + "-1", + "28", + "2721", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986535", + "986535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116507", + "1483119249", + "1483119268", + "1483116507", + "1", + "8", + "0", + "-1", + "19", + "2742", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986540", + "986540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116508", + "1483119256", + "1483119272", + "1483116508", + "1", + "8", + "0", + "-1", + "16", + "2748", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986542", + "986542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116508", + "1483119267", + "1483119282", + "1483116508", + "1", + "8", + "0", + "-1", + "15", + "2759", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986553", + "986553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116510", + "1483119271", + "1483119289", + "1483116510", + "1", + "8", + "0", + "-1", + "18", + "2761", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986556", + "986556", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116511", + "1483119272", + "1483119289", + "1483116511", + "1", + "8", + "0", + "-1", + "17", + "2761", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986559", + "986559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116511", + "1483119282", + "1483119307", + "1483116511", + "1", + "8", + "0", + "-1", + "25", + "2771", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986561", + "986561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116511", + "1483119286", + "1483119315", + "1483116511", + "1", + "8", + "0", + "-1", + "29", + "2775", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986571", + "986571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116513", + "1483119308", + "1483119330", + "1483116513", + "1", + "8", + "0", + "-1", + "22", + "2795", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986577", + "986577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116514", + "1483119316", + "1483119338", + "1483116514", + "1", + "8", + "0", + "-1", + "22", + "2802", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986582", + "986582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116515", + "1483119329", + "1483119356", + "1483116515", + "1", + "8", + "0", + "-1", + "27", + "2814", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986587", + "986587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116516", + "1483119339", + "1483119365", + "1483116516", + "1", + "8", + "0", + "-1", + "26", + "2823", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986589", + "986589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116516", + "1483119344", + "1483119364", + "1483116516", + "1", + "8", + "0", + "-1", + "20", + "2828", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986592", + "986592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116517", + "1483119345", + "1483119366", + "1483116517", + "1", + "8", + "0", + "-1", + "21", + "2828", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986595", + "986595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116517", + "1483119356", + "1483119378", + "1483116517", + "1", + "8", + "0", + "-1", + "22", + "2839", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986597", + "986597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116517", + "1483119359", + "1483119387", + "1483116517", + "1", + "8", + "0", + "-1", + "28", + "2842", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986610", + "986610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116519", + "1483119367", + "1483119394", + "1483116519", + "1", + "8", + "0", + "-1", + "27", + "2848", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986646", + "986646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116525", + "1483119460", + "1483119488", + "1483116525", + "1", + "8", + "0", + "-1", + "28", + "2935", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986659", + "986659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116528", + "1483119489", + "1483119518", + "1483116528", + "1", + "8", + "0", + "-1", + "29", + "2961", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986664", + "986664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116528", + "1483119500", + "1483119526", + "1483116528", + "1", + "8", + "0", + "-1", + "26", + "2972", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986669", + "986669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116529", + "1483119507", + "1483119532", + "1483116529", + "1", + "8", + "0", + "-1", + "25", + "2978", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986684", + "986684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116532", + "1483119565", + "1483119592", + "1483116532", + "1", + "8", + "0", + "-1", + "27", + "3033", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986687", + "986687", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116532", + "1483119565", + "1483119594", + "1483116532", + "1", + "8", + "0", + "-1", + "29", + "3033", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986692", + "986692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116533", + "1483119578", + "1483119601", + "1483116533", + "1", + "8", + "0", + "-1", + "23", + "3045", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986702", + "986702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116535", + "1483119602", + "1483119630", + "1483116535", + "1", + "8", + "0", + "-1", + "28", + "3067", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986707", + "986707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116535", + "1483119608", + "1483119631", + "1483116535", + "1", + "8", + "0", + "-1", + "23", + "3073", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986839", + "986839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116557", + "1483120079", + "1483120108", + "1483116557", + "1", + "8", + "0", + "-1", + "29", + "3522", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986843", + "986843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116558", + "1483120099", + "1483120126", + "1483116558", + "1", + "8", + "0", + "-1", + "27", + "3541", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986859", + "986859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116560", + "1483120134", + "1483120160", + "1483116560", + "1", + "8", + "0", + "-1", + "26", + "3574", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177000", + "177000", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116405", + "1483118831", + "1483118856", + "1483116405", + "1", + "8", + "0", + "-1", + "25", + "2426", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177004", + "177004", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116405", + "1483118857", + "1483118885", + "1483116405", + "1", + "8", + "0", + "-1", + "28", + "2452", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177008", + "177008", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116406", + "1483118886", + "1483118913", + "1483116406", + "1", + "8", + "0", + "-1", + "27", + "2480", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177011", + "177011", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116407", + "1483118913", + "1483118939", + "1483116407", + "1", + "8", + "0", + "-1", + "26", + "2506", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177015", + "177015", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116408", + "1483118940", + "1483118964", + "1483116408", + "1", + "8", + "0", + "-1", + "24", + "2532", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177035", + "177035", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116412", + "1483119136", + "1483119158", + "1483116412", + "1", + "8", + "0", + "-1", + "22", + "2724", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177039", + "177039", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116412", + "1483119159", + "1483119186", + "1483116412", + "1", + "8", + "0", + "-1", + "27", + "2747", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177046", + "177046", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116414", + "1483119230", + "1483119247", + "1483116414", + "1", + "8", + "0", + "-1", + "17", + "2816", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177050", + "177050", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116414", + "1483119248", + "1483119273", + "1483116414", + "1", + "8", + "0", + "-1", + "25", + "2834", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177082", + "177082", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116420", + "1483119613", + "1483119640", + "1483116420", + "1", + "8", + "0", + "-1", + "27", + "3193", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177093", + "177093", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116423", + "1483119783", + "1483119797", + "1483116423", + "1", + "8", + "0", + "-1", + "14", + "3360", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177097", + "177097", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116423", + "1483119798", + "1483119811", + "1483116423", + "1", + "8", + "0", + "-1", + "13", + "3375", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177101", + "177101", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116424", + "1483119811", + "1483119826", + "1483116424", + "1", + "8", + "0", + "-1", + "15", + "3387", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177105", + "177105", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116425", + "1483119826", + "1483119844", + "1483116425", + "1", + "8", + "0", + "-1", + "18", + "3401", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177108", + "177108", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116425", + "1483119844", + "1483119858", + "1483116425", + "1", + "8", + "0", + "-1", + "14", + "3419", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177112", + "177112", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116426", + "1483119858", + "1483119871", + "1483116426", + "1", + "8", + "0", + "-1", + "13", + "3432", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177116", + "177116", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116427", + "1483119872", + "1483119893", + "1483116427", + "1", + "8", + "0", + "-1", + "21", + "3445", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177124", + "177124", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116428", + "1483119935", + "1483119949", + "1483116428", + "1", + "8", + "0", + "-1", + "14", + "3507", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177128", + "177128", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116429", + "1483119950", + "1483119963", + "1483116429", + "1", + "8", + "0", + "-1", + "13", + "3521", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177132", + "177132", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116430", + "1483119963", + "1483119979", + "1483116430", + "1", + "8", + "0", + "-1", + "16", + "3533", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177136", + "177136", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116431", + "1483119979", + "1483119998", + "1483116431", + "1", + "8", + "0", + "-1", + "19", + "3548", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177140", + "177140", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116431", + "1483119998", + "1483120016", + "1483116431", + "1", + "8", + "0", + "-1", + "18", + "3567", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177143", + "177143", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116432", + "1483120016", + "1483120030", + "1483116432", + "1", + "8", + "0", + "-1", + "14", + "3584", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177147", + "177147", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116433", + "1483120030", + "1483120048", + "1483116433", + "1", + "8", + "0", + "-1", + "18", + "3597", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6108545", + "6108545", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483064269", + "1483080379", + "1483080389", + "1483064269", + "1", + "1", + "0", + "-1", + "10", + "16110", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "125Gn", + "86400", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6111037[521]", + "6111598", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483129882", + "1483129901", + "1483125913", + "1", + "1", + "0", + "-1", + "19", + "3970", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[550]", + "6111627", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483130147", + "1483130170", + "1483125913", + "1", + "1", + "0", + "-1", + "23", + "4235", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[556]", + "6111633", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483130147", + "1483130169", + "1483125913", + "1", + "1", + "0", + "-1", + "22", + "4235", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[557]", + "6111634", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483130147", + "1483130157", + "1483125913", + "1", + "1", + "0", + "-1", + "10", + "4235", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[559]", + "6111636", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483130279", + "1483130296", + "1483125913", + "1", + "1", + "0", + "-1", + "17", + "4367", + "17", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[268]", + "6111973", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132272", + "1483132285", + "1483128563", + "1", + "1", + "0", + "-1", + "13", + "3712", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[281]", + "6111986", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132272", + "1483132297", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "3712", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[286]", + "6111992", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132410", + "1483132437", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "3850", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[291]", + "6111997", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132410", + "1483132436", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "3850", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[292]", + "6111998", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132410", + "1483132437", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "3850", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[293]", + "6111999", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132410", + "1483132436", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "3850", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[310]", + "6112016", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132547", + "1483132563", + "1483128563", + "1", + "1", + "0", + "-1", + "16", + "3987", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[311]", + "6112017", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132547", + "1483132576", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "3987", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[319]", + "6112028", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132681", + "1483132708", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "4121", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[321]", + "6112030", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132681", + "1483132710", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "4121", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[325]", + "6112034", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132681", + "1483132688", + "1483128563", + "1", + "1", + "0", + "-1", + "7", + "4121", + "7", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[326]", + "6112035", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132681", + "1483132705", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "4121", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[331]", + "6112040", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132681", + "1483132710", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "4121", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[336]", + "6112050", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132814", + "1483132839", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "4254", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[355]", + "6112069", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132949", + "1483132973", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "4389", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[356]", + "6112070", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132949", + "1483132974", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "4389", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[365]", + "6112079", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132949", + "1483132964", + "1483128563", + "1", + "1", + "0", + "-1", + "15", + "4389", + "15", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[388]", + "6112102", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133083", + "1483133104", + "1483128563", + "1", + "1", + "0", + "-1", + "21", + "4523", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[395]", + "6112109", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133218", + "1483133234", + "1483128563", + "1", + "1", + "0", + "-1", + "16", + "4658", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[414]", + "6112128", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133352", + "1483133380", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "4792", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[415]", + "6112129", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133352", + "1483133378", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "4792", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[425]", + "6112139", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133352", + "1483133364", + "1483128563", + "1", + "1", + "0", + "-1", + "12", + "4792", + "12", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[431]", + "6112145", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133483", + "1483133498", + "1483128563", + "1", + "1", + "0", + "-1", + "15", + "4923", + "15", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[436]", + "6112150", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133483", + "1483133507", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "4923", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[437]", + "6112151", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133483", + "1483133509", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "4923", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[440]", + "6112154", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133483", + "1483133508", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "4923", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[441]", + "6112155", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133483", + "1483133505", + "1483128563", + "1", + "1", + "0", + "-1", + "22", + "4923", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[450]", + "6112164", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133616", + "1483133643", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "5056", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[453]", + "6112167", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133616", + "1483133643", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "5056", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[460]", + "6112174", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133616", + "1483133639", + "1483128563", + "1", + "1", + "0", + "-1", + "23", + "5056", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[469]", + "6112184", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133748", + "1483133777", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "5188", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[470]", + "6112185", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133748", + "1483133770", + "1483128563", + "1", + "1", + "0", + "-1", + "22", + "5188", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[477]", + "6112192", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133748", + "1483133776", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "5188", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[482]", + "6112197", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133882", + "1483133907", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "5322", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[483]", + "6112198", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133882", + "1483133906", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "5322", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[514]", + "6112229", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134016", + "1483134042", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "5456", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[521]", + "6112237", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134160", + "1483128563", + "1", + "1", + "0", + "-1", + "16", + "5584", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[526]", + "6112242", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134169", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "5584", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[527]", + "6112243", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134168", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "5584", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[528]", + "6112244", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134165", + "1483128563", + "1", + "1", + "0", + "-1", + "21", + "5584", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[533]", + "6112249", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134170", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "5584", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[538]", + "6112254", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134168", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "5584", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[547]", + "6112263", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134282", + "1483134311", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "5722", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[550]", + "6112266", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134282", + "1483134299", + "1483128563", + "1", + "1", + "0", + "-1", + "17", + "5722", + "17", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[555]", + "6112271", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134282", + "1483134308", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "5722", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[556]", + "6112272", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134282", + "1483134290", + "1483128563", + "1", + "1", + "0", + "-1", + "8", + "5722", + "8", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[558]", + "6112274", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134408", + "1483134415", + "1483128563", + "1", + "1", + "0", + "-1", + "7", + "5848", + "7", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[336]", + "6112626", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139250", + "1483139275", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "3602", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[341]", + "6112631", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139250", + "1483139279", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "3602", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[355]", + "6112645", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139383", + "1483139409", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "3735", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[356]", + "6112646", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139383", + "1483139409", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "3735", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[365]", + "6112655", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139383", + "1483139395", + "1483135648", + "1", + "1", + "0", + "-1", + "12", + "3735", + "12", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[379]", + "6112669", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139509", + "1483139538", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "3861", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[388]", + "6112678", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139509", + "1483139527", + "1483135648", + "1", + "1", + "0", + "-1", + "18", + "3861", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[395]", + "6112685", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139645", + "1483139663", + "1483135648", + "1", + "1", + "0", + "-1", + "18", + "3997", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[414]", + "6112704", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139776", + "1483139802", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "4128", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[415]", + "6112705", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139776", + "1483139800", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "4128", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[425]", + "6112715", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139777", + "1483139793", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "4129", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[431]", + "6112721", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139927", + "1483135648", + "1", + "1", + "0", + "-1", + "14", + "4265", + "14", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[435]", + "6112725", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139940", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "4265", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[436]", + "6112726", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139937", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "4265", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[437]", + "6112727", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139939", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "4265", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[440]", + "6112730", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139939", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "4265", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[441]", + "6112731", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139937", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "4265", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[447]", + "6112737", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139940", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "4265", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[450]", + "6112741", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140044", + "1483140071", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "4396", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[453]", + "6112744", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140044", + "1483140072", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "4396", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[460]", + "6112751", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140044", + "1483140056", + "1483135648", + "1", + "1", + "0", + "-1", + "12", + "4396", + "12", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[470]", + "6112763", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140171", + "1483140196", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "4523", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[482]", + "6112775", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140171", + "1483140196", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "4523", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[483]", + "6112776", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140171", + "1483140196", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "4523", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[508]", + "6112802", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140441", + "1483140470", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "4793", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[511]", + "6112805", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140441", + "1483140470", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "4793", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[514]", + "6112808", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140441", + "1483140470", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "4793", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[521]", + "6112815", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140441", + "1483140451", + "1483135648", + "1", + "1", + "0", + "-1", + "10", + "4793", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[526]", + "6112820", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140572", + "1483140598", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "4924", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[527]", + "6112821", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140572", + "1483140596", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "4924", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[528]", + "6112822", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140572", + "1483140588", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "4924", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[538]", + "6112832", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140572", + "1483140596", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "4924", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[546]", + "6112840", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140727", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "5052", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[547]", + "6112841", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140726", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "5052", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[550]", + "6112844", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140711", + "1483135648", + "1", + "1", + "0", + "-1", + "11", + "5052", + "11", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[555]", + "6112849", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140726", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "5052", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[556]", + "6112850", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140719", + "1483135648", + "1", + "1", + "0", + "-1", + "19", + "5052", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[558]", + "6112852", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140709", + "1483135648", + "1", + "1", + "0", + "-1", + "9", + "5052", + "9", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "986877", + "986877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116563", + "1483120174", + "1483120203", + "1483116563", + "1", + "8", + "0", + "-1", + "29", + "3611", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986895", + "986895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116566", + "1483120223", + "1483120246", + "1483116566", + "1", + "8", + "0", + "-1", + "23", + "3657", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986917", + "986917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116569", + "1483120303", + "1483120329", + "1483116569", + "1", + "8", + "0", + "-1", + "26", + "3734", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986930", + "986930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116572", + "1483120332", + "1483120356", + "1483116572", + "1", + "8", + "0", + "-1", + "24", + "3760", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986933", + "986933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116572", + "1483120342", + "1483120362", + "1483116572", + "1", + "8", + "0", + "-1", + "20", + "3770", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986956", + "986956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116576", + "1483120418", + "1483120442", + "1483116576", + "1", + "8", + "0", + "-1", + "24", + "3842", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986958", + "986958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116576", + "1483120436", + "1483120457", + "1483116576", + "1", + "8", + "0", + "-1", + "21", + "3860", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986970", + "986970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116578", + "1483120454", + "1483120481", + "1483116578", + "1", + "8", + "0", + "-1", + "27", + "3876", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986990", + "986990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116582", + "1483120536", + "1483120564", + "1483116582", + "1", + "8", + "0", + "-1", + "28", + "3954", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986993", + "986993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116582", + "1483120540", + "1483120567", + "1483116582", + "1", + "8", + "0", + "-1", + "27", + "3958", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986995", + "986995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116582", + "1483120543", + "1483120565", + "1483116582", + "1", + "8", + "0", + "-1", + "22", + "3961", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986998", + "986998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116583", + "1483120552", + "1483120581", + "1483116583", + "1", + "8", + "0", + "-1", + "29", + "3969", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987000", + "987000", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116583", + "1483120564", + "1483120593", + "1483116583", + "1", + "8", + "0", + "-1", + "29", + "3981", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987003", + "987003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116584", + "1483120565", + "1483120592", + "1483116584", + "1", + "8", + "0", + "-1", + "27", + "3981", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987006", + "987006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116584", + "1483120567", + "1483120592", + "1483116584", + "1", + "8", + "0", + "-1", + "25", + "3983", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987029", + "987029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116588", + "1483120640", + "1483120667", + "1483116588", + "1", + "8", + "0", + "-1", + "27", + "4052", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987031", + "987031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116588", + "1483120642", + "1483120662", + "1483116588", + "1", + "8", + "0", + "-1", + "20", + "4054", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987039", + "987039", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116590", + "1483120662", + "1483120688", + "1483116590", + "1", + "8", + "0", + "-1", + "26", + "4072", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987047", + "987047", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116591", + "1483120682", + "1483120704", + "1483116591", + "1", + "8", + "0", + "-1", + "22", + "4091", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987065", + "987065", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116594", + "1483120730", + "1483120750", + "1483116594", + "1", + "8", + "0", + "-1", + "20", + "4136", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987070", + "987070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116595", + "1483120741", + "1483120765", + "1483116595", + "1", + "8", + "0", + "-1", + "24", + "4146", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987082", + "987082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116597", + "1483120766", + "1483120785", + "1483116597", + "1", + "8", + "0", + "-1", + "19", + "4169", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987117", + "987117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116602", + "1483120858", + "1483120887", + "1483116602", + "1", + "8", + "0", + "-1", + "29", + "4256", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987122", + "987122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116603", + "1483120868", + "1483120890", + "1483116603", + "1", + "8", + "0", + "-1", + "22", + "4265", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987144", + "987144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116607", + "1483120952", + "1483120981", + "1483116607", + "1", + "8", + "0", + "-1", + "29", + "4345", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987157", + "987157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116609", + "1483120969", + "1483120993", + "1483116609", + "1", + "8", + "0", + "-1", + "24", + "4360", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987160", + "987160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116610", + "1483120982", + "1483121004", + "1483116610", + "1", + "8", + "0", + "-1", + "22", + "4372", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987192", + "987192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116615", + "1483121075", + "1483121100", + "1483116615", + "1", + "8", + "0", + "-1", + "25", + "4460", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987222", + "987222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116620", + "1483121174", + "1483121202", + "1483116620", + "1", + "8", + "0", + "-1", + "28", + "4554", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987235", + "987235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116622", + "1483121203", + "1483121232", + "1483116622", + "1", + "8", + "0", + "-1", + "29", + "4581", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987267", + "987267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116627", + "1483121318", + "1483121347", + "1483116627", + "1", + "8", + "0", + "-1", + "29", + "4691", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987295", + "987295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116632", + "1483121398", + "1483121424", + "1483116632", + "1", + "8", + "0", + "-1", + "26", + "4766", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987300", + "987300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116632", + "1483121413", + "1483121440", + "1483116632", + "1", + "8", + "0", + "-1", + "27", + "4781", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987303", + "987303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116633", + "1483121424", + "1483121453", + "1483116633", + "1", + "8", + "0", + "-1", + "29", + "4791", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987305", + "987305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116633", + "1483121433", + "1483121461", + "1483116633", + "1", + "8", + "0", + "-1", + "28", + "4800", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987308", + "987308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116634", + "1483121441", + "1483121470", + "1483116634", + "1", + "8", + "0", + "-1", + "29", + "4807", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987310", + "987310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116634", + "1483121446", + "1483121469", + "1483116634", + "1", + "8", + "0", + "-1", + "23", + "4812", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987329", + "987329", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116637", + "1483121488", + "1483121517", + "1483116637", + "1", + "8", + "0", + "-1", + "29", + "4851", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987340", + "987340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116639", + "1483121509", + "1483121538", + "1483116639", + "1", + "8", + "0", + "-1", + "29", + "4870", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987347", + "987347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116640", + "1483121521", + "1483121543", + "1483116640", + "1", + "8", + "0", + "-1", + "22", + "4881", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987368", + "987368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116644", + "1483121581", + "1483121608", + "1483116644", + "1", + "8", + "0", + "-1", + "27", + "4937", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987371", + "987371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116644", + "1483121585", + "1483121605", + "1483116644", + "1", + "8", + "0", + "-1", + "20", + "4941", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987373", + "987373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116645", + "1483121595", + "1483121619", + "1483116645", + "1", + "8", + "0", + "-1", + "24", + "4950", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987381", + "987381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116646", + "1483121608", + "1483121634", + "1483116646", + "1", + "8", + "0", + "-1", + "26", + "4962", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987383", + "987383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116646", + "1483121619", + "1483121647", + "1483116646", + "1", + "8", + "0", + "-1", + "28", + "4973", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987386", + "987386", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116647", + "1483121629", + "1483121651", + "1483116647", + "1", + "8", + "0", + "-1", + "22", + "4982", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987389", + "987389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116647", + "1483121631", + "1483121656", + "1483116647", + "1", + "8", + "0", + "-1", + "25", + "4984", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987403", + "987403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116650", + "1483121670", + "1483121697", + "1483116650", + "1", + "8", + "0", + "-1", + "27", + "5020", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987405", + "987405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116650", + "1483121677", + "1483121704", + "1483116650", + "1", + "8", + "0", + "-1", + "27", + "5027", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987418", + "987418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116652", + "1483121698", + "1483121723", + "1483116652", + "1", + "8", + "0", + "-1", + "25", + "5046", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987420", + "987420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116652", + "1483121704", + "1483121733", + "1483116652", + "1", + "8", + "0", + "-1", + "29", + "5052", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987428", + "987428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116654", + "1483121723", + "1483121741", + "1483116654", + "1", + "8", + "0", + "-1", + "18", + "5069", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987441", + "987441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116656", + "1483121754", + "1483121781", + "1483116656", + "1", + "8", + "0", + "-1", + "27", + "5098", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987447", + "987447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116657", + "1483121761", + "1483121783", + "1483116657", + "1", + "8", + "0", + "-1", + "22", + "5104", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987459", + "987459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116659", + "1483121784", + "1483121812", + "1483116659", + "1", + "8", + "0", + "-1", + "28", + "5125", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987464", + "987464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116660", + "1483121787", + "1483121816", + "1483116660", + "1", + "8", + "0", + "-1", + "29", + "5127", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987487", + "987487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116664", + "1483121817", + "1483121844", + "1483116664", + "1", + "8", + "0", + "-1", + "27", + "5153", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987489", + "987489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116664", + "1483121830", + "1483121859", + "1483116664", + "1", + "8", + "0", + "-1", + "29", + "5166", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987499", + "987499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116665", + "1483121860", + "1483121886", + "1483116665", + "1", + "8", + "0", + "-1", + "26", + "5195", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987504", + "987504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116666", + "1483121875", + "1483121902", + "1483116666", + "1", + "8", + "0", + "-1", + "27", + "5209", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987542", + "987542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116673", + "1483121989", + "1483122018", + "1483116673", + "1", + "8", + "0", + "-1", + "29", + "5316", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987576", + "987576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116678", + "1483122070", + "1483122097", + "1483116678", + "1", + "8", + "0", + "-1", + "27", + "5392", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987718", + "987718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116738", + "1483122611", + "1483122635", + "1483116738", + "1", + "8", + "0", + "-1", + "24", + "5873", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987736", + "987736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116801", + "1483122675", + "1483122702", + "1483116801", + "1", + "8", + "0", + "-1", + "27", + "5874", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987754", + "987754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116878", + "1483122743", + "1483122763", + "1483116878", + "1", + "8", + "0", + "-1", + "20", + "5865", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987768", + "987768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116922", + "1483122793", + "1483122813", + "1483116922", + "1", + "8", + "0", + "-1", + "20", + "5871", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987774", + "987774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116938", + "1483122813", + "1483122837", + "1483116938", + "1", + "8", + "0", + "-1", + "24", + "5875", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987778", + "987778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116943", + "1483122837", + "1483122865", + "1483116943", + "1", + "8", + "0", + "-1", + "28", + "5894", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987780", + "987780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116945", + "1483122847", + "1483122876", + "1483116945", + "1", + "8", + "0", + "-1", + "29", + "5902", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987804", + "987804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117026", + "1483122892", + "1483122911", + "1483117026", + "1", + "8", + "0", + "-1", + "19", + "5866", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987806", + "987806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117030", + "1483122902", + "1483122923", + "1483117030", + "1", + "8", + "0", + "-1", + "21", + "5872", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987810", + "987810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117034", + "1483122912", + "1483122940", + "1483117034", + "1", + "8", + "0", + "-1", + "28", + "5878", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987812", + "987812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117036", + "1483122921", + "1483122942", + "1483117036", + "1", + "8", + "0", + "-1", + "21", + "5885", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987820", + "987820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117065", + "1483122940", + "1483122961", + "1483117065", + "1", + "8", + "0", + "-1", + "21", + "5875", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987824", + "987824", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117073", + "1483122956", + "1483122980", + "1483117073", + "1", + "8", + "0", + "-1", + "24", + "5883", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987828", + "987828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117081", + "1483122962", + "1483122981", + "1483117081", + "1", + "8", + "0", + "-1", + "19", + "5881", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987830", + "987830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117090", + "1483122975", + "1483122994", + "1483117090", + "1", + "8", + "0", + "-1", + "19", + "5885", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987832", + "987832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117091", + "1483122976", + "1483122990", + "1483117091", + "1", + "8", + "0", + "-1", + "14", + "5885", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987840", + "987840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117099", + "1483122991", + "1483123009", + "1483117099", + "1", + "8", + "0", + "-1", + "18", + "5892", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987842", + "987842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117118", + "1483122995", + "1483123015", + "1483117118", + "1", + "8", + "0", + "-1", + "20", + "5877", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987844", + "987844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117118", + "1483122996", + "1483123015", + "1483117118", + "1", + "8", + "0", + "-1", + "19", + "5878", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987852", + "987852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117142", + "1483123020", + "1483123046", + "1483117142", + "1", + "8", + "0", + "-1", + "26", + "5878", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987856", + "987856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117145", + "1483123043", + "1483123062", + "1483117145", + "1", + "8", + "0", + "-1", + "19", + "5898", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987858", + "987858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117147", + "1483123046", + "1483123070", + "1483117147", + "1", + "8", + "0", + "-1", + "24", + "5899", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987860", + "987860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117148", + "1483123051", + "1483123068", + "1483117148", + "1", + "8", + "0", + "-1", + "17", + "5903", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987864", + "987864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117154", + "1483123063", + "1483123081", + "1483117154", + "1", + "8", + "0", + "-1", + "18", + "5909", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987872", + "987872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117178", + "1483123071", + "1483123098", + "1483117178", + "1", + "8", + "0", + "-1", + "27", + "5893", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987902", + "987902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117240", + "1483123178", + "1483123202", + "1483117240", + "1", + "8", + "0", + "-1", + "24", + "5938", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987916", + "987916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117288", + "1483123213", + "1483123231", + "1483117288", + "1", + "8", + "0", + "-1", + "18", + "5925", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987918", + "987918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117289", + "1483123229", + "1483123254", + "1483117289", + "1", + "8", + "0", + "-1", + "25", + "5940", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987920", + "987920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117301", + "1483123232", + "1483123260", + "1483117301", + "1", + "8", + "0", + "-1", + "28", + "5931", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987936", + "987936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117376", + "1483123310", + "1483123336", + "1483117376", + "1", + "8", + "0", + "-1", + "26", + "5934", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987938", + "987938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117381", + "1483123311", + "1483123335", + "1483117381", + "1", + "8", + "0", + "-1", + "24", + "5930", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987954", + "987954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117447", + "1483123372", + "1483123400", + "1483117447", + "1", + "8", + "0", + "-1", + "28", + "5925", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987966", + "987966", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117514", + "1483123399", + "1483123421", + "1483117514", + "1", + "8", + "0", + "-1", + "22", + "5885", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987968", + "987968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117523", + "1483123400", + "1483123415", + "1483117523", + "1", + "8", + "0", + "-1", + "15", + "5877", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987972", + "987972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117530", + "1483123416", + "1483123437", + "1483117530", + "1", + "8", + "0", + "-1", + "21", + "5886", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987980", + "987980", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117585", + "1483123438", + "1483123458", + "1483117585", + "1", + "8", + "0", + "-1", + "20", + "5853", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987982", + "987982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117585", + "1483123439", + "1483123459", + "1483117585", + "1", + "8", + "0", + "-1", + "20", + "5854", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987994", + "987994", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117657", + "1483123493", + "1483123517", + "1483117657", + "1", + "8", + "0", + "-1", + "24", + "5836", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988002", + "988002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117749", + "1483123503", + "1483123528", + "1483117749", + "1", + "8", + "0", + "-1", + "25", + "5754", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988006", + "988006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117769", + "1483123518", + "1483123544", + "1483117769", + "1", + "8", + "0", + "-1", + "26", + "5749", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988008", + "988008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117785", + "1483123529", + "1483123554", + "1483117785", + "1", + "8", + "0", + "-1", + "25", + "5744", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988020", + "988020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117880", + "1483123562", + "1483123584", + "1483117880", + "1", + "8", + "0", + "-1", + "22", + "5682", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988030", + "988030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117935", + "1483123599", + "1483123620", + "1483117935", + "1", + "8", + "0", + "-1", + "21", + "5664", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988036", + "988036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117942", + "1483123619", + "1483123645", + "1483117942", + "1", + "8", + "0", + "-1", + "26", + "5677", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988038", + "988038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117943", + "1483123621", + "1483123644", + "1483117943", + "1", + "8", + "0", + "-1", + "23", + "5678", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988050", + "988050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118023", + "1483123645", + "1483123661", + "1483118023", + "1", + "8", + "0", + "-1", + "16", + "5622", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988060", + "988060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118067", + "1483123674", + "1483123701", + "1483118067", + "1", + "8", + "0", + "-1", + "27", + "5607", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988062", + "988062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118071", + "1483123681", + "1483123704", + "1483118071", + "1", + "8", + "0", + "-1", + "23", + "5610", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988064", + "988064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118076", + "1483123683", + "1483123707", + "1483118076", + "1", + "8", + "0", + "-1", + "24", + "5607", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988088", + "988088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118155", + "1483123770", + "1483123796", + "1483118155", + "1", + "8", + "0", + "-1", + "26", + "5615", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988098", + "988098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118178", + "1483123820", + "1483123845", + "1483118178", + "1", + "8", + "0", + "-1", + "25", + "5642", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988114", + "988114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118227", + "1483123886", + "1483123914", + "1483118227", + "1", + "8", + "0", + "-1", + "28", + "5659", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988116", + "988116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118233", + "1483123891", + "1483123920", + "1483118233", + "1", + "8", + "0", + "-1", + "29", + "5658", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988166", + "988166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118356", + "1483124048", + "1483124072", + "1483118356", + "1", + "8", + "0", + "-1", + "24", + "5692", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988178", + "988178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118375", + "1483124080", + "1483124099", + "1483118375", + "1", + "8", + "0", + "-1", + "19", + "5705", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988202", + "988202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118436", + "1483124169", + "1483124189", + "1483118436", + "1", + "8", + "0", + "-1", + "20", + "5733", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988204", + "988204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118436", + "1483124170", + "1483124191", + "1483118436", + "1", + "8", + "0", + "-1", + "21", + "5734", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988258", + "988258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118564", + "1483124399", + "1483124425", + "1483118564", + "1", + "8", + "0", + "-1", + "26", + "5835", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988264", + "988264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118578", + "1483124421", + "1483124448", + "1483118578", + "1", + "8", + "0", + "-1", + "27", + "5843", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988302", + "988302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118652", + "1483124559", + "1483124587", + "1483118652", + "1", + "8", + "0", + "-1", + "28", + "5907", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988320", + "988320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118705", + "1483124632", + "1483124655", + "1483118705", + "1", + "8", + "0", + "-1", + "23", + "5927", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988330", + "988330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118720", + "1483124655", + "1483124676", + "1483118720", + "1", + "8", + "0", + "-1", + "21", + "5935", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988334", + "988334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118728", + "1483124665", + "1483124686", + "1483118728", + "1", + "8", + "0", + "-1", + "21", + "5937", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988338", + "988338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118734", + "1483124677", + "1483124697", + "1483118734", + "1", + "8", + "0", + "-1", + "20", + "5943", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988344", + "988344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118751", + "1483124697", + "1483124726", + "1483118751", + "1", + "8", + "0", + "-1", + "29", + "5946", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988350", + "988350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118769", + "1483124713", + "1483124732", + "1483118769", + "1", + "8", + "0", + "-1", + "19", + "5944", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988358", + "988358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118782", + "1483124728", + "1483124757", + "1483118782", + "1", + "8", + "0", + "-1", + "29", + "5946", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988368", + "988368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118804", + "1483124758", + "1483124778", + "1483118804", + "1", + "8", + "0", + "-1", + "20", + "5954", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988378", + "988378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118821", + "1483124787", + "1483124812", + "1483118821", + "1", + "8", + "0", + "-1", + "25", + "5966", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988396", + "988396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118883", + "1483124840", + "1483124862", + "1483118883", + "1", + "8", + "0", + "-1", + "22", + "5957", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988398", + "988398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118884", + "1483124847", + "1483124866", + "1483118884", + "1", + "8", + "0", + "-1", + "19", + "5963", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988416", + "988416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118935", + "1483124894", + "1483124913", + "1483118935", + "1", + "8", + "0", + "-1", + "19", + "5959", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988418", + "988418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118942", + "1483124898", + "1483124919", + "1483118942", + "1", + "8", + "0", + "-1", + "21", + "5956", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988430", + "988430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119001", + "1483124953", + "1483124973", + "1483119001", + "1", + "8", + "0", + "-1", + "20", + "5952", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988432", + "988432", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119002", + "1483124953", + "1483124970", + "1483119002", + "1", + "8", + "0", + "-1", + "17", + "5951", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988436", + "988436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119023", + "1483124970", + "1483124996", + "1483119023", + "1", + "8", + "0", + "-1", + "26", + "5947", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988438", + "988438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119027", + "1483124974", + "1483124990", + "1483119027", + "1", + "8", + "0", + "-1", + "16", + "5947", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988450", + "988450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119070", + "1483124997", + "1483125014", + "1483119070", + "1", + "8", + "0", + "-1", + "17", + "5927", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988452", + "988452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119088", + "1483124997", + "1483125019", + "1483119088", + "1", + "8", + "0", + "-1", + "22", + "5909", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988454", + "988454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119090", + "1483125015", + "1483125042", + "1483119090", + "1", + "8", + "0", + "-1", + "27", + "5925", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988456", + "988456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119092", + "1483125020", + "1483125047", + "1483119092", + "1", + "8", + "0", + "-1", + "27", + "5928", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988484", + "988484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119152", + "1483125124", + "1483125148", + "1483119152", + "1", + "8", + "0", + "-1", + "24", + "5972", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988486", + "988486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119159", + "1483125143", + "1483125171", + "1483119159", + "1", + "8", + "0", + "-1", + "28", + "5984", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988496", + "988496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119169", + "1483125163", + "1483125190", + "1483119169", + "1", + "8", + "0", + "-1", + "27", + "5994", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988514", + "988514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119218", + "1483125240", + "1483125260", + "1483119218", + "1", + "8", + "0", + "-1", + "20", + "6022", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988516", + "988516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119225", + "1483125251", + "1483125277", + "1483119225", + "1", + "8", + "0", + "-1", + "26", + "6026", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988518", + "988518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119226", + "1483125258", + "1483125279", + "1483119226", + "1", + "8", + "0", + "-1", + "21", + "6032", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988520", + "988520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119226", + "1483125259", + "1483125283", + "1483119226", + "1", + "8", + "0", + "-1", + "24", + "6033", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988524", + "988524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119230", + "1483125266", + "1483125291", + "1483119230", + "1", + "8", + "0", + "-1", + "25", + "6036", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988546", + "988546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119282", + "1483125364", + "1483125390", + "1483119282", + "1", + "8", + "0", + "-1", + "26", + "6082", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988550", + "988550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119289", + "1483125374", + "1483125401", + "1483119289", + "1", + "8", + "0", + "-1", + "27", + "6085", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988558", + "988558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119308", + "1483125402", + "1483125431", + "1483119308", + "1", + "8", + "0", + "-1", + "29", + "6094", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988568", + "988568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119338", + "1483125443", + "1483125472", + "1483119338", + "1", + "8", + "0", + "-1", + "29", + "6105", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988582", + "988582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119366", + "1483125473", + "1483125499", + "1483119366", + "1", + "8", + "0", + "-1", + "26", + "6107", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988586", + "988586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119366", + "1483125496", + "1483125524", + "1483119366", + "1", + "8", + "0", + "-1", + "28", + "6130", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988602", + "988602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119415", + "1483125536", + "1483125565", + "1483119415", + "1", + "8", + "0", + "-1", + "29", + "6121", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988608", + "988608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119438", + "1483125558", + "1483125584", + "1483119438", + "1", + "8", + "0", + "-1", + "26", + "6120", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988614", + "988614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119459", + "1483125569", + "1483125597", + "1483119459", + "1", + "8", + "0", + "-1", + "28", + "6110", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988616", + "988616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119462", + "1483125584", + "1483125610", + "1483119462", + "1", + "8", + "0", + "-1", + "26", + "6122", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988626", + "988626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119492", + "1483125600", + "1483125625", + "1483119492", + "1", + "8", + "0", + "-1", + "25", + "6108", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988628", + "988628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119500", + "1483125611", + "1483125631", + "1483119500", + "1", + "8", + "0", + "-1", + "20", + "6111", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988630", + "988630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119505", + "1483125616", + "1483125634", + "1483119505", + "1", + "8", + "0", + "-1", + "18", + "6111", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988632", + "988632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119506", + "1483125625", + "1483125650", + "1483119506", + "1", + "8", + "0", + "-1", + "25", + "6119", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988648", + "988648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119566", + "1483125670", + "1483125699", + "1483119566", + "1", + "8", + "0", + "-1", + "29", + "6104", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988656", + "988656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119594", + "1483125696", + "1483125717", + "1483119594", + "1", + "8", + "0", + "-1", + "21", + "6102", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988662", + "988662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119607", + "1483125708", + "1483125731", + "1483119607", + "1", + "8", + "0", + "-1", + "23", + "6101", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988664", + "988664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119608", + "1483125718", + "1483125747", + "1483119608", + "1", + "8", + "0", + "-1", + "29", + "6110", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988676", + "988676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119651", + "1483125763", + "1483125782", + "1483119651", + "1", + "8", + "0", + "-1", + "19", + "6112", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988678", + "988678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119664", + "1483125778", + "1483125795", + "1483119664", + "1", + "8", + "0", + "-1", + "17", + "6114", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988680", + "988680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119665", + "1483125781", + "1483125808", + "1483119665", + "1", + "8", + "0", + "-1", + "27", + "6116", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988686", + "988686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119710", + "1483125784", + "1483125802", + "1483119710", + "1", + "8", + "0", + "-1", + "18", + "6074", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988688", + "988688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119718", + "1483125796", + "1483125823", + "1483119718", + "1", + "8", + "0", + "-1", + "27", + "6078", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988690", + "988690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119725", + "1483125802", + "1483125822", + "1483119725", + "1", + "8", + "0", + "-1", + "20", + "6077", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988692", + "988692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119734", + "1483125804", + "1483125825", + "1483119734", + "1", + "8", + "0", + "-1", + "21", + "6070", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988700", + "988700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119796", + "1483125826", + "1483125850", + "1483119796", + "1", + "8", + "0", + "-1", + "24", + "6030", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988702", + "988702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119799", + "1483125828", + "1483125852", + "1483119799", + "1", + "8", + "0", + "-1", + "24", + "6029", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988712", + "988712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119865", + "1483125858", + "1483125886", + "1483119865", + "1", + "8", + "0", + "-1", + "28", + "5993", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988732", + "988732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119943", + "1483125919", + "1483125948", + "1483119943", + "1", + "8", + "0", + "-1", + "29", + "5976", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988734", + "988734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119956", + "1483125941", + "1483125969", + "1483119956", + "1", + "8", + "0", + "-1", + "28", + "5985", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988748", + "988748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120010", + "1483125989", + "1483126015", + "1483120010", + "1", + "8", + "0", + "-1", + "26", + "5979", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988768", + "988768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120079", + "1483126095", + "1483126119", + "1483120079", + "1", + "8", + "0", + "-1", + "24", + "6016", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988770", + "988770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120099", + "1483126106", + "1483126132", + "1483120099", + "1", + "8", + "0", + "-1", + "26", + "6007", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988772", + "988772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120102", + "1483126106", + "1483126135", + "1483120102", + "1", + "8", + "0", + "-1", + "29", + "6004", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988774", + "988774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120103", + "1483126113", + "1483126142", + "1483120103", + "1", + "8", + "0", + "-1", + "29", + "6010", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988784", + "988784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120136", + "1483126136", + "1483126154", + "1483120136", + "1", + "8", + "0", + "-1", + "18", + "6000", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988786", + "988786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120136", + "1483126143", + "1483126161", + "1483120136", + "1", + "8", + "0", + "-1", + "18", + "6007", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988790", + "988790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120157", + "1483126154", + "1483126174", + "1483120157", + "1", + "8", + "0", + "-1", + "20", + "5997", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988794", + "988794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120166", + "1483126162", + "1483126189", + "1483120166", + "1", + "8", + "0", + "-1", + "27", + "5996", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988806", + "988806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120210", + "1483126204", + "1483126225", + "1483120210", + "1", + "8", + "0", + "-1", + "21", + "5994", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988808", + "988808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120215", + "1483126216", + "1483126233", + "1483120215", + "1", + "8", + "0", + "-1", + "17", + "6001", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988812", + "988812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120230", + "1483126234", + "1483126256", + "1483120230", + "1", + "8", + "0", + "-1", + "22", + "6004", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988818", + "988818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120253", + "1483126248", + "1483126267", + "1483120253", + "1", + "8", + "0", + "-1", + "19", + "5995", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988830", + "988830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120306", + "1483126271", + "1483126291", + "1483120306", + "1", + "8", + "0", + "-1", + "20", + "5965", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988832", + "988832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120320", + "1483126292", + "1483126321", + "1483120320", + "1", + "8", + "0", + "-1", + "29", + "5972", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988838", + "988838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120331", + "1483126311", + "1483126338", + "1483120331", + "1", + "8", + "0", + "-1", + "27", + "5980", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988844", + "988844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120356", + "1483126322", + "1483126350", + "1483120356", + "1", + "8", + "0", + "-1", + "28", + "5966", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988848", + "988848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120361", + "1483126338", + "1483126362", + "1483120361", + "1", + "8", + "0", + "-1", + "24", + "5977", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988850", + "988850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120362", + "1483126344", + "1483126359", + "1483120362", + "1", + "8", + "0", + "-1", + "15", + "5982", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988860", + "988860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120436", + "1483126371", + "1483126398", + "1483120436", + "1", + "8", + "0", + "-1", + "27", + "5935", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988868", + "988868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120454", + "1483126398", + "1483126415", + "1483120454", + "1", + "8", + "0", + "-1", + "17", + "5944", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988870", + "988870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120457", + "1483126416", + "1483126444", + "1483120457", + "1", + "8", + "0", + "-1", + "28", + "5959", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988876", + "988876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120490", + "1483126428", + "1483126457", + "1483120490", + "1", + "8", + "0", + "-1", + "29", + "5938", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988878", + "988878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120496", + "1483126429", + "1483126455", + "1483120496", + "1", + "8", + "0", + "-1", + "26", + "5933", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988882", + "988882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120497", + "1483126448", + "1483126474", + "1483120497", + "1", + "8", + "0", + "-1", + "26", + "5951", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988898", + "988898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120570", + "1483126502", + "1483126529", + "1483120570", + "1", + "8", + "0", + "-1", + "27", + "5932", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988902", + "988902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120592", + "1483126516", + "1483126540", + "1483120592", + "1", + "8", + "0", + "-1", + "24", + "5924", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988904", + "988904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120592", + "1483126517", + "1483126542", + "1483120592", + "1", + "8", + "0", + "-1", + "25", + "5925", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988906", + "988906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120593", + "1483126530", + "1483126549", + "1483120593", + "1", + "8", + "0", + "-1", + "19", + "5937", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988918", + "988918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120659", + "1483126556", + "1483126572", + "1483120659", + "1", + "8", + "0", + "-1", + "16", + "5897", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988922", + "988922", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120662", + "1483126572", + "1483126596", + "1483120662", + "1", + "8", + "0", + "-1", + "24", + "5910", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988954", + "988954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120764", + "1483126692", + "1483126717", + "1483120764", + "1", + "8", + "0", + "-1", + "25", + "5928", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988962", + "988962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120785", + "1483126718", + "1483126746", + "1483120785", + "1", + "8", + "0", + "-1", + "28", + "5933", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988964", + "988964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120797", + "1483126723", + "1483126750", + "1483120797", + "1", + "8", + "0", + "-1", + "27", + "5926", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988968", + "988968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120805", + "1483126741", + "1483126768", + "1483120805", + "1", + "8", + "0", + "-1", + "27", + "5936", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988984", + "988984", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120858", + "1483126788", + "1483126817", + "1483120858", + "1", + "8", + "0", + "-1", + "29", + "5930", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989002", + "989002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120926", + "1483126852", + "1483126877", + "1483120926", + "1", + "8", + "0", + "-1", + "25", + "5926", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989004", + "989004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120934", + "1483126854", + "1483126879", + "1483120934", + "1", + "8", + "0", + "-1", + "25", + "5920", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989008", + "989008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120959", + "1483126877", + "1483126902", + "1483120959", + "1", + "8", + "0", + "-1", + "25", + "5918", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989010", + "989010", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120960", + "1483126880", + "1483126901", + "1483120960", + "1", + "8", + "0", + "-1", + "21", + "5920", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989022", + "989022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121000", + "1483126920", + "1483126945", + "1483121000", + "1", + "8", + "0", + "-1", + "25", + "5920", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989024", + "989024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121000", + "1483126922", + "1483126945", + "1483121000", + "1", + "8", + "0", + "-1", + "23", + "5922", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989060", + "989060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121142", + "1483127036", + "1483127065", + "1483121142", + "1", + "8", + "0", + "-1", + "29", + "5894", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989064", + "989064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121156", + "1483127042", + "1483127071", + "1483121156", + "1", + "8", + "0", + "-1", + "29", + "5886", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989068", + "989068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121174", + "1483127062", + "1483127086", + "1483121174", + "1", + "8", + "0", + "-1", + "24", + "5888", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989080", + "989080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121231", + "1483127089", + "1483127112", + "1483121231", + "1", + "8", + "0", + "-1", + "23", + "5858", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989102", + "989102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121318", + "1483127177", + "1483127204", + "1483121318", + "1", + "8", + "0", + "-1", + "27", + "5859", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989104", + "989104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121318", + "1483127200", + "1483127227", + "1483121318", + "1", + "8", + "0", + "-1", + "27", + "5882", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989106", + "989106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121323", + "1483127205", + "1483127227", + "1483121323", + "1", + "8", + "0", + "-1", + "22", + "5882", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989108", + "989108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121324", + "1483127207", + "1483127231", + "1483121324", + "1", + "8", + "0", + "-1", + "24", + "5883", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989112", + "989112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121343", + "1483127212", + "1483127228", + "1483121343", + "1", + "8", + "0", + "-1", + "16", + "5869", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989122", + "989122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121389", + "1483127246", + "1483127271", + "1483121389", + "1", + "8", + "0", + "-1", + "25", + "5857", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989142", + "989142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121467", + "1483127320", + "1483127339", + "1483121467", + "1", + "8", + "0", + "-1", + "19", + "5853", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989144", + "989144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121469", + "1483127321", + "1483127350", + "1483121469", + "1", + "8", + "0", + "-1", + "29", + "5852", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989146", + "989146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121470", + "1483127334", + "1483127357", + "1483121470", + "1", + "8", + "0", + "-1", + "23", + "5864", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989150", + "989150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121487", + "1483127339", + "1483127363", + "1483121487", + "1", + "8", + "0", + "-1", + "24", + "5852", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989182", + "989182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121584", + "1483127449", + "1483127478", + "1483121584", + "1", + "8", + "0", + "-1", + "29", + "5865", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989184", + "989184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121595", + "1483127455", + "1483127480", + "1483121595", + "1", + "8", + "0", + "-1", + "25", + "5860", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989190", + "989190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121608", + "1483127478", + "1483127497", + "1483121608", + "1", + "8", + "0", + "-1", + "19", + "5870", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989202", + "989202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121647", + "1483127501", + "1483127529", + "1483121647", + "1", + "8", + "0", + "-1", + "28", + "5854", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989204", + "989204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121651", + "1483127522", + "1483127549", + "1483121651", + "1", + "8", + "0", + "-1", + "27", + "5871", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989208", + "989208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121670", + "1483127530", + "1483127546", + "1483121670", + "1", + "8", + "0", + "-1", + "16", + "5860", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989258", + "989258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121789", + "1483127733", + "1483127761", + "1483121789", + "1", + "8", + "0", + "-1", + "28", + "5944", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989262", + "989262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121798", + "1483127743", + "1483127770", + "1483121798", + "1", + "8", + "0", + "-1", + "27", + "5945", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989266", + "989266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121811", + "1483127761", + "1483127786", + "1483121811", + "1", + "8", + "0", + "-1", + "25", + "5950", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989270", + "989270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121814", + "1483127766", + "1483127789", + "1483121814", + "1", + "8", + "0", + "-1", + "23", + "5952", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989272", + "989272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121814", + "1483127770", + "1483127790", + "1483121814", + "1", + "8", + "0", + "-1", + "20", + "5956", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989290", + "989290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121877", + "1483127847", + "1483127873", + "1483121877", + "1", + "8", + "0", + "-1", + "26", + "5970", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989296", + "989296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121888", + "1483127873", + "1483127899", + "1483121888", + "1", + "8", + "0", + "-1", + "26", + "5985", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989326", + "989326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122003", + "1483128027", + "1483128054", + "1483122003", + "1", + "8", + "0", + "-1", + "27", + "6024", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989328", + "989328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122006", + "1483128041", + "1483128065", + "1483122006", + "1", + "8", + "0", + "-1", + "24", + "6035", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989330", + "989330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122012", + "1483128055", + "1483128076", + "1483122012", + "1", + "8", + "0", + "-1", + "21", + "6043", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989340", + "989340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122052", + "1483128076", + "1483128097", + "1483122052", + "1", + "8", + "0", + "-1", + "21", + "6024", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989346", + "989346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122073", + "1483128099", + "1483128120", + "1483122073", + "1", + "8", + "0", + "-1", + "21", + "6026", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989352", + "989352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122095", + "1483128121", + "1483128148", + "1483122095", + "1", + "8", + "0", + "-1", + "27", + "6026", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989382", + "989382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122274", + "1483128228", + "1483128257", + "1483122274", + "1", + "8", + "0", + "-1", + "29", + "5954", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989452", + "989452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122579", + "1483128514", + "1483128534", + "1483122579", + "1", + "8", + "0", + "-1", + "20", + "5935", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989476", + "989476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122675", + "1483128591", + "1483128611", + "1483122675", + "1", + "8", + "0", + "-1", + "20", + "5916", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989482", + "989482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122702", + "1483128612", + "1483128631", + "1483122702", + "1", + "8", + "0", + "-1", + "19", + "5910", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989492", + "989492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122734", + "1483128647", + "1483128669", + "1483122734", + "1", + "8", + "0", + "-1", + "22", + "5913", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989498", + "989498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122750", + "1483128673", + "1483128697", + "1483122750", + "1", + "8", + "0", + "-1", + "24", + "5923", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989520", + "989520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122847", + "1483128737", + "1483128765", + "1483122847", + "1", + "8", + "0", + "-1", + "28", + "5890", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989534", + "989534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122867", + "1483128815", + "1483128842", + "1483122867", + "1", + "8", + "0", + "-1", + "27", + "5948", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989544", + "989544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122892", + "1483128854", + "1483128876", + "1483122892", + "1", + "8", + "0", + "-1", + "22", + "5962", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989546", + "989546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122902", + "1483128861", + "1483128887", + "1483122902", + "1", + "8", + "0", + "-1", + "26", + "5959", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989554", + "989554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122924", + "1483128877", + "1483128902", + "1483122924", + "1", + "8", + "0", + "-1", + "25", + "5953", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989562", + "989562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122942", + "1483128897", + "1483128922", + "1483122942", + "1", + "8", + "0", + "-1", + "25", + "5955", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989564", + "989564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122956", + "1483128903", + "1483128930", + "1483122956", + "1", + "8", + "0", + "-1", + "27", + "5947", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989600", + "989600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123051", + "1483129050", + "1483129078", + "1483123051", + "1", + "8", + "0", + "-1", + "28", + "5999", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989628", + "989628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123146", + "1483129147", + "1483129167", + "1483123146", + "1", + "8", + "0", + "-1", + "20", + "6001", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989650", + "989650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123202", + "1483129212", + "1483129240", + "1483123202", + "1", + "8", + "0", + "-1", + "28", + "6010", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989740", + "989740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123500", + "1483129633", + "1483129661", + "1483123500", + "1", + "8", + "0", + "-1", + "28", + "6133", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989744", + "989744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123515", + "1483129662", + "1483129690", + "1483123515", + "1", + "8", + "0", + "-1", + "28", + "6147", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989752", + "989752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123534", + "1483129694", + "1483129714", + "1483123534", + "1", + "8", + "0", + "-1", + "20", + "6160", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989754", + "989754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123544", + "1483129714", + "1483129736", + "1483123544", + "1", + "8", + "0", + "-1", + "22", + "6170", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989762", + "989762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123571", + "1483129727", + "1483129747", + "1483123571", + "1", + "8", + "0", + "-1", + "20", + "6156", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989796", + "989796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123661", + "1483129849", + "1483129878", + "1483123661", + "1", + "8", + "0", + "-1", + "29", + "6188", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989806", + "989806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123694", + "1483129882", + "1483129911", + "1483123694", + "1", + "8", + "0", + "-1", + "29", + "6188", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989808", + "989808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123700", + "1483129907", + "1483129931", + "1483123700", + "1", + "8", + "0", + "-1", + "24", + "6207", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989830", + "989830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123792", + "1483129998", + "1483130021", + "1483123792", + "1", + "8", + "0", + "-1", + "23", + "6206", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989854", + "989854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123886", + "1483130088", + "1483130114", + "1483123886", + "1", + "8", + "0", + "-1", + "26", + "6202", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989878", + "989878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123949", + "1483130207", + "1483130230", + "1483123949", + "1", + "8", + "0", + "-1", + "23", + "6258", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989884", + "989884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123960", + "1483130232", + "1483130258", + "1483123960", + "1", + "8", + "0", + "-1", + "26", + "6272", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989900", + "989900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124012", + "1483130273", + "1483130296", + "1483124012", + "1", + "8", + "0", + "-1", + "23", + "6261", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989908", + "989908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124050", + "1483130308", + "1483130332", + "1483124050", + "1", + "8", + "0", + "-1", + "24", + "6258", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989916", + "989916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124072", + "1483130332", + "1483130352", + "1483124072", + "1", + "8", + "0", + "-1", + "20", + "6260", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989918", + "989918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124079", + "1483130339", + "1483130355", + "1483124079", + "1", + "8", + "0", + "-1", + "16", + "6260", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989924", + "989924", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124093", + "1483130356", + "1483130383", + "1483124093", + "1", + "8", + "0", + "-1", + "27", + "6263", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989940", + "989940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124160", + "1483130402", + "1483130423", + "1483124160", + "1", + "8", + "0", + "-1", + "21", + "6242", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989946", + "989946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124171", + "1483130424", + "1483130452", + "1483124171", + "1", + "8", + "0", + "-1", + "28", + "6253", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989950", + "989950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124189", + "1483130436", + "1483130457", + "1483124189", + "1", + "8", + "0", + "-1", + "21", + "6247", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989954", + "989954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124196", + "1483130453", + "1483130475", + "1483124196", + "1", + "8", + "0", + "-1", + "22", + "6257", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989956", + "989956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124205", + "1483130457", + "1483130482", + "1483124205", + "1", + "8", + "0", + "-1", + "25", + "6252", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989958", + "989958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124227", + "1483130458", + "1483130476", + "1483124227", + "1", + "8", + "0", + "-1", + "18", + "6231", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989962", + "989962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124242", + "1483130461", + "1483130486", + "1483124242", + "1", + "8", + "0", + "-1", + "25", + "6219", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989970", + "989970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124306", + "1483130483", + "1483130505", + "1483124306", + "1", + "8", + "0", + "-1", + "22", + "6177", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989972", + "989972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124313", + "1483130487", + "1483130515", + "1483124313", + "1", + "8", + "0", + "-1", + "28", + "6174", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989974", + "989974", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124314", + "1483130495", + "1483130516", + "1483124314", + "1", + "8", + "0", + "-1", + "21", + "6181", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989976", + "989976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124315", + "1483130506", + "1483130526", + "1483124315", + "1", + "8", + "0", + "-1", + "20", + "6191", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989978", + "989978", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124318", + "1483130506", + "1483130532", + "1483124318", + "1", + "8", + "0", + "-1", + "26", + "6188", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989980", + "989980", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124320", + "1483130507", + "1483130529", + "1483124320", + "1", + "8", + "0", + "-1", + "22", + "6187", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990008", + "990008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124425", + "1483130552", + "1483130581", + "1483124425", + "1", + "8", + "0", + "-1", + "29", + "6127", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990012", + "990012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124437", + "1483130564", + "1483130589", + "1483124437", + "1", + "8", + "0", + "-1", + "25", + "6127", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990034", + "990034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124514", + "1483130630", + "1483130653", + "1483124514", + "1", + "8", + "0", + "-1", + "23", + "6116", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990052", + "990052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124593", + "1483130685", + "1483130714", + "1483124593", + "1", + "8", + "0", + "-1", + "29", + "6092", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990070", + "990070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124655", + "1483130700", + "1483130721", + "1483124655", + "1", + "8", + "0", + "-1", + "21", + "6045", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990074", + "990074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124664", + "1483130714", + "1483130743", + "1483124664", + "1", + "8", + "0", + "-1", + "29", + "6050", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990076", + "990076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124670", + "1483130722", + "1483130746", + "1483124670", + "1", + "8", + "0", + "-1", + "24", + "6052", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990090", + "990090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124713", + "1483130773", + "1483130797", + "1483124713", + "1", + "8", + "0", + "-1", + "24", + "6060", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990098", + "990098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124727", + "1483130795", + "1483130820", + "1483124727", + "1", + "8", + "0", + "-1", + "25", + "6068", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990102", + "990102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124732", + "1483130808", + "1483130826", + "1483124732", + "1", + "8", + "0", + "-1", + "18", + "6076", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990112", + "990112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124775", + "1483130847", + "1483130873", + "1483124775", + "1", + "8", + "0", + "-1", + "26", + "6072", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990120", + "990120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124792", + "1483130864", + "1483130879", + "1483124792", + "1", + "8", + "0", + "-1", + "15", + "6072", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990126", + "990126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124821", + "1483130880", + "1483130901", + "1483124821", + "1", + "8", + "0", + "-1", + "21", + "6059", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990128", + "990128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124821", + "1483130882", + "1483130902", + "1483124821", + "1", + "8", + "0", + "-1", + "20", + "6061", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990130", + "990130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124822", + "1483130887", + "1483130904", + "1483124822", + "1", + "8", + "0", + "-1", + "17", + "6065", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990132", + "990132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124829", + "1483130901", + "1483130919", + "1483124829", + "1", + "8", + "0", + "-1", + "18", + "6072", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990134", + "990134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124833", + "1483130902", + "1483130922", + "1483124833", + "1", + "8", + "0", + "-1", + "20", + "6069", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990136", + "990136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124839", + "1483130902", + "1483130921", + "1483124839", + "1", + "8", + "0", + "-1", + "19", + "6063", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990140", + "990140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124862", + "1483130908", + "1483130931", + "1483124862", + "1", + "8", + "0", + "-1", + "23", + "6046", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990142", + "990142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124864", + "1483130920", + "1483130937", + "1483124864", + "1", + "8", + "0", + "-1", + "17", + "6056", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990144", + "990144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124865", + "1483130922", + "1483130935", + "1483124865", + "1", + "8", + "0", + "-1", + "13", + "6057", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990146", + "990146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124866", + "1483130923", + "1483130936", + "1483124866", + "1", + "8", + "0", + "-1", + "13", + "6057", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990148", + "990148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124877", + "1483130928", + "1483130947", + "1483124877", + "1", + "8", + "0", + "-1", + "19", + "6051", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990154", + "990154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124894", + "1483130936", + "1483130956", + "1483124894", + "1", + "8", + "0", + "-1", + "20", + "6042", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990156", + "990156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124894", + "1483130938", + "1483130964", + "1483124894", + "1", + "8", + "0", + "-1", + "26", + "6044", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990168", + "990168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124951", + "1483130983", + "1483131006", + "1483124951", + "1", + "8", + "0", + "-1", + "23", + "6032", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990174", + "990174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124962", + "1483130996", + "1483131024", + "1483124962", + "1", + "8", + "0", + "-1", + "28", + "6034", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990190", + "990190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124997", + "1483131034", + "1483131052", + "1483124997", + "1", + "8", + "0", + "-1", + "18", + "6037", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990192", + "990192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124997", + "1483131046", + "1483131070", + "1483124997", + "1", + "8", + "0", + "-1", + "24", + "6049", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990194", + "990194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125014", + "1483131053", + "1483131080", + "1483125014", + "1", + "8", + "0", + "-1", + "27", + "6039", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990196", + "990196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125019", + "1483131057", + "1483131078", + "1483125019", + "1", + "8", + "0", + "-1", + "21", + "6038", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990212", + "990212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125078", + "1483131106", + "1483131133", + "1483125078", + "1", + "8", + "0", + "-1", + "27", + "6028", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990218", + "990218", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125084", + "1483131123", + "1483131151", + "1483125084", + "1", + "8", + "0", + "-1", + "28", + "6039", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990224", + "990224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125123", + "1483131134", + "1483131158", + "1483125123", + "1", + "8", + "0", + "-1", + "24", + "6011", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990226", + "990226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125143", + "1483131148", + "1483131173", + "1483125143", + "1", + "8", + "0", + "-1", + "25", + "6005", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990228", + "990228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125148", + "1483131152", + "1483131177", + "1483125148", + "1", + "8", + "0", + "-1", + "25", + "6004", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990234", + "990234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125155", + "1483131169", + "1483131189", + "1483125155", + "1", + "8", + "0", + "-1", + "20", + "6014", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990254", + "990254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125240", + "1483131233", + "1483131259", + "1483125240", + "1", + "8", + "0", + "-1", + "26", + "5993", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990256", + "990256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125251", + "1483131249", + "1483131266", + "1483125251", + "1", + "8", + "0", + "-1", + "17", + "5998", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990260", + "990260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125259", + "1483131260", + "1483131288", + "1483125259", + "1", + "8", + "0", + "-1", + "28", + "6001", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990262", + "990262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125260", + "1483131263", + "1483131292", + "1483125260", + "1", + "8", + "0", + "-1", + "29", + "6003", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990264", + "990264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125266", + "1483131267", + "1483131285", + "1483125266", + "1", + "8", + "0", + "-1", + "18", + "6001", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990270", + "990270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125284", + "1483131286", + "1483131303", + "1483125284", + "1", + "8", + "0", + "-1", + "17", + "6002", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990272", + "990272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125290", + "1483131288", + "1483131304", + "1483125290", + "1", + "8", + "0", + "-1", + "16", + "5998", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990276", + "990276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125308", + "1483131293", + "1483131315", + "1483125308", + "1", + "8", + "0", + "-1", + "22", + "5985", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990278", + "990278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125315", + "1483131300", + "1483131328", + "1483125315", + "1", + "8", + "0", + "-1", + "28", + "5985", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990286", + "990286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125363", + "1483131304", + "1483131320", + "1483125363", + "1", + "8", + "0", + "-1", + "16", + "5941", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990288", + "990288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125372", + "1483131309", + "1483131328", + "1483125372", + "1", + "8", + "0", + "-1", + "19", + "5937", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990290", + "990290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125374", + "1483131316", + "1483131339", + "1483125374", + "1", + "8", + "0", + "-1", + "23", + "5942", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990292", + "990292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125389", + "1483131320", + "1483131349", + "1483125389", + "1", + "8", + "0", + "-1", + "29", + "5931", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990294", + "990294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125391", + "1483131328", + "1483131354", + "1483125391", + "1", + "8", + "0", + "-1", + "26", + "5937", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990296", + "990296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125392", + "1483131329", + "1483131356", + "1483125392", + "1", + "8", + "0", + "-1", + "27", + "5937", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990298", + "990298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125401", + "1483131331", + "1483131346", + "1483125401", + "1", + "8", + "0", + "-1", + "15", + "5930", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990302", + "990302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125426", + "1483131339", + "1483131366", + "1483125426", + "1", + "8", + "0", + "-1", + "27", + "5913", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990304", + "990304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125431", + "1483131346", + "1483131365", + "1483125431", + "1", + "8", + "0", + "-1", + "19", + "5915", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990308", + "990308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125443", + "1483131355", + "1483131378", + "1483125443", + "1", + "8", + "0", + "-1", + "23", + "5912", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990310", + "990310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125448", + "1483131357", + "1483131380", + "1483125448", + "1", + "8", + "0", + "-1", + "23", + "5909", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990314", + "990314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125463", + "1483131367", + "1483131396", + "1483125463", + "1", + "8", + "0", + "-1", + "29", + "5904", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990318", + "990318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125464", + "1483131379", + "1483131402", + "1483125464", + "1", + "8", + "0", + "-1", + "23", + "5915", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990320", + "990320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125473", + "1483131381", + "1483131404", + "1483125473", + "1", + "8", + "0", + "-1", + "23", + "5908", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990322", + "990322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125473", + "1483131391", + "1483131413", + "1483125473", + "1", + "8", + "0", + "-1", + "22", + "5918", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990326", + "990326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125495", + "1483131403", + "1483131423", + "1483125495", + "1", + "8", + "0", + "-1", + "20", + "5908", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990328", + "990328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125497", + "1483131404", + "1483131425", + "1483125497", + "1", + "8", + "0", + "-1", + "21", + "5907", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990330", + "990330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125499", + "1483131414", + "1483131431", + "1483125499", + "1", + "8", + "0", + "-1", + "17", + "5915", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990332", + "990332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125513", + "1483131422", + "1483131441", + "1483125513", + "1", + "8", + "0", + "-1", + "19", + "5909", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990334", + "990334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125517", + "1483131424", + "1483131439", + "1483125517", + "1", + "8", + "0", + "-1", + "15", + "5907", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990336", + "990336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125518", + "1483131425", + "1483131449", + "1483125518", + "1", + "8", + "0", + "-1", + "24", + "5907", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990340", + "990340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125535", + "1483131440", + "1483131468", + "1483125535", + "1", + "8", + "0", + "-1", + "28", + "5905", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990350", + "990350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125569", + "1483131468", + "1483131490", + "1483125569", + "1", + "8", + "0", + "-1", + "22", + "5899", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990352", + "990352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125584", + "1483131473", + "1483131498", + "1483125584", + "1", + "8", + "0", + "-1", + "25", + "5889", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990358", + "990358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125595", + "1483131490", + "1483131511", + "1483125595", + "1", + "8", + "0", + "-1", + "21", + "5895", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990362", + "990362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125599", + "1483131498", + "1483131523", + "1483125599", + "1", + "8", + "0", + "-1", + "25", + "5899", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990366", + "990366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125616", + "1483131512", + "1483131535", + "1483125616", + "1", + "8", + "0", + "-1", + "23", + "5896", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990370", + "990370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125631", + "1483131523", + "1483131541", + "1483125631", + "1", + "8", + "0", + "-1", + "18", + "5892", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990372", + "990372", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125632", + "1483131528", + "1483131551", + "1483125632", + "1", + "8", + "0", + "-1", + "23", + "5896", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990376", + "990376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125635", + "1483131538", + "1483131567", + "1483125635", + "1", + "8", + "0", + "-1", + "29", + "5903", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990378", + "990378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125650", + "1483131542", + "1483131562", + "1483125650", + "1", + "8", + "0", + "-1", + "20", + "5892", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990400", + "990400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125717", + "1483131640", + "1483131656", + "1483125717", + "1", + "8", + "0", + "-1", + "16", + "5923", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990404", + "990404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125732", + "1483131646", + "1483131665", + "1483125732", + "1", + "8", + "0", + "-1", + "19", + "5914", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990408", + "990408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125748", + "1483131657", + "1483131678", + "1483125748", + "1", + "8", + "0", + "-1", + "21", + "5909", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990412", + "990412", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125762", + "1483131666", + "1483131687", + "1483125762", + "1", + "8", + "0", + "-1", + "21", + "5904", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990414", + "990414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125777", + "1483131671", + "1483131695", + "1483125777", + "1", + "8", + "0", + "-1", + "24", + "5894", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990416", + "990416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125781", + "1483131676", + "1483131692", + "1483125781", + "1", + "8", + "0", + "-1", + "16", + "5895", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990418", + "990418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125782", + "1483131679", + "1483131706", + "1483125782", + "1", + "8", + "0", + "-1", + "27", + "5897", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990422", + "990422", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125784", + "1483131687", + "1483131702", + "1483125784", + "1", + "8", + "0", + "-1", + "15", + "5903", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990424", + "990424", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125795", + "1483131693", + "1483131719", + "1483125795", + "1", + "8", + "0", + "-1", + "26", + "5898", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990426", + "990426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125802", + "1483131695", + "1483131723", + "1483125802", + "1", + "8", + "0", + "-1", + "28", + "5893", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990452", + "990452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125864", + "1483131804", + "1483131832", + "1483125864", + "1", + "8", + "0", + "-1", + "28", + "5940", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990460", + "990460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125891", + "1483131832", + "1483131857", + "1483125891", + "1", + "8", + "0", + "-1", + "25", + "5941", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990464", + "990464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125898", + "1483131850", + "1483131877", + "1483125898", + "1", + "8", + "0", + "-1", + "27", + "5952", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990488", + "990488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125990", + "1483131915", + "1483131938", + "1483125990", + "1", + "8", + "0", + "-1", + "23", + "5925", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990500", + "990500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126075", + "1483131954", + "1483131977", + "1483126075", + "1", + "8", + "0", + "-1", + "23", + "5879", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990506", + "990506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126105", + "1483131977", + "1483132002", + "1483126105", + "1", + "8", + "0", + "-1", + "25", + "5872", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990508", + "990508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126106", + "1483131986", + "1483132006", + "1483126106", + "1", + "8", + "0", + "-1", + "20", + "5880", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990516", + "990516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126132", + "1483132004", + "1483132026", + "1483126132", + "1", + "8", + "0", + "-1", + "22", + "5872", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990518", + "990518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126133", + "1483132007", + "1483132027", + "1483126133", + "1", + "8", + "0", + "-1", + "20", + "5874", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990522", + "990522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126142", + "1483132022", + "1483132050", + "1483126142", + "1", + "8", + "0", + "-1", + "28", + "5880", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990526", + "990526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126154", + "1483132028", + "1483132057", + "1483126154", + "1", + "8", + "0", + "-1", + "29", + "5874", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990528", + "990528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126154", + "1483132028", + "1483132057", + "1483126154", + "1", + "8", + "0", + "-1", + "29", + "5874", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990542", + "990542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126204", + "1483132076", + "1483132103", + "1483126204", + "1", + "8", + "0", + "-1", + "27", + "5872", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990548", + "990548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126233", + "1483132100", + "1483132125", + "1483126233", + "1", + "8", + "0", + "-1", + "25", + "5867", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990552", + "990552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126237", + "1483132107", + "1483132135", + "1483126237", + "1", + "8", + "0", + "-1", + "28", + "5870", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990558", + "990558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126259", + "1483132126", + "1483132153", + "1483126259", + "1", + "8", + "0", + "-1", + "27", + "5867", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990570", + "990570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126298", + "1483132156", + "1483132184", + "1483126298", + "1", + "8", + "0", + "-1", + "28", + "5858", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990590", + "990590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126350", + "1483132249", + "1483132277", + "1483126350", + "1", + "8", + "0", + "-1", + "28", + "5899", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990592", + "990592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126359", + "1483132258", + "1483132278", + "1483126359", + "1", + "8", + "0", + "-1", + "20", + "5899", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990596", + "990596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126370", + "1483132277", + "1483132304", + "1483126370", + "1", + "8", + "0", + "-1", + "27", + "5907", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990612", + "990612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126427", + "1483132328", + "1483132349", + "1483126427", + "1", + "8", + "0", + "-1", + "21", + "5901", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990616", + "990616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126444", + "1483132350", + "1483132379", + "1483126444", + "1", + "8", + "0", + "-1", + "29", + "5906", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990618", + "990618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126448", + "1483132359", + "1483132377", + "1483126448", + "1", + "8", + "0", + "-1", + "18", + "5911", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990622", + "990622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126455", + "1483132378", + "1483132406", + "1483126455", + "1", + "8", + "0", + "-1", + "28", + "5923", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990624", + "990624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126457", + "1483132380", + "1483132401", + "1483126457", + "1", + "8", + "0", + "-1", + "21", + "5923", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990626", + "990626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126474", + "1483132386", + "1483132402", + "1483126474", + "1", + "8", + "0", + "-1", + "16", + "5912", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990630", + "990630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126482", + "1483132402", + "1483132420", + "1483126482", + "1", + "8", + "0", + "-1", + "18", + "5920", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990638", + "990638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126515", + "1483132435", + "1483132460", + "1483126515", + "1", + "8", + "0", + "-1", + "25", + "5920", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990648", + "990648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126545", + "1483132465", + "1483132484", + "1483126545", + "1", + "8", + "0", + "-1", + "19", + "5920", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990650", + "990650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126547", + "1483132466", + "1483132493", + "1483126547", + "1", + "8", + "0", + "-1", + "27", + "5919", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990658", + "990658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126572", + "1483132510", + "1483132528", + "1483126572", + "1", + "8", + "0", + "-1", + "18", + "5938", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990662", + "990662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126592", + "1483132519", + "1483132541", + "1483126592", + "1", + "8", + "0", + "-1", + "22", + "5927", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990666", + "990666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126596", + "1483132529", + "1483132545", + "1483126596", + "1", + "8", + "0", + "-1", + "16", + "5933", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990670", + "990670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126611", + "1483132542", + "1483132559", + "1483126611", + "1", + "8", + "0", + "-1", + "17", + "5931", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990676", + "990676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126633", + "1483132557", + "1483132576", + "1483126633", + "1", + "8", + "0", + "-1", + "19", + "5924", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990678", + "990678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126648", + "1483132560", + "1483132584", + "1483126648", + "1", + "8", + "0", + "-1", + "24", + "5912", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990680", + "990680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126653", + "1483132572", + "1483132589", + "1483126653", + "1", + "8", + "0", + "-1", + "17", + "5919", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990686", + "990686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126670", + "1483132585", + "1483132613", + "1483126670", + "1", + "8", + "0", + "-1", + "28", + "5915", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990688", + "990688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126677", + "1483132589", + "1483132618", + "1483126677", + "1", + "8", + "0", + "-1", + "29", + "5912", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990692", + "990692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126698", + "1483132606", + "1483132629", + "1483126698", + "1", + "8", + "0", + "-1", + "23", + "5908", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990694", + "990694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126702", + "1483132613", + "1483132641", + "1483126702", + "1", + "8", + "0", + "-1", + "28", + "5911", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990700", + "990700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126723", + "1483132624", + "1483132649", + "1483126723", + "1", + "8", + "0", + "-1", + "25", + "5901", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990702", + "990702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126741", + "1483132629", + "1483132642", + "1483126741", + "1", + "8", + "0", + "-1", + "13", + "5888", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990706", + "990706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126746", + "1483132641", + "1483132660", + "1483126746", + "1", + "8", + "0", + "-1", + "19", + "5895", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990708", + "990708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126750", + "1483132643", + "1483132661", + "1483126750", + "1", + "8", + "0", + "-1", + "18", + "5893", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990710", + "990710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126750", + "1483132643", + "1483132661", + "1483126750", + "1", + "8", + "0", + "-1", + "18", + "5893", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990712", + "990712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126767", + "1483132650", + "1483132678", + "1483126767", + "1", + "8", + "0", + "-1", + "28", + "5883", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990716", + "990716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126784", + "1483132662", + "1483132674", + "1483126784", + "1", + "8", + "0", + "-1", + "12", + "5878", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990718", + "990718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126786", + "1483132662", + "1483132676", + "1483126786", + "1", + "8", + "0", + "-1", + "14", + "5876", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990720", + "990720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126788", + "1483132675", + "1483132686", + "1483126788", + "1", + "8", + "0", + "-1", + "11", + "5887", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990722", + "990722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126800", + "1483132676", + "1483132691", + "1483126800", + "1", + "8", + "0", + "-1", + "15", + "5876", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990728", + "990728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126819", + "1483132686", + "1483132711", + "1483126819", + "1", + "8", + "0", + "-1", + "25", + "5867", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990738", + "990738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126851", + "1483132718", + "1483132745", + "1483126851", + "1", + "8", + "0", + "-1", + "27", + "5867", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990742", + "990742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126860", + "1483132727", + "1483132747", + "1483126860", + "1", + "8", + "0", + "-1", + "20", + "5867", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990744", + "990744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126877", + "1483132745", + "1483132773", + "1483126877", + "1", + "8", + "0", + "-1", + "28", + "5868", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990746", + "990746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126879", + "1483132748", + "1483132771", + "1483126879", + "1", + "8", + "0", + "-1", + "23", + "5869", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990754", + "990754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126901", + "1483132772", + "1483132797", + "1483126901", + "1", + "8", + "0", + "-1", + "25", + "5871", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990760", + "990760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126921", + "1483132794", + "1483132818", + "1483126921", + "1", + "8", + "0", + "-1", + "24", + "5873", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990764", + "990764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126939", + "1483132802", + "1483132824", + "1483126939", + "1", + "8", + "0", + "-1", + "22", + "5863", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990774", + "990774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126963", + "1483132824", + "1483132853", + "1483126963", + "1", + "8", + "0", + "-1", + "29", + "5861", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990792", + "990792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127026", + "1483132891", + "1483132917", + "1483127026", + "1", + "8", + "0", + "-1", + "26", + "5865", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990798", + "990798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127036", + "1483132919", + "1483132946", + "1483127036", + "1", + "8", + "0", + "-1", + "27", + "5883", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990804", + "990804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127062", + "1483132934", + "1483132960", + "1483127062", + "1", + "8", + "0", + "-1", + "26", + "5872", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990812", + "990812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127083", + "1483132955", + "1483132978", + "1483127083", + "1", + "8", + "0", + "-1", + "23", + "5872", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990816", + "990816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127089", + "1483132976", + "1483132999", + "1483127089", + "1", + "8", + "0", + "-1", + "23", + "5887", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990826", + "990826", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127142", + "1483132997", + "1483133017", + "1483127142", + "1", + "8", + "0", + "-1", + "20", + "5855", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990828", + "990828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127143", + "1483132999", + "1483133022", + "1483127143", + "1", + "8", + "0", + "-1", + "23", + "5856", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990836", + "990836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127176", + "1483133023", + "1483133040", + "1483127176", + "1", + "8", + "0", + "-1", + "17", + "5847", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990842", + "990842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127204", + "1483133041", + "1483133058", + "1483127204", + "1", + "8", + "0", + "-1", + "17", + "5837", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990848", + "990848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127211", + "1483133051", + "1483133071", + "1483127211", + "1", + "8", + "0", + "-1", + "20", + "5840", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990856", + "990856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127231", + "1483133089", + "1483133108", + "1483127231", + "1", + "8", + "0", + "-1", + "19", + "5858", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990874", + "990874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127300", + "1483133160", + "1483133186", + "1483127300", + "1", + "8", + "0", + "-1", + "26", + "5860", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990878", + "990878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127320", + "1483133178", + "1483133207", + "1483127320", + "1", + "8", + "0", + "-1", + "29", + "5858", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990882", + "990882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127334", + "1483133189", + "1483133218", + "1483127334", + "1", + "8", + "0", + "-1", + "29", + "5855", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990892", + "990892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127358", + "1483133208", + "1483133225", + "1483127358", + "1", + "8", + "0", + "-1", + "17", + "5850", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990898", + "990898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127373", + "1483133216", + "1483133232", + "1483127373", + "1", + "8", + "0", + "-1", + "16", + "5843", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990900", + "990900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127379", + "1483133218", + "1483133232", + "1483127379", + "1", + "8", + "0", + "-1", + "14", + "5839", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990902", + "990902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127383", + "1483133221", + "1483133235", + "1483127383", + "1", + "8", + "0", + "-1", + "14", + "5838", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990904", + "990904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127398", + "1483133226", + "1483133241", + "1483127398", + "1", + "8", + "0", + "-1", + "15", + "5828", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990906", + "990906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127401", + "1483133233", + "1483133261", + "1483127401", + "1", + "8", + "0", + "-1", + "28", + "5832", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990908", + "990908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127402", + "1483133233", + "1483133254", + "1483127402", + "1", + "8", + "0", + "-1", + "21", + "5831", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990914", + "990914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127425", + "1483133235", + "1483133260", + "1483127425", + "1", + "8", + "0", + "-1", + "25", + "5810", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990916", + "990916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127434", + "1483133239", + "1483133255", + "1483127434", + "1", + "8", + "0", + "-1", + "16", + "5805", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990918", + "990918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127449", + "1483133242", + "1483133263", + "1483127449", + "1", + "8", + "0", + "-1", + "21", + "5793", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990930", + "990930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127489", + "1483133264", + "1483133289", + "1483127489", + "1", + "8", + "0", + "-1", + "25", + "5775", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990934", + "990934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127497", + "1483133288", + "1483133307", + "1483127497", + "1", + "8", + "0", + "-1", + "19", + "5791", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990936", + "990936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127500", + "1483133290", + "1483133312", + "1483127500", + "1", + "8", + "0", + "-1", + "22", + "5790", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990940", + "990940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127521", + "1483133295", + "1483133308", + "1483127521", + "1", + "8", + "0", + "-1", + "13", + "5774", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990942", + "990942", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127527", + "1483133303", + "1483133324", + "1483127527", + "1", + "8", + "0", + "-1", + "21", + "5776", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990944", + "990944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127529", + "1483133308", + "1483133334", + "1483127529", + "1", + "8", + "0", + "-1", + "26", + "5779", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990946", + "990946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127532", + "1483133308", + "1483133332", + "1483127532", + "1", + "8", + "0", + "-1", + "24", + "5776", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990952", + "990952", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127546", + "1483133322", + "1483133345", + "1483127546", + "1", + "8", + "0", + "-1", + "23", + "5776", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990954", + "990954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127549", + "1483133324", + "1483133350", + "1483127549", + "1", + "8", + "0", + "-1", + "26", + "5775", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990956", + "990956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127587", + "1483133333", + "1483133353", + "1483127587", + "1", + "8", + "0", + "-1", + "20", + "5746", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990960", + "990960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127590", + "1483133346", + "1483133361", + "1483127590", + "1", + "8", + "0", + "-1", + "15", + "5756", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990968", + "990968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127645", + "1483133353", + "1483133378", + "1483127645", + "1", + "8", + "0", + "-1", + "25", + "5708", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990970", + "990970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127661", + "1483133360", + "1483133389", + "1483127661", + "1", + "8", + "0", + "-1", + "29", + "5699", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990972", + "990972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127663", + "1483133361", + "1483133382", + "1483127663", + "1", + "8", + "0", + "-1", + "21", + "5698", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990976", + "990976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127668", + "1483133373", + "1483133391", + "1483127668", + "1", + "8", + "0", + "-1", + "18", + "5705", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990986", + "990986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127713", + "1483133393", + "1483133421", + "1483127713", + "1", + "8", + "0", + "-1", + "28", + "5680", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990988", + "990988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127723", + "1483133406", + "1483133429", + "1483127723", + "1", + "8", + "0", + "-1", + "23", + "5683", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990990", + "990990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127725", + "1483133413", + "1483133432", + "1483127725", + "1", + "8", + "0", + "-1", + "19", + "5688", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990996", + "990996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127742", + "1483133429", + "1483133454", + "1483127742", + "1", + "8", + "0", + "-1", + "25", + "5687", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991010", + "991010", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127782", + "1483133464", + "1483133480", + "1483127782", + "1", + "8", + "0", + "-1", + "16", + "5682", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991012", + "991012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127786", + "1483133468", + "1483133493", + "1483127786", + "1", + "8", + "0", + "-1", + "25", + "5682", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991014", + "991014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127789", + "1483133481", + "1483133508", + "1483127789", + "1", + "8", + "0", + "-1", + "27", + "5692", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991018", + "991018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127802", + "1483133494", + "1483133522", + "1483127802", + "1", + "8", + "0", + "-1", + "28", + "5692", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991020", + "991020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127816", + "1483133504", + "1483133524", + "1483127816", + "1", + "8", + "0", + "-1", + "20", + "5688", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991026", + "991026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127847", + "1483133516", + "1483133526", + "1483127847", + "1", + "8", + "0", + "-1", + "10", + "5669", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991028", + "991028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127853", + "1483133517", + "1483133532", + "1483127853", + "1", + "8", + "0", + "-1", + "15", + "5664", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991030", + "991030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127856", + "1483133520", + "1483133535", + "1483127856", + "1", + "8", + "0", + "-1", + "15", + "5664", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991032", + "991032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127873", + "1483133523", + "1483133545", + "1483127873", + "1", + "8", + "0", + "-1", + "22", + "5650", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991034", + "991034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127875", + "1483133524", + "1483133549", + "1483127875", + "1", + "8", + "0", + "-1", + "25", + "5649", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991036", + "991036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127893", + "1483133526", + "1483133547", + "1483127893", + "1", + "8", + "0", + "-1", + "21", + "5633", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991046", + "991046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127936", + "1483133546", + "1483133566", + "1483127936", + "1", + "8", + "0", + "-1", + "20", + "5610", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991048", + "991048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127940", + "1483133548", + "1483133562", + "1483127940", + "1", + "8", + "0", + "-1", + "14", + "5608", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991050", + "991050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127944", + "1483133549", + "1483133568", + "1483127944", + "1", + "8", + "0", + "-1", + "19", + "5605", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991062", + "991062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128027", + "1483133569", + "1483133587", + "1483128027", + "1", + "8", + "0", + "-1", + "18", + "5542", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991064", + "991064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128040", + "1483133587", + "1483133606", + "1483128040", + "1", + "8", + "0", + "-1", + "19", + "5547", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991072", + "991072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128065", + "1483133607", + "1483133623", + "1483128065", + "1", + "8", + "0", + "-1", + "16", + "5542", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991076", + "991076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128076", + "1483133627", + "1483133640", + "1483128076", + "1", + "8", + "0", + "-1", + "13", + "5551", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991078", + "991078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128096", + "1483133637", + "1483133664", + "1483128096", + "1", + "8", + "0", + "-1", + "27", + "5541", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991080", + "991080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128097", + "1483133638", + "1483133662", + "1483128097", + "1", + "8", + "0", + "-1", + "24", + "5541", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991084", + "991084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128103", + "1483133641", + "1483133663", + "1483128103", + "1", + "8", + "0", + "-1", + "22", + "5538", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991098", + "991098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128142", + "1483133688", + "1483133715", + "1483128142", + "1", + "8", + "0", + "-1", + "27", + "5546", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991102", + "991102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128148", + "1483133696", + "1483133722", + "1483128148", + "1", + "8", + "0", + "-1", + "26", + "5548", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991104", + "991104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128176", + "1483133696", + "1483133720", + "1483128176", + "1", + "8", + "0", + "-1", + "24", + "5520", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991106", + "991106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128182", + "1483133699", + "1483133723", + "1483128182", + "1", + "8", + "0", + "-1", + "24", + "5517", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991114", + "991114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128220", + "1483133721", + "1483133739", + "1483128220", + "1", + "8", + "0", + "-1", + "18", + "5501", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991118", + "991118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128228", + "1483133723", + "1483133739", + "1483128228", + "1", + "8", + "0", + "-1", + "16", + "5495", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991132", + "991132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128298", + "1483133766", + "1483133784", + "1483128298", + "1", + "8", + "0", + "-1", + "18", + "5468", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991134", + "991134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128299", + "1483133784", + "1483133802", + "1483128299", + "1", + "8", + "0", + "-1", + "18", + "5485", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991136", + "991136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128310", + "1483133789", + "1483133817", + "1483128310", + "1", + "8", + "0", + "-1", + "28", + "5479", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991138", + "991138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128315", + "1483133790", + "1483133810", + "1483128315", + "1", + "8", + "0", + "-1", + "20", + "5475", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991140", + "991140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128324", + "1483133802", + "1483133823", + "1483128324", + "1", + "8", + "0", + "-1", + "21", + "5478", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991144", + "991144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128355", + "1483133809", + "1483133827", + "1483128355", + "1", + "8", + "0", + "-1", + "18", + "5454", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991146", + "991146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128367", + "1483133811", + "1483133827", + "1483128367", + "1", + "8", + "0", + "-1", + "16", + "5444", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991148", + "991148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128372", + "1483133811", + "1483133828", + "1483128372", + "1", + "8", + "0", + "-1", + "17", + "5439", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991152", + "991152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128384", + "1483133817", + "1483133843", + "1483128384", + "1", + "8", + "0", + "-1", + "26", + "5433", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991156", + "991156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128410", + "1483133824", + "1483133847", + "1483128410", + "1", + "8", + "0", + "-1", + "23", + "5414", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991158", + "991158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128412", + "1483133827", + "1483133852", + "1483128412", + "1", + "8", + "0", + "-1", + "25", + "5415", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991162", + "991162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128434", + "1483133829", + "1483133849", + "1483128434", + "1", + "8", + "0", + "-1", + "20", + "5395", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991178", + "991178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128481", + "1483133882", + "1483133906", + "1483128481", + "1", + "8", + "0", + "-1", + "24", + "5401", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991180", + "991180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128484", + "1483133886", + "1483133913", + "1483128484", + "1", + "8", + "0", + "-1", + "27", + "5402", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991206", + "991206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128572", + "1483133997", + "1483134024", + "1483128572", + "1", + "8", + "0", + "-1", + "27", + "5425", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991228", + "991228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128646", + "1483134091", + "1483134109", + "1483128646", + "1", + "8", + "0", + "-1", + "18", + "5445", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991234", + "991234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128672", + "1483134110", + "1483134130", + "1483128672", + "1", + "8", + "0", + "-1", + "20", + "5438", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991236", + "991236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128684", + "1483134125", + "1483134147", + "1483128684", + "1", + "8", + "0", + "-1", + "22", + "5441", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991240", + "991240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128691", + "1483134130", + "1483134157", + "1483128691", + "1", + "8", + "0", + "-1", + "27", + "5439", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991242", + "991242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128696", + "1483134131", + "1483134149", + "1483128696", + "1", + "8", + "0", + "-1", + "18", + "5435", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991248", + "991248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128715", + "1483134150", + "1483134167", + "1483128715", + "1", + "8", + "0", + "-1", + "17", + "5435", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991250", + "991250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128722", + "1483134157", + "1483134177", + "1483128722", + "1", + "8", + "0", + "-1", + "20", + "5435", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991252", + "991252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128727", + "1483134168", + "1483134182", + "1483128727", + "1", + "8", + "0", + "-1", + "14", + "5441", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991254", + "991254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128728", + "1483134172", + "1483134191", + "1483128728", + "1", + "8", + "0", + "-1", + "19", + "5444", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991256", + "991256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128737", + "1483134177", + "1483134201", + "1483128737", + "1", + "8", + "0", + "-1", + "24", + "5440", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991284", + "991284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128865", + "1483134282", + "1483134303", + "1483128865", + "1", + "8", + "0", + "-1", + "21", + "5417", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991286", + "991286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128869", + "1483134304", + "1483134326", + "1483128869", + "1", + "8", + "0", + "-1", + "22", + "5435", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991288", + "991288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128871", + "1483134304", + "1483134326", + "1483128871", + "1", + "8", + "0", + "-1", + "22", + "5433", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991290", + "991290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128877", + "1483134309", + "1483134336", + "1483128877", + "1", + "8", + "0", + "-1", + "27", + "5432", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991294", + "991294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128884", + "1483134326", + "1483134352", + "1483128884", + "1", + "8", + "0", + "-1", + "26", + "5442", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991296", + "991296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128887", + "1483134327", + "1483134348", + "1483128887", + "1", + "8", + "0", + "-1", + "21", + "5440", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991298", + "991298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128896", + "1483134327", + "1483134345", + "1483128896", + "1", + "8", + "0", + "-1", + "18", + "5431", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991310", + "991310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128945", + "1483134349", + "1483134371", + "1483128945", + "1", + "8", + "0", + "-1", + "22", + "5404", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991312", + "991312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128945", + "1483134352", + "1483134370", + "1483128945", + "1", + "8", + "0", + "-1", + "18", + "5407", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991314", + "991314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128948", + "1483134363", + "1483134392", + "1483128948", + "1", + "8", + "0", + "-1", + "29", + "5415", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991330", + "991330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129036", + "1483134427", + "1483134448", + "1483129036", + "1", + "8", + "0", + "-1", + "21", + "5391", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991334", + "991334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129049", + "1483134442", + "1483134461", + "1483129049", + "1", + "8", + "0", + "-1", + "19", + "5393", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991340", + "991340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129052", + "1483134461", + "1483134480", + "1483129052", + "1", + "8", + "0", + "-1", + "19", + "5409", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991356", + "991356", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129116", + "1483134528", + "1483134553", + "1483129116", + "1", + "8", + "0", + "-1", + "25", + "5412", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991362", + "991362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129141", + "1483134554", + "1483134579", + "1483129141", + "1", + "8", + "0", + "-1", + "25", + "5413", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991375", + "991375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129168", + "1483134589", + "1483134612", + "1483129168", + "1", + "8", + "0", + "-1", + "23", + "5421", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991381", + "991381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129184", + "1483134605", + "1483134625", + "1483129184", + "1", + "8", + "0", + "-1", + "20", + "5421", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991383", + "991383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129194", + "1483134612", + "1483134641", + "1483129194", + "1", + "8", + "0", + "-1", + "29", + "5418", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991387", + "991387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129212", + "1483134626", + "1483134649", + "1483129212", + "1", + "8", + "0", + "-1", + "23", + "5414", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991391", + "991391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129233", + "1483134643", + "1483134671", + "1483129233", + "1", + "8", + "0", + "-1", + "28", + "5410", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991393", + "991393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129240", + "1483134649", + "1483134672", + "1483129240", + "1", + "8", + "0", + "-1", + "23", + "5409", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991395", + "991395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129240", + "1483134660", + "1483134686", + "1483129240", + "1", + "8", + "0", + "-1", + "26", + "5420", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991397", + "991397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129254", + "1483134670", + "1483134694", + "1483129254", + "1", + "8", + "0", + "-1", + "24", + "5416", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991417", + "991417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129333", + "1483134722", + "1483134737", + "1483129333", + "1", + "8", + "0", + "-1", + "15", + "5389", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991421", + "991421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129360", + "1483134728", + "1483134752", + "1483129360", + "1", + "8", + "0", + "-1", + "24", + "5368", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991423", + "991423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129361", + "1483134737", + "1483134759", + "1483129361", + "1", + "8", + "0", + "-1", + "22", + "5376", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991427", + "991427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129413", + "1483134753", + "1483134779", + "1483129413", + "1", + "8", + "0", + "-1", + "26", + "5340", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991437", + "991437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129456", + "1483134783", + "1483134810", + "1483129456", + "1", + "8", + "0", + "-1", + "27", + "5327", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991447", + "991447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129501", + "1483134825", + "1483134847", + "1483129501", + "1", + "8", + "0", + "-1", + "22", + "5324", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991451", + "991451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129519", + "1483134848", + "1483134873", + "1483129519", + "1", + "8", + "0", + "-1", + "25", + "5329", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991486", + "991486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129686", + "1483134991", + "1483135017", + "1483129686", + "1", + "8", + "0", + "-1", + "26", + "5305", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991508", + "991508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129747", + "1483135096", + "1483135120", + "1483129747", + "1", + "8", + "0", + "-1", + "24", + "5349", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991524", + "991524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129778", + "1483135150", + "1483135176", + "1483129778", + "1", + "8", + "0", + "-1", + "26", + "5372", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991539", + "991539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129803", + "1483135198", + "1483135220", + "1483129803", + "1", + "8", + "0", + "-1", + "22", + "5395", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991541", + "991541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129804", + "1483135201", + "1483135230", + "1483129804", + "1", + "8", + "0", + "-1", + "29", + "5397", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991548", + "991548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129815", + "1483135220", + "1483135241", + "1483129815", + "1", + "8", + "0", + "-1", + "21", + "5405", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991550", + "991550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129829", + "1483135226", + "1483135248", + "1483129829", + "1", + "8", + "0", + "-1", + "22", + "5397", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991562", + "991562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129878", + "1483135252", + "1483135272", + "1483129878", + "1", + "8", + "0", + "-1", + "20", + "5374", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991586", + "991586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129979", + "1483135335", + "1483135355", + "1483129979", + "1", + "8", + "0", + "-1", + "20", + "5356", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991588", + "991588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129998", + "1483135347", + "1483135370", + "1483129998", + "1", + "8", + "0", + "-1", + "23", + "5349", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991590", + "991590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129999", + "1483135356", + "1483135382", + "1483129999", + "1", + "8", + "0", + "-1", + "26", + "5357", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991600", + "991600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130030", + "1483135383", + "1483135406", + "1483130030", + "1", + "8", + "0", + "-1", + "23", + "5353", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991614", + "991614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130103", + "1483135460", + "1483135487", + "1483130103", + "1", + "8", + "0", + "-1", + "27", + "5357", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991632", + "991632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130182", + "1483135514", + "1483135541", + "1483130182", + "1", + "8", + "0", + "-1", + "27", + "5332", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991646", + "991646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130234", + "1483135569", + "1483135593", + "1483130234", + "1", + "8", + "0", + "-1", + "24", + "5335", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991686", + "991686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130376", + "1483135769", + "1483135796", + "1483130376", + "1", + "8", + "0", + "-1", + "27", + "5393", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991694", + "991694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130385", + "1483135797", + "1483135824", + "1483130385", + "1", + "8", + "0", + "-1", + "27", + "5412", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991702", + "991702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130423", + "1483135823", + "1483135852", + "1483130423", + "1", + "8", + "0", + "-1", + "29", + "5400", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991710", + "991710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130450", + "1483135878", + "1483135901", + "1483130450", + "1", + "8", + "0", + "-1", + "23", + "5428", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991730", + "991730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130486", + "1483135932", + "1483135961", + "1483130486", + "1", + "8", + "0", + "-1", + "29", + "5446", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991740", + "991740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130515", + "1483135965", + "1483135988", + "1483130515", + "1", + "8", + "0", + "-1", + "23", + "5450", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991742", + "991742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130516", + "1483135978", + "1483136001", + "1483130516", + "1", + "8", + "0", + "-1", + "23", + "5462", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991744", + "991744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130526", + "1483135982", + "1483135999", + "1483130526", + "1", + "8", + "0", + "-1", + "17", + "5456", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991748", + "991748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130532", + "1483135987", + "1483136009", + "1483130532", + "1", + "8", + "0", + "-1", + "22", + "5455", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991750", + "991750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130552", + "1483135989", + "1483136007", + "1483130552", + "1", + "8", + "0", + "-1", + "18", + "5437", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991758", + "991758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130569", + "1483136010", + "1483136028", + "1483130569", + "1", + "8", + "0", + "-1", + "18", + "5441", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991760", + "991760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130577", + "1483136010", + "1483136027", + "1483130577", + "1", + "8", + "0", + "-1", + "17", + "5433", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991764", + "991764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130587", + "1483136028", + "1483136057", + "1483130587", + "1", + "8", + "0", + "-1", + "29", + "5441", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991767", + "991767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130589", + "1483136030", + "1483136056", + "1483130589", + "1", + "8", + "0", + "-1", + "26", + "5441", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991769", + "991769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130590", + "1483136045", + "1483136073", + "1483130590", + "1", + "8", + "0", + "-1", + "28", + "5455", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991771", + "991771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130590", + "1483136055", + "1483136079", + "1483130590", + "1", + "8", + "0", + "-1", + "24", + "5465", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991778", + "991778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130601", + "1483136062", + "1483136087", + "1483130601", + "1", + "8", + "0", + "-1", + "25", + "5461", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991790", + "991790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130619", + "1483136096", + "1483136113", + "1483130619", + "1", + "8", + "0", + "-1", + "17", + "5477", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991792", + "991792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130619", + "1483136113", + "1483136135", + "1483130619", + "1", + "8", + "0", + "-1", + "22", + "5494", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991794", + "991794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130621", + "1483136116", + "1483136136", + "1483130621", + "1", + "8", + "0", + "-1", + "20", + "5495", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991808", + "991808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130655", + "1483136159", + "1483136181", + "1483130655", + "1", + "8", + "0", + "-1", + "22", + "5504", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991812", + "991812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130662", + "1483136169", + "1483136194", + "1483130662", + "1", + "8", + "0", + "-1", + "25", + "5507", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991834", + "991834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130734", + "1483136247", + "1483136276", + "1483130734", + "1", + "8", + "0", + "-1", + "29", + "5513", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991846", + "991846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130795", + "1483136294", + "1483136321", + "1483130795", + "1", + "8", + "0", + "-1", + "27", + "5499", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991850", + "991850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130797", + "1483136301", + "1483136330", + "1483130797", + "1", + "8", + "0", + "-1", + "29", + "5504", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991852", + "991852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130808", + "1483136301", + "1483136326", + "1483130808", + "1", + "8", + "0", + "-1", + "25", + "5493", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991856", + "991856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130820", + "1483136316", + "1483136338", + "1483130820", + "1", + "8", + "0", + "-1", + "22", + "5496", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991886", + "991886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130902", + "1483136404", + "1483136421", + "1483130902", + "1", + "8", + "0", + "-1", + "17", + "5502", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991908", + "991908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130939", + "1483136489", + "1483136514", + "1483130939", + "1", + "8", + "0", + "-1", + "25", + "5550", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991914", + "991914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130964", + "1483136518", + "1483136537", + "1483130964", + "1", + "8", + "0", + "-1", + "19", + "5554", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991936", + "991936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131034", + "1483136614", + "1483136642", + "1483131034", + "1", + "8", + "0", + "-1", + "28", + "5580", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992018", + "992018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131249", + "1483136993", + "1483137019", + "1483131249", + "1", + "8", + "0", + "-1", + "26", + "5744", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992040", + "992040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131304", + "1483137058", + "1483137082", + "1483131304", + "1", + "8", + "0", + "-1", + "24", + "5754", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992042", + "992042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131309", + "1483137077", + "1483137105", + "1483131309", + "1", + "8", + "0", + "-1", + "28", + "5768", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992050", + "992050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131329", + "1483137106", + "1483137135", + "1483131329", + "1", + "8", + "0", + "-1", + "29", + "5777", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992118", + "992118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131519", + "1483137388", + "1483137414", + "1483131519", + "1", + "8", + "0", + "-1", + "26", + "5869", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992146", + "992146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131614", + "1483137485", + "1483137505", + "1483131614", + "1", + "8", + "0", + "-1", + "20", + "5871", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992148", + "992148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131640", + "1483137487", + "1483137508", + "1483131640", + "1", + "8", + "0", + "-1", + "21", + "5847", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992154", + "992154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131646", + "1483137506", + "1483137531", + "1483131646", + "1", + "8", + "0", + "-1", + "25", + "5860", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992166", + "992166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131675", + "1483137582", + "1483137608", + "1483131675", + "1", + "8", + "0", + "-1", + "26", + "5907", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992168", + "992168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131678", + "1483137586", + "1483137608", + "1483131678", + "1", + "8", + "0", + "-1", + "22", + "5908", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992206", + "992206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131807", + "1483137696", + "1483137722", + "1483131807", + "1", + "8", + "0", + "-1", + "26", + "5889", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992210", + "992210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131832", + "1483137712", + "1483137741", + "1483131832", + "1", + "8", + "0", + "-1", + "29", + "5880", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992220", + "992220", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131873", + "1483137738", + "1483137766", + "1483131873", + "1", + "8", + "0", + "-1", + "28", + "5865", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992232", + "992232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131892", + "1483137789", + "1483137813", + "1483131892", + "1", + "8", + "0", + "-1", + "24", + "5897", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992234", + "992234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131903", + "1483137795", + "1483137821", + "1483131903", + "1", + "8", + "0", + "-1", + "26", + "5892", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992238", + "992238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131915", + "1483137808", + "1483137833", + "1483131915", + "1", + "8", + "0", + "-1", + "25", + "5893", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992242", + "992242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131929", + "1483137813", + "1483137838", + "1483131929", + "1", + "8", + "0", + "-1", + "25", + "5884", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992244", + "992244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131931", + "1483137822", + "1483137843", + "1483131931", + "1", + "8", + "0", + "-1", + "21", + "5891", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992250", + "992250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131954", + "1483137844", + "1483137872", + "1483131954", + "1", + "8", + "0", + "-1", + "28", + "5890", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992294", + "992294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132082", + "1483137980", + "1483138007", + "1483132082", + "1", + "8", + "0", + "-1", + "27", + "5898", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992298", + "992298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132099", + "1483138003", + "1483138029", + "1483132099", + "1", + "8", + "0", + "-1", + "26", + "5904", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992300", + "992300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132103", + "1483138007", + "1483138031", + "1483132103", + "1", + "8", + "0", + "-1", + "24", + "5904", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992358", + "992358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132311", + "1483138252", + "1483138273", + "1483132311", + "1", + "8", + "0", + "-1", + "21", + "5941", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992364", + "992364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132338", + "1483138285", + "1483138310", + "1483132338", + "1", + "8", + "0", + "-1", + "25", + "5947", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992374", + "992374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132379", + "1483138321", + "1483138349", + "1483132379", + "1", + "8", + "0", + "-1", + "28", + "5942", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992404", + "992404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132485", + "1483138421", + "1483138447", + "1483132485", + "1", + "8", + "0", + "-1", + "26", + "5936", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992410", + "992410", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132519", + "1483138448", + "1483138469", + "1483132519", + "1", + "8", + "0", + "-1", + "21", + "5929", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992414", + "992414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132528", + "1483138451", + "1483138474", + "1483132528", + "1", + "8", + "0", + "-1", + "23", + "5923", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992418", + "992418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132529", + "1483138474", + "1483138494", + "1483132529", + "1", + "8", + "0", + "-1", + "20", + "5945", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992424", + "992424", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132545", + "1483138494", + "1483138519", + "1483132545", + "1", + "8", + "0", + "-1", + "25", + "5949", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992426", + "992426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132557", + "1483138494", + "1483138515", + "1483132557", + "1", + "8", + "0", + "-1", + "21", + "5937", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992430", + "992430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132571", + "1483138499", + "1483138520", + "1483132571", + "1", + "8", + "0", + "-1", + "21", + "5928", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992436", + "992436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132584", + "1483138520", + "1483138538", + "1483132584", + "1", + "8", + "0", + "-1", + "18", + "5936", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992438", + "992438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132589", + "1483138521", + "1483138548", + "1483132589", + "1", + "8", + "0", + "-1", + "27", + "5932", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992440", + "992440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132589", + "1483138521", + "1483138548", + "1483132589", + "1", + "8", + "0", + "-1", + "27", + "5932", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992442", + "992442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132606", + "1483138535", + "1483138563", + "1483132606", + "1", + "8", + "0", + "-1", + "28", + "5929", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992448", + "992448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132618", + "1483138549", + "1483138576", + "1483132618", + "1", + "8", + "0", + "-1", + "27", + "5931", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992466", + "992466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132661", + "1483138625", + "1483138652", + "1483132661", + "1", + "8", + "0", + "-1", + "27", + "5964", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992472", + "992472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132676", + "1483138650", + "1483138674", + "1483132676", + "1", + "8", + "0", + "-1", + "24", + "5974", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992498", + "992498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132748", + "1483138727", + "1483138756", + "1483132748", + "1", + "8", + "0", + "-1", + "29", + "5979", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992520", + "992520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132810", + "1483138817", + "1483138846", + "1483132810", + "1", + "8", + "0", + "-1", + "29", + "6007", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992536", + "992536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132853", + "1483138880", + "1483138908", + "1483132853", + "1", + "8", + "0", + "-1", + "28", + "6027", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992538", + "992538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132884", + "1483138883", + "1483138906", + "1483132884", + "1", + "8", + "0", + "-1", + "23", + "5999", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992542", + "992542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132890", + "1483138891", + "1483138920", + "1483132890", + "1", + "8", + "0", + "-1", + "29", + "6001", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992609", + "992609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133091", + "1483139167", + "1483139191", + "1483133091", + "1", + "8", + "0", + "-1", + "24", + "6076", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992611", + "992611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133101", + "1483139189", + "1483139210", + "1483133101", + "1", + "8", + "0", + "-1", + "21", + "6088", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992615", + "992615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133110", + "1483139211", + "1483139238", + "1483133110", + "1", + "8", + "0", + "-1", + "27", + "6101", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992617", + "992617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133112", + "1483139224", + "1483139248", + "1483133112", + "1", + "8", + "0", + "-1", + "24", + "6112", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992629", + "992629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133177", + "1483139268", + "1483139293", + "1483133177", + "1", + "8", + "0", + "-1", + "25", + "6091", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992635", + "992635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133190", + "1483139293", + "1483139321", + "1483133190", + "1", + "8", + "0", + "-1", + "28", + "6103", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992638", + "992638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133201", + "1483139294", + "1483139319", + "1483133201", + "1", + "8", + "0", + "-1", + "25", + "6093", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992640", + "992640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133202", + "1483139300", + "1483139329", + "1483133202", + "1", + "8", + "0", + "-1", + "29", + "6098", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992654", + "992654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133220", + "1483139330", + "1483139359", + "1483133220", + "1", + "8", + "0", + "-1", + "29", + "6110", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992660", + "992660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133232", + "1483139342", + "1483139363", + "1483133232", + "1", + "8", + "0", + "-1", + "21", + "6110", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992662", + "992662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133233", + "1483139360", + "1483139382", + "1483133233", + "1", + "8", + "0", + "-1", + "22", + "6127", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992666", + "992666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133235", + "1483139364", + "1483139386", + "1483133235", + "1", + "8", + "0", + "-1", + "22", + "6129", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992706", + "992706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133324", + "1483139517", + "1483139536", + "1483133324", + "1", + "8", + "0", + "-1", + "19", + "6193", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992728", + "992728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133373", + "1483139579", + "1483139607", + "1483133373", + "1", + "8", + "0", + "-1", + "28", + "6206", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992730", + "992730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133378", + "1483139580", + "1483139603", + "1483133378", + "1", + "8", + "0", + "-1", + "23", + "6202", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992732", + "992732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133382", + "1483139591", + "1483139613", + "1483133382", + "1", + "8", + "0", + "-1", + "22", + "6209", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992754", + "992754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133435", + "1483139694", + "1483139716", + "1483133435", + "1", + "8", + "0", + "-1", + "22", + "6259", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992776", + "992776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133511", + "1483139775", + "1483139799", + "1483133511", + "1", + "8", + "0", + "-1", + "24", + "6264", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992780", + "992780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133517", + "1483139789", + "1483139806", + "1483133517", + "1", + "8", + "0", + "-1", + "17", + "6272", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992782", + "992782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133519", + "1483139790", + "1483139819", + "1483133519", + "1", + "8", + "0", + "-1", + "29", + "6271", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992784", + "992784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133522", + "1483139792", + "1483139812", + "1483133522", + "1", + "8", + "0", + "-1", + "20", + "6270", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992788", + "992788", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133525", + "1483139800", + "1483139823", + "1483133525", + "1", + "8", + "0", + "-1", + "23", + "6275", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992846", + "992846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133682", + "1483140057", + "1483140084", + "1483133682", + "1", + "8", + "0", + "-1", + "27", + "6375", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992874", + "992874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133732", + "1483140176", + "1483140202", + "1483133732", + "1", + "8", + "0", + "-1", + "26", + "6444", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992896", + "992896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133809", + "1483140316", + "1483140343", + "1483133809", + "1", + "8", + "0", + "-1", + "27", + "6507", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992904", + "992904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133817", + "1483140361", + "1483140385", + "1483133817", + "1", + "8", + "0", + "-1", + "24", + "6544", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992906", + "992906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133823", + "1483140365", + "1483140388", + "1483133823", + "1", + "8", + "0", + "-1", + "23", + "6542", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992908", + "992908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133824", + "1483140373", + "1483140397", + "1483133824", + "1", + "8", + "0", + "-1", + "24", + "6549", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992932", + "992932", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133885", + "1483140461", + "1483140482", + "1483133885", + "1", + "8", + "0", + "-1", + "21", + "6576", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993004", + "993004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134167", + "1483140795", + "1483140819", + "1483134167", + "1", + "8", + "0", + "-1", + "24", + "6628", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993006", + "993006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134171", + "1483140796", + "1483140821", + "1483134171", + "1", + "8", + "0", + "-1", + "25", + "6625", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993008", + "993008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134177", + "1483140803", + "1483140825", + "1483134177", + "1", + "8", + "0", + "-1", + "22", + "6626", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993014", + "993014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134191", + "1483140821", + "1483140848", + "1483134191", + "1", + "8", + "0", + "-1", + "27", + "6630", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993038", + "993038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134303", + "1483140879", + "1483140908", + "1483134303", + "1", + "8", + "0", + "-1", + "29", + "6576", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993060", + "993060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134348", + "1483140943", + "1483140968", + "1483134348", + "1", + "8", + "0", + "-1", + "25", + "6595", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993070", + "993070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134371", + "1483140964", + "1483140981", + "1483134371", + "1", + "8", + "0", + "-1", + "17", + "6593", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993088", + "993088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134443", + "1483141027", + "1483141049", + "1483134443", + "1", + "8", + "0", + "-1", + "22", + "6584", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993092", + "993092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134461", + "1483141047", + "1483141069", + "1483134461", + "1", + "8", + "0", + "-1", + "22", + "6586", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993094", + "993094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134477", + "1483141050", + "1483141072", + "1483134477", + "1", + "8", + "0", + "-1", + "22", + "6573", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993106", + "993106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134511", + "1483141065", + "1483141094", + "1483134511", + "1", + "8", + "0", + "-1", + "29", + "6554", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993108", + "993108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134528", + "1483141070", + "1483141098", + "1483134528", + "1", + "8", + "0", + "-1", + "28", + "6542", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993146", + "993146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134660", + "1483141200", + "1483141229", + "1483134660", + "1", + "8", + "0", + "-1", + "29", + "6540", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993190", + "993190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134787", + "1483141408", + "1483141433", + "1483134787", + "1", + "8", + "0", + "-1", + "25", + "6621", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993226", + "993226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134942", + "1483141537", + "1483141563", + "1483134942", + "1", + "8", + "0", + "-1", + "26", + "6595", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993228", + "993228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134954", + "1483141549", + "1483141570", + "1483134954", + "1", + "8", + "0", + "-1", + "21", + "6595", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993230", + "993230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134960", + "1483141555", + "1483141580", + "1483134960", + "1", + "8", + "0", + "-1", + "25", + "6595", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993242", + "993242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135017", + "1483141588", + "1483141613", + "1483135017", + "1", + "8", + "0", + "-1", + "25", + "6571", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993244", + "993244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135037", + "1483141609", + "1483141633", + "1483135037", + "1", + "8", + "0", + "-1", + "24", + "6572", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993252", + "993252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135060", + "1483141622", + "1483141651", + "1483135060", + "1", + "8", + "0", + "-1", + "29", + "6562", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993256", + "993256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135093", + "1483141631", + "1483141658", + "1483135093", + "1", + "8", + "0", + "-1", + "27", + "6538", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993260", + "993260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135105", + "1483141637", + "1483141660", + "1483135105", + "1", + "8", + "0", + "-1", + "23", + "6532", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993264", + "993264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135114", + "1483141652", + "1483141675", + "1483135114", + "1", + "8", + "0", + "-1", + "23", + "6538", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993268", + "993268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135134", + "1483141661", + "1483141689", + "1483135134", + "1", + "8", + "0", + "-1", + "28", + "6527", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993270", + "993270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135146", + "1483141671", + "1483141687", + "1483135146", + "1", + "8", + "0", + "-1", + "16", + "6525", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993274", + "993274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135151", + "1483141676", + "1483141701", + "1483135151", + "1", + "8", + "0", + "-1", + "25", + "6525", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993276", + "993276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135154", + "1483141686", + "1483141704", + "1483135154", + "1", + "8", + "0", + "-1", + "18", + "6532", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993278", + "993278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135166", + "1483141688", + "1483141710", + "1483135166", + "1", + "8", + "0", + "-1", + "22", + "6522", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993280", + "993280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135176", + "1483141690", + "1483141717", + "1483135176", + "1", + "8", + "0", + "-1", + "27", + "6514", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993324", + "993324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135304", + "1483141831", + "1483141860", + "1483135304", + "1", + "8", + "0", + "-1", + "29", + "6527", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993326", + "993326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135307", + "1483141837", + "1483141860", + "1483135307", + "1", + "8", + "0", + "-1", + "23", + "6530", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993336", + "993336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135355", + "1483141861", + "1483141886", + "1483135355", + "1", + "8", + "0", + "-1", + "25", + "6506", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993358", + "993358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135438", + "1483141933", + "1483141957", + "1483135438", + "1", + "8", + "0", + "-1", + "24", + "6495", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993378", + "993378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135514", + "1483142009", + "1483142035", + "1483135514", + "1", + "8", + "0", + "-1", + "26", + "6495", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993384", + "993384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135538", + "1483142036", + "1483142062", + "1483135538", + "1", + "8", + "0", + "-1", + "26", + "6498", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993406", + "993406", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135634", + "1483142132", + "1483142153", + "1483135634", + "1", + "8", + "0", + "-1", + "21", + "6498", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993408", + "993408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135658", + "1483142140", + "1483142151", + "1483135658", + "1", + "8", + "0", + "-1", + "11", + "6482", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993414", + "993414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135680", + "1483142154", + "1483142175", + "1483135680", + "1", + "8", + "0", + "-1", + "21", + "6474", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993422", + "993422", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135714", + "1483142196", + "1483142224", + "1483135714", + "1", + "8", + "0", + "-1", + "28", + "6482", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993438", + "993438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135796", + "1483142270", + "1483142294", + "1483135796", + "1", + "8", + "0", + "-1", + "24", + "6474", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993442", + "993442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135802", + "1483142288", + "1483142311", + "1483135802", + "1", + "8", + "0", + "-1", + "23", + "6486", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993456", + "993456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135877", + "1483142325", + "1483142348", + "1483135877", + "1", + "8", + "0", + "-1", + "23", + "6448", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993466", + "993466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135918", + "1483142349", + "1483142376", + "1483135918", + "1", + "8", + "0", + "-1", + "27", + "6431", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993468", + "993468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135919", + "1483142350", + "1483142377", + "1483135919", + "1", + "8", + "0", + "-1", + "27", + "6431", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993474", + "993474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135923", + "1483142368", + "1483142394", + "1483135923", + "1", + "8", + "0", + "-1", + "26", + "6445", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993478", + "993478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135935", + "1483142378", + "1483142401", + "1483135935", + "1", + "8", + "0", + "-1", + "23", + "6443", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177155", + "177155", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116434", + "1483120090", + "1483120104", + "1483116434", + "1", + "8", + "0", + "-1", + "14", + "3656", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177158", + "177158", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116435", + "1483120105", + "1483120124", + "1483116435", + "1", + "8", + "0", + "-1", + "19", + "3670", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177162", + "177162", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116436", + "1483120125", + "1483120140", + "1483116436", + "1", + "8", + "0", + "-1", + "15", + "3689", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177166", + "177166", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116436", + "1483120140", + "1483120159", + "1483116436", + "1", + "8", + "0", + "-1", + "19", + "3704", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177170", + "177170", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116437", + "1483120159", + "1483120173", + "1483116437", + "1", + "8", + "0", + "-1", + "14", + "3722", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177173", + "177173", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116438", + "1483120173", + "1483120187", + "1483116438", + "1", + "8", + "0", + "-1", + "14", + "3735", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177177", + "177177", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116438", + "1483120187", + "1483120206", + "1483116438", + "1", + "8", + "0", + "-1", + "19", + "3749", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177181", + "177181", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116439", + "1483120206", + "1483120228", + "1483116439", + "1", + "8", + "0", + "-1", + "22", + "3767", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177185", + "177185", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116440", + "1483120228", + "1483120242", + "1483116440", + "1", + "8", + "0", + "-1", + "14", + "3788", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177191", + "177191", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116441", + "1483120243", + "1483120254", + "1483116441", + "1", + "8", + "0", + "-1", + "11", + "3802", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177193", + "177193", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116442", + "1483120254", + "1483120269", + "1483116442", + "1", + "8", + "0", + "-1", + "15", + "3812", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177195", + "177195", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116442", + "1483120269", + "1483120285", + "1483116442", + "1", + "8", + "0", + "-1", + "16", + "3827", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177198", + "177198", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116442", + "1483120285", + "1483120308", + "1483116442", + "1", + "8", + "0", + "-1", + "23", + "3843", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177202", + "177202", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116443", + "1483120309", + "1483120322", + "1483116443", + "1", + "8", + "0", + "-1", + "13", + "3866", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177206", + "177206", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116444", + "1483120322", + "1483120336", + "1483116444", + "1", + "8", + "0", + "-1", + "14", + "3878", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177209", + "177209", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116444", + "1483120336", + "1483120356", + "1483116444", + "1", + "8", + "0", + "-1", + "20", + "3892", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177213", + "177213", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116445", + "1483120356", + "1483120378", + "1483116445", + "1", + "8", + "0", + "-1", + "22", + "3911", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177217", + "177217", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116446", + "1483120378", + "1483120391", + "1483116446", + "1", + "8", + "0", + "-1", + "13", + "3932", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177221", + "177221", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116447", + "1483120392", + "1483120408", + "1483116447", + "1", + "8", + "0", + "-1", + "16", + "3945", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177224", + "177224", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116447", + "1483120408", + "1483120420", + "1483116447", + "1", + "8", + "0", + "-1", + "12", + "3961", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177228", + "177228", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116448", + "1483120420", + "1483120437", + "1483116448", + "1", + "8", + "0", + "-1", + "17", + "3972", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177232", + "177232", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116449", + "1483120438", + "1483120452", + "1483116449", + "1", + "8", + "0", + "-1", + "14", + "3989", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177236", + "177236", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116450", + "1483120453", + "1483120464", + "1483116450", + "1", + "8", + "0", + "-1", + "11", + "4003", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177239", + "177239", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116450", + "1483120464", + "1483120487", + "1483116450", + "1", + "8", + "0", + "-1", + "23", + "4014", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177247", + "177247", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116452", + "1483120524", + "1483120549", + "1483116452", + "1", + "8", + "0", + "-1", + "25", + "4072", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177251", + "177251", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116453", + "1483120549", + "1483120568", + "1483116453", + "1", + "8", + "0", + "-1", + "19", + "4096", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177254", + "177254", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116453", + "1483120568", + "1483120579", + "1483116453", + "1", + "8", + "0", + "-1", + "11", + "4115", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177259", + "177259", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116454", + "1483120580", + "1483120605", + "1483116454", + "1", + "8", + "0", + "-1", + "25", + "4126", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177263", + "177263", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116455", + "1483120606", + "1483120618", + "1483116455", + "1", + "8", + "0", + "-1", + "12", + "4151", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177267", + "177267", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116456", + "1483120618", + "1483120628", + "1483116456", + "1", + "8", + "0", + "-1", + "10", + "4162", + "80", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177271", + "177271", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116457", + "1483120629", + "1483120654", + "1483116457", + "1", + "8", + "0", + "-1", + "25", + "4172", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177283", + "177283", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116459", + "1483120724", + "1483120740", + "1483116459", + "1", + "8", + "0", + "-1", + "16", + "4265", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177288", + "177288", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116460", + "1483120740", + "1483120757", + "1483116460", + "1", + "8", + "0", + "-1", + "17", + "4280", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177291", + "177291", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116461", + "1483120758", + "1483120785", + "1483116461", + "1", + "8", + "0", + "-1", + "27", + "4297", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177295", + "177295", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116461", + "1483120785", + "1483120799", + "1483116461", + "1", + "8", + "0", + "-1", + "14", + "4324", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177299", + "177299", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116462", + "1483120800", + "1483120814", + "1483116462", + "1", + "8", + "0", + "-1", + "14", + "4338", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177311", + "177311", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116465", + "1483120893", + "1483120909", + "1483116465", + "1", + "8", + "0", + "-1", + "16", + "4428", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177317", + "177317", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116466", + "1483120941", + "1483120954", + "1483116466", + "1", + "8", + "0", + "-1", + "13", + "4475", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177321", + "177321", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116466", + "1483120954", + "1483120970", + "1483116466", + "1", + "8", + "0", + "-1", + "16", + "4488", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177325", + "177325", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116467", + "1483120970", + "1483120986", + "1483116467", + "1", + "8", + "0", + "-1", + "16", + "4503", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177328", + "177328", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116468", + "1483120986", + "1483121000", + "1483116468", + "1", + "8", + "0", + "-1", + "14", + "4518", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177332", + "177332", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116469", + "1483121000", + "1483121021", + "1483116469", + "1", + "8", + "0", + "-1", + "21", + "4531", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177340", + "177340", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116470", + "1483121077", + "1483121104", + "1483116470", + "1", + "8", + "0", + "-1", + "27", + "4607", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177343", + "177343", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116471", + "1483121104", + "1483121120", + "1483116471", + "1", + "8", + "0", + "-1", + "16", + "4633", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177348", + "177348", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116472", + "1483121120", + "1483121132", + "1483116472", + "1", + "8", + "0", + "-1", + "12", + "4648", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177352", + "177352", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116473", + "1483121133", + "1483121149", + "1483116473", + "1", + "8", + "0", + "-1", + "16", + "4660", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177356", + "177356", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116473", + "1483121149", + "1483121164", + "1483116473", + "1", + "8", + "0", + "-1", + "15", + "4676", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177359", + "177359", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116474", + "1483121164", + "1483121185", + "1483116474", + "1", + "8", + "0", + "-1", + "21", + "4690", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177363", + "177363", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116475", + "1483121185", + "1483121207", + "1483116475", + "1", + "8", + "0", + "-1", + "22", + "4710", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177368", + "177368", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116476", + "1483121208", + "1483121232", + "1483116476", + "1", + "8", + "0", + "-1", + "24", + "4732", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177372", + "177372", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116477", + "1483121233", + "1483121248", + "1483116477", + "1", + "8", + "0", + "-1", + "15", + "4756", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177375", + "177375", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116477", + "1483121248", + "1483121263", + "1483116477", + "1", + "8", + "0", + "-1", + "15", + "4771", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177379", + "177379", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116478", + "1483121263", + "1483121276", + "1483116478", + "1", + "8", + "0", + "-1", + "13", + "4785", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177383", + "177383", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116479", + "1483121276", + "1483121292", + "1483116479", + "1", + "8", + "0", + "-1", + "16", + "4797", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177387", + "177387", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116480", + "1483121292", + "1483121306", + "1483116480", + "1", + "8", + "0", + "-1", + "14", + "4812", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177391", + "177391", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116480", + "1483121306", + "1483121319", + "1483116480", + "1", + "8", + "0", + "-1", + "13", + "4826", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177394", + "177394", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116481", + "1483121319", + "1483121348", + "1483116481", + "1", + "8", + "0", + "-1", + "29", + "4838", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177402", + "177402", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116482", + "1483121389", + "1483121410", + "1483116482", + "1", + "8", + "0", + "-1", + "21", + "4907", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177410", + "177410", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116484", + "1483121446", + "1483121470", + "1483116484", + "1", + "8", + "0", + "-1", + "24", + "4962", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177414", + "177414", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116485", + "1483121470", + "1483121498", + "1483116485", + "1", + "8", + "0", + "-1", + "28", + "4985", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177423", + "177423", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116487", + "1483121537", + "1483121562", + "1483116487", + "1", + "8", + "0", + "-1", + "25", + "5050", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177438", + "177438", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116490", + "1483121778", + "1483121799", + "1483116490", + "1", + "8", + "0", + "-1", + "21", + "5288", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177442", + "177442", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116490", + "1483121799", + "1483121816", + "1483116490", + "1", + "8", + "0", + "-1", + "17", + "5309", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177446", + "177446", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116491", + "1483121817", + "1483121834", + "1483116491", + "1", + "8", + "0", + "-1", + "17", + "5326", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177449", + "177449", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116492", + "1483121834", + "1483121848", + "1483116492", + "1", + "8", + "0", + "-1", + "14", + "5342", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177453", + "177453", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116492", + "1483121849", + "1483121861", + "1483116492", + "1", + "8", + "0", + "-1", + "12", + "5357", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177457", + "177457", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116493", + "1483121862", + "1483121884", + "1483116493", + "1", + "8", + "0", + "-1", + "22", + "5369", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177461", + "177461", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116494", + "1483121885", + "1483121906", + "1483116494", + "1", + "8", + "0", + "-1", + "21", + "5391", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177464", + "177464", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116495", + "1483121907", + "1483121932", + "1483116495", + "1", + "8", + "0", + "-1", + "25", + "5412", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177468", + "177468", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116495", + "1483121932", + "1483121947", + "1483116495", + "1", + "8", + "0", + "-1", + "15", + "5437", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177472", + "177472", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116496", + "1483121948", + "1483121959", + "1483116496", + "1", + "8", + "0", + "-1", + "11", + "5452", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177476", + "177476", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116497", + "1483121959", + "1483121976", + "1483116497", + "1", + "8", + "0", + "-1", + "17", + "5462", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177479", + "177479", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116497", + "1483121976", + "1483121991", + "1483116497", + "1", + "8", + "0", + "-1", + "15", + "5479", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177483", + "177483", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116498", + "1483121991", + "1483122010", + "1483116498", + "1", + "8", + "0", + "-1", + "19", + "5493", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177487", + "177487", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116499", + "1483122010", + "1483122032", + "1483116499", + "1", + "8", + "0", + "-1", + "22", + "5511", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177498", + "177498", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116501", + "1483122114", + "1483122129", + "1483116501", + "1", + "8", + "0", + "-1", + "15", + "5613", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177502", + "177502", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116502", + "1483122130", + "1483122141", + "1483116502", + "1", + "8", + "0", + "-1", + "11", + "5628", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177506", + "177506", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116503", + "1483122142", + "1483122157", + "1483116503", + "1", + "8", + "0", + "-1", + "15", + "5639", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177509", + "177509", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116503", + "1483122158", + "1483122172", + "1483116503", + "1", + "8", + "0", + "-1", + "14", + "5655", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177513", + "177513", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116504", + "1483122173", + "1483122185", + "1483116504", + "1", + "8", + "0", + "-1", + "12", + "5669", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177517", + "177517", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116505", + "1483122185", + "1483122196", + "1483116505", + "1", + "8", + "0", + "-1", + "11", + "5680", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177527", + "177527", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116507", + "1483122261", + "1483122274", + "1483116507", + "1", + "8", + "0", + "-1", + "13", + "5754", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177530", + "177530", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116507", + "1483122274", + "1483122294", + "1483116507", + "1", + "8", + "0", + "-1", + "20", + "5767", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177535", + "177535", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116509", + "1483122294", + "1483122310", + "1483116509", + "1", + "8", + "0", + "-1", + "16", + "5785", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177537", + "177537", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116509", + "1483122310", + "1483122328", + "1483116509", + "1", + "8", + "0", + "-1", + "18", + "5801", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177540", + "177540", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116509", + "1483122329", + "1483122350", + "1483116509", + "1", + "8", + "0", + "-1", + "21", + "5820", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177545", + "177545", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116510", + "1483122351", + "1483122364", + "1483116510", + "1", + "8", + "0", + "-1", + "13", + "5841", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177548", + "177548", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116511", + "1483122365", + "1483122376", + "1483116511", + "1", + "8", + "0", + "-1", + "11", + "5854", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177552", + "177552", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116512", + "1483122377", + "1483122402", + "1483116512", + "1", + "8", + "0", + "-1", + "25", + "5865", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177556", + "177556", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116513", + "1483122402", + "1483122423", + "1483116513", + "1", + "8", + "0", + "-1", + "21", + "5889", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177560", + "177560", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116513", + "1483122424", + "1483122442", + "1483116513", + "1", + "8", + "0", + "-1", + "18", + "5911", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177563", + "177563", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116514", + "1483122442", + "1483122460", + "1483116514", + "1", + "8", + "0", + "-1", + "18", + "5928", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177567", + "177567", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116515", + "1483122460", + "1483122482", + "1483116515", + "1", + "8", + "0", + "-1", + "22", + "5945", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177571", + "177571", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116515", + "1483122482", + "1483122501", + "1483116515", + "1", + "8", + "0", + "-1", + "19", + "5967", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177575", + "177575", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116516", + "1483122502", + "1483122517", + "1483116516", + "1", + "8", + "0", + "-1", + "15", + "5986", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177578", + "177578", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116517", + "1483122517", + "1483122530", + "1483116517", + "1", + "8", + "0", + "-1", + "13", + "6000", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177582", + "177582", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116518", + "1483122530", + "1483122552", + "1483116518", + "1", + "8", + "0", + "-1", + "22", + "6012", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177586", + "177586", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116518", + "1483122553", + "1483122578", + "1483116518", + "1", + "8", + "0", + "-1", + "25", + "6035", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177590", + "177590", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116519", + "1483122578", + "1483122598", + "1483116519", + "1", + "8", + "0", + "-1", + "20", + "6059", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177597", + "177597", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116521", + "1483122636", + "1483122651", + "1483116521", + "1", + "8", + "0", + "-1", + "15", + "6115", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177607", + "177607", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116523", + "1483122688", + "1483122710", + "1483116523", + "1", + "8", + "0", + "-1", + "22", + "6165", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177611", + "177611", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116523", + "1483122740", + "1483122762", + "1483116523", + "1", + "8", + "0", + "-1", + "22", + "6217", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177623", + "177623", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116526", + "1483122839", + "1483122857", + "1483116526", + "1", + "8", + "0", + "-1", + "18", + "6313", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177627", + "177627", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116526", + "1483122857", + "1483122876", + "1483116526", + "1", + "8", + "0", + "-1", + "19", + "6331", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177630", + "177630", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116527", + "1483122876", + "1483122896", + "1483116527", + "1", + "8", + "0", + "-1", + "20", + "6349", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177634", + "177634", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116528", + "1483122897", + "1483122924", + "1483116528", + "1", + "8", + "0", + "-1", + "27", + "6369", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177638", + "177638", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116529", + "1483122924", + "1483122943", + "1483116529", + "1", + "8", + "0", + "-1", + "19", + "6395", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177642", + "177642", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116529", + "1483122943", + "1483122961", + "1483116529", + "1", + "8", + "0", + "-1", + "18", + "6414", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177645", + "177645", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116530", + "1483122961", + "1483122987", + "1483116530", + "1", + "8", + "0", + "-1", + "26", + "6431", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177654", + "177654", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116532", + "1483123035", + "1483123054", + "1483116532", + "1", + "8", + "0", + "-1", + "19", + "6503", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177658", + "177658", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116533", + "1483123054", + "1483123071", + "1483116533", + "1", + "8", + "0", + "-1", + "17", + "6521", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177662", + "177662", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116533", + "1483123071", + "1483123091", + "1483116533", + "1", + "8", + "0", + "-1", + "20", + "6538", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177665", + "177665", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116534", + "1483123092", + "1483123113", + "1483116534", + "1", + "8", + "0", + "-1", + "21", + "6558", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177669", + "177669", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116535", + "1483123114", + "1483123131", + "1483116535", + "1", + "8", + "0", + "-1", + "17", + "6579", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177673", + "177673", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116536", + "1483123131", + "1483123149", + "1483116536", + "1", + "8", + "0", + "-1", + "18", + "6595", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177677", + "177677", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116536", + "1483123149", + "1483123173", + "1483116536", + "1", + "8", + "0", + "-1", + "24", + "6613", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177717", + "177717", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116545", + "1483123619", + "1483123643", + "1483116545", + "1", + "8", + "0", + "-1", + "24", + "7074", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177721", + "177721", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116546", + "1483123644", + "1483123670", + "1483116546", + "1", + "8", + "0", + "-1", + "26", + "7098", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177725", + "177725", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116546", + "1483123670", + "1483123697", + "1483116546", + "1", + "8", + "0", + "-1", + "27", + "7124", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177729", + "177729", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116547", + "1483123697", + "1483123724", + "1483116547", + "1", + "8", + "0", + "-1", + "27", + "7150", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177732", + "177732", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116548", + "1483123725", + "1483123747", + "1483116548", + "1", + "8", + "0", + "-1", + "22", + "7177", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177752", + "177752", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116552", + "1483123887", + "1483123906", + "1483116552", + "1", + "8", + "0", + "-1", + "19", + "7335", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177778", + "177778", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116557", + "1483124137", + "1483124158", + "1483116557", + "1", + "8", + "0", + "-1", + "21", + "7580", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177783", + "177783", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116558", + "1483124159", + "1483124175", + "1483116558", + "1", + "8", + "0", + "-1", + "16", + "7601", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177786", + "177786", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116558", + "1483124175", + "1483124196", + "1483116558", + "1", + "8", + "0", + "-1", + "21", + "7617", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177790", + "177790", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116559", + "1483124196", + "1483124220", + "1483116559", + "1", + "8", + "0", + "-1", + "24", + "7637", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177798", + "177798", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116561", + "1483124254", + "1483124281", + "1483116561", + "1", + "8", + "0", + "-1", + "27", + "7693", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177801", + "177801", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116561", + "1483124281", + "1483124307", + "1483116561", + "1", + "8", + "0", + "-1", + "26", + "7720", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177805", + "177805", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116562", + "1483124308", + "1483124335", + "1483116562", + "1", + "8", + "0", + "-1", + "27", + "7746", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177813", + "177813", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116564", + "1483124368", + "1483124388", + "1483116564", + "1", + "8", + "0", + "-1", + "20", + "7804", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177820", + "177820", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116565", + "1483124424", + "1483124444", + "1483116565", + "1", + "8", + "0", + "-1", + "20", + "7859", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177824", + "177824", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116566", + "1483124444", + "1483124460", + "1483116566", + "1", + "8", + "0", + "-1", + "16", + "7878", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177828", + "177828", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116567", + "1483124460", + "1483124484", + "1483116567", + "1", + "8", + "0", + "-1", + "24", + "7893", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177835", + "177835", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116568", + "1483124530", + "1483124554", + "1483116568", + "1", + "8", + "0", + "-1", + "24", + "7962", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177839", + "177839", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116569", + "1483124554", + "1483124578", + "1483116569", + "1", + "8", + "0", + "-1", + "24", + "7985", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177844", + "177844", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116570", + "1483124579", + "1483124600", + "1483116570", + "1", + "8", + "0", + "-1", + "21", + "8009", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177855", + "177855", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116572", + "1483124672", + "1483124688", + "1483116572", + "1", + "8", + "0", + "-1", + "16", + "8100", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177859", + "177859", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116573", + "1483124688", + "1483124706", + "1483116573", + "1", + "8", + "0", + "-1", + "18", + "8115", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177866", + "177866", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116574", + "1483124746", + "1483124773", + "1483116574", + "1", + "8", + "0", + "-1", + "27", + "8172", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177870", + "177870", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116575", + "1483124773", + "1483124793", + "1483116575", + "1", + "8", + "0", + "-1", + "20", + "8198", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177874", + "177874", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116576", + "1483124793", + "1483124816", + "1483116576", + "1", + "8", + "0", + "-1", + "23", + "8217", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177885", + "177885", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116578", + "1483124888", + "1483124910", + "1483116578", + "1", + "8", + "0", + "-1", + "22", + "8310", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177887", + "177887", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116578", + "1483124910", + "1483124930", + "1483116578", + "1", + "8", + "0", + "-1", + "20", + "8332", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177891", + "177891", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116579", + "1483124931", + "1483124949", + "1483116579", + "1", + "8", + "0", + "-1", + "18", + "8352", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177895", + "177895", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116580", + "1483124950", + "1483124979", + "1483116580", + "1", + "8", + "0", + "-1", + "29", + "8370", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177898", + "177898", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116580", + "1483124979", + "1483125004", + "1483116580", + "1", + "8", + "0", + "-1", + "25", + "8399", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177902", + "177902", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116581", + "1483125005", + "1483125024", + "1483116581", + "1", + "8", + "0", + "-1", + "19", + "8424", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177906", + "177906", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116582", + "1483125024", + "1483125052", + "1483116582", + "1", + "8", + "0", + "-1", + "28", + "8442", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177910", + "177910", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116583", + "1483125052", + "1483125075", + "1483116583", + "1", + "8", + "0", + "-1", + "23", + "8469", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177917", + "177917", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116584", + "1483125108", + "1483125129", + "1483116584", + "1", + "8", + "0", + "-1", + "21", + "8524", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177921", + "177921", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116585", + "1483125129", + "1483125149", + "1483116585", + "1", + "8", + "0", + "-1", + "20", + "8544", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177932", + "177932", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116587", + "1483125212", + "1483125239", + "1483116587", + "1", + "8", + "0", + "-1", + "27", + "8625", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177940", + "177940", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116589", + "1483125270", + "1483125289", + "1483116589", + "1", + "8", + "0", + "-1", + "19", + "8681", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177944", + "177944", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116589", + "1483125290", + "1483125309", + "1483116589", + "1", + "8", + "0", + "-1", + "19", + "8701", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177947", + "177947", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116590", + "1483125309", + "1483125330", + "1483116590", + "1", + "8", + "0", + "-1", + "21", + "8719", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177951", + "177951", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116591", + "1483125330", + "1483125344", + "1483116591", + "1", + "8", + "0", + "-1", + "14", + "8739", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177955", + "177955", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116592", + "1483125344", + "1483125371", + "1483116592", + "1", + "8", + "0", + "-1", + "27", + "8752", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177960", + "177960", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116593", + "1483125372", + "1483125395", + "1483116593", + "1", + "8", + "0", + "-1", + "23", + "8779", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177964", + "177964", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116593", + "1483125395", + "1483125412", + "1483116593", + "1", + "8", + "0", + "-1", + "17", + "8802", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177966", + "177966", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116594", + "1483125412", + "1483125428", + "1483116594", + "1", + "8", + "0", + "-1", + "16", + "8818", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177970", + "177970", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116595", + "1483125428", + "1483125450", + "1483116595", + "1", + "8", + "0", + "-1", + "22", + "8833", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177974", + "177974", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116595", + "1483125450", + "1483125467", + "1483116595", + "1", + "8", + "0", + "-1", + "17", + "8855", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177978", + "177978", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116596", + "1483125467", + "1483125493", + "1483116596", + "1", + "8", + "0", + "-1", + "26", + "8871", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177982", + "177982", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116597", + "1483125494", + "1483125511", + "1483116597", + "1", + "8", + "0", + "-1", + "17", + "8897", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177985", + "177985", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116598", + "1483125512", + "1483125525", + "1483116598", + "1", + "8", + "0", + "-1", + "13", + "8914", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177989", + "177989", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116598", + "1483125525", + "1483125549", + "1483116598", + "1", + "8", + "0", + "-1", + "24", + "8927", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177995", + "177995", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116600", + "1483125549", + "1483125572", + "1483116600", + "1", + "8", + "0", + "-1", + "23", + "8949", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177999", + "177999", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116601", + "1483125572", + "1483125591", + "1483116601", + "1", + "8", + "0", + "-1", + "19", + "8971", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178002", + "178002", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116601", + "1483125592", + "1483125609", + "1483116601", + "1", + "8", + "0", + "-1", + "17", + "8991", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178015", + "178015", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116604", + "1483125680", + "1483125708", + "1483116604", + "1", + "8", + "0", + "-1", + "28", + "9076", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178027", + "178027", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116606", + "1483125786", + "1483125804", + "1483116606", + "1", + "8", + "0", + "-1", + "18", + "9180", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178031", + "178031", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116607", + "1483125804", + "1483125822", + "1483116607", + "1", + "8", + "0", + "-1", + "18", + "9197", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178038", + "178038", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116609", + "1483125860", + "1483125887", + "1483116609", + "1", + "8", + "0", + "-1", + "27", + "9251", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178042", + "178042", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116609", + "1483125887", + "1483125906", + "1483116609", + "1", + "8", + "0", + "-1", + "19", + "9278", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178046", + "178046", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116610", + "1483125906", + "1483125922", + "1483116610", + "1", + "8", + "0", + "-1", + "16", + "9296", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178053", + "178053", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116611", + "1483125955", + "1483125984", + "1483116611", + "1", + "8", + "0", + "-1", + "29", + "9344", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178057", + "178057", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116612", + "1483125985", + "1483126004", + "1483116612", + "1", + "8", + "0", + "-1", + "19", + "9373", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178059", + "178059", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116613", + "1483126005", + "1483126025", + "1483116613", + "1", + "8", + "0", + "-1", + "20", + "9392", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178067", + "178067", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116614", + "1483126059", + "1483126087", + "1483116614", + "1", + "8", + "0", + "-1", + "28", + "9445", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178070", + "178070", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116615", + "1483126087", + "1483126109", + "1483116615", + "1", + "8", + "0", + "-1", + "22", + "9472", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178074", + "178074", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116615", + "1483126109", + "1483126127", + "1483116615", + "1", + "8", + "0", + "-1", + "18", + "9494", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178078", + "178078", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116616", + "1483126128", + "1483126151", + "1483116616", + "1", + "8", + "0", + "-1", + "23", + "9512", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178085", + "178085", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116618", + "1483126197", + "1483126224", + "1483116618", + "1", + "8", + "0", + "-1", + "27", + "9579", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178089", + "178089", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116618", + "1483126224", + "1483126248", + "1483116618", + "1", + "8", + "0", + "-1", + "24", + "9606", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178093", + "178093", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116619", + "1483126249", + "1483126267", + "1483116619", + "1", + "8", + "0", + "-1", + "18", + "9630", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178097", + "178097", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116620", + "1483126268", + "1483126287", + "1483116620", + "1", + "8", + "0", + "-1", + "19", + "9648", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178105", + "178105", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116622", + "1483126323", + "1483126340", + "1483116622", + "1", + "8", + "0", + "-1", + "17", + "9701", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178109", + "178109", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116622", + "1483126341", + "1483126360", + "1483116622", + "1", + "8", + "0", + "-1", + "19", + "9719", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178120", + "178120", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116625", + "1483126450", + "1483126475", + "1483116625", + "1", + "8", + "0", + "-1", + "25", + "9825", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178137", + "178137", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116628", + "1483126586", + "1483126607", + "1483116628", + "1", + "8", + "0", + "-1", + "21", + "9958", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178152", + "178152", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116631", + "1483126828", + "1483126849", + "1483116631", + "1", + "8", + "0", + "-1", + "21", + "10197", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178156", + "178156", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116632", + "1483126849", + "1483126876", + "1483116632", + "1", + "8", + "0", + "-1", + "27", + "10217", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178160", + "178160", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116633", + "1483126877", + "1483126895", + "1483116633", + "1", + "8", + "0", + "-1", + "18", + "10244", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178164", + "178164", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116633", + "1483126895", + "1483126912", + "1483116633", + "1", + "8", + "0", + "-1", + "17", + "10262", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178168", + "178168", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116634", + "1483126912", + "1483126928", + "1483116634", + "1", + "8", + "0", + "-1", + "16", + "10278", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178171", + "178171", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116635", + "1483126928", + "1483126952", + "1483116635", + "1", + "8", + "0", + "-1", + "24", + "10293", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178175", + "178175", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116636", + "1483126952", + "1483126980", + "1483116636", + "1", + "8", + "0", + "-1", + "28", + "10316", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178181", + "178181", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116637", + "1483127012", + "1483127036", + "1483116637", + "1", + "8", + "0", + "-1", + "24", + "10375", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178185", + "178185", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116638", + "1483127036", + "1483127052", + "1483116638", + "1", + "8", + "0", + "-1", + "16", + "10398", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178188", + "178188", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116638", + "1483127052", + "1483127074", + "1483116638", + "1", + "8", + "0", + "-1", + "22", + "10414", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178192", + "178192", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116639", + "1483127075", + "1483127100", + "1483116639", + "1", + "8", + "0", + "-1", + "25", + "10436", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178196", + "178196", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116640", + "1483127100", + "1483127124", + "1483116640", + "1", + "8", + "0", + "-1", + "24", + "10460", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178200", + "178200", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116641", + "1483127124", + "1483127138", + "1483116641", + "1", + "8", + "0", + "-1", + "14", + "10483", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178203", + "178203", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116641", + "1483127138", + "1483127154", + "1483116641", + "1", + "8", + "0", + "-1", + "16", + "10497", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178215", + "178215", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116644", + "1483127228", + "1483127245", + "1483116644", + "1", + "8", + "0", + "-1", + "17", + "10584", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178218", + "178218", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116644", + "1483127245", + "1483127262", + "1483116644", + "1", + "8", + "0", + "-1", + "17", + "10601", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178222", + "178222", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116645", + "1483127262", + "1483127279", + "1483116645", + "1", + "8", + "0", + "-1", + "17", + "10617", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178226", + "178226", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116646", + "1483127279", + "1483127304", + "1483116646", + "1", + "8", + "0", + "-1", + "25", + "10633", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178230", + "178230", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116647", + "1483127304", + "1483127321", + "1483116647", + "1", + "8", + "0", + "-1", + "17", + "10657", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178233", + "178233", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116647", + "1483127322", + "1483127334", + "1483116647", + "1", + "8", + "0", + "-1", + "12", + "10675", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178238", + "178238", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116648", + "1483127335", + "1483127357", + "1483116648", + "1", + "8", + "0", + "-1", + "22", + "10687", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178242", + "178242", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116649", + "1483127357", + "1483127383", + "1483116649", + "1", + "8", + "0", + "-1", + "26", + "10708", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178247", + "178247", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116650", + "1483127384", + "1483127401", + "1483116650", + "1", + "8", + "0", + "-1", + "17", + "10734", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178251", + "178251", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116651", + "1483127401", + "1483127425", + "1483116651", + "1", + "8", + "0", + "-1", + "24", + "10750", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178254", + "178254", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116652", + "1483127425", + "1483127446", + "1483116652", + "1", + "8", + "0", + "-1", + "21", + "10773", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178259", + "178259", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116653", + "1483127446", + "1483127464", + "1483116653", + "1", + "8", + "0", + "-1", + "18", + "10793", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178263", + "178263", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116653", + "1483127464", + "1483127478", + "1483116653", + "1", + "8", + "0", + "-1", + "14", + "10811", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178280", + "178280", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116657", + "1483127630", + "1483127658", + "1483116657", + "1", + "8", + "0", + "-1", + "28", + "10973", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178282", + "178282", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116657", + "1483127658", + "1483127675", + "1483116657", + "1", + "8", + "0", + "-1", + "17", + "11001", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178288", + "178288", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116658", + "1483127708", + "1483127731", + "1483116658", + "1", + "8", + "0", + "-1", + "23", + "11050", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178292", + "178292", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116659", + "1483127732", + "1483127748", + "1483116659", + "1", + "8", + "0", + "-1", + "16", + "11073", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178296", + "178296", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116660", + "1483127748", + "1483127765", + "1483116660", + "1", + "8", + "0", + "-1", + "17", + "11088", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178305", + "178305", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116662", + "1483127817", + "1483127841", + "1483116662", + "1", + "8", + "0", + "-1", + "24", + "11155", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178316", + "178316", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116664", + "1483127918", + "1483127939", + "1483116664", + "1", + "8", + "0", + "-1", + "21", + "11254", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178321", + "178321", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116665", + "1483127940", + "1483127960", + "1483116665", + "1", + "8", + "0", + "-1", + "20", + "11275", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178324", + "178324", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116666", + "1483127960", + "1483127977", + "1483116666", + "1", + "8", + "0", + "-1", + "17", + "11294", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178339", + "178339", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116669", + "1483128127", + "1483128154", + "1483116669", + "1", + "8", + "0", + "-1", + "27", + "11458", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178348", + "178348", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116671", + "1483128195", + "1483128224", + "1483116671", + "1", + "8", + "0", + "-1", + "29", + "11524", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178352", + "178352", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116671", + "1483128225", + "1483128248", + "1483116671", + "1", + "8", + "0", + "-1", + "23", + "11554", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178355", + "178355", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116672", + "1483128248", + "1483128276", + "1483116672", + "1", + "8", + "0", + "-1", + "28", + "11576", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178371", + "178371", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116675", + "1483128443", + "1483128470", + "1483116675", + "1", + "8", + "0", + "-1", + "27", + "11768", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178374", + "178374", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116676", + "1483128470", + "1483128491", + "1483116676", + "1", + "8", + "0", + "-1", + "21", + "11794", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178447", + "178447", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116691", + "1483129542", + "1483129569", + "1483116691", + "1", + "8", + "0", + "-1", + "27", + "12851", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178451", + "178451", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116691", + "1483129569", + "1483129596", + "1483116691", + "1", + "8", + "0", + "-1", + "27", + "12878", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178473", + "178473", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116696", + "1483129811", + "1483129840", + "1483116696", + "1", + "8", + "0", + "-1", + "29", + "13115", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178481", + "178481", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116697", + "1483129886", + "1483129912", + "1483116697", + "1", + "8", + "0", + "-1", + "26", + "13189", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178494", + "178494", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116700", + "1483130046", + "1483130074", + "1483116700", + "1", + "8", + "0", + "-1", + "28", + "13346", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178502", + "178502", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116701", + "1483130204", + "1483130230", + "1483116701", + "1", + "8", + "0", + "-1", + "26", + "13503", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178508", + "178508", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116702", + "1483130310", + "1483130339", + "1483116702", + "1", + "8", + "0", + "-1", + "29", + "13608", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178512", + "178512", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116702", + "1483130373", + "1483130399", + "1483116702", + "1", + "8", + "0", + "-1", + "26", + "13671", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178514", + "178514", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116702", + "1483130399", + "1483130425", + "1483116702", + "1", + "8", + "0", + "-1", + "26", + "13697", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178519", + "178519", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116703", + "1483130459", + "1483130484", + "1483116703", + "1", + "8", + "0", + "-1", + "25", + "13756", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178527", + "178527", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116704", + "1483130590", + "1483130618", + "1483116704", + "1", + "8", + "0", + "-1", + "28", + "13886", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178540", + "178540", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116706", + "1483130886", + "1483130912", + "1483116706", + "1", + "8", + "0", + "-1", + "26", + "14180", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178546", + "178546", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116707", + "1483130979", + "1483130995", + "1483116707", + "1", + "8", + "0", + "-1", + "16", + "14272", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178548", + "178548", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116707", + "1483130995", + "1483131017", + "1483116707", + "1", + "8", + "0", + "-1", + "22", + "14288", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178550", + "178550", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116708", + "1483131017", + "1483131040", + "1483116708", + "1", + "8", + "0", + "-1", + "23", + "14309", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178558", + "178558", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116709", + "1483131150", + "1483131169", + "1483116709", + "1", + "8", + "0", + "-1", + "19", + "14441", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178560", + "178560", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116709", + "1483131169", + "1483131188", + "1483116709", + "1", + "8", + "0", + "-1", + "19", + "14460", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178562", + "178562", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116709", + "1483131189", + "1483131210", + "1483116709", + "1", + "8", + "0", + "-1", + "21", + "14480", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178564", + "178564", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116710", + "1483131210", + "1483131226", + "1483116710", + "1", + "8", + "0", + "-1", + "16", + "14500", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178566", + "178566", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116710", + "1483131226", + "1483131245", + "1483116710", + "1", + "8", + "0", + "-1", + "19", + "14516", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178570", + "178570", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116711", + "1483131278", + "1483131300", + "1483116711", + "1", + "8", + "0", + "-1", + "22", + "14567", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178583", + "178583", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116713", + "1483131503", + "1483131532", + "1483116713", + "1", + "8", + "0", + "-1", + "29", + "14790", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178589", + "178589", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116714", + "1483131601", + "1483131616", + "1483116714", + "1", + "8", + "0", + "-1", + "15", + "14887", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178591", + "178591", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116714", + "1483131616", + "1483131635", + "1483116714", + "1", + "8", + "0", + "-1", + "19", + "14902", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178603", + "178603", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116715", + "1483131821", + "1483131846", + "1483116715", + "1", + "8", + "0", + "-1", + "25", + "15106", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178607", + "178607", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116716", + "1483131880", + "1483131897", + "1483116716", + "1", + "8", + "0", + "-1", + "17", + "15164", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178609", + "178609", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116716", + "1483131898", + "1483131918", + "1483116716", + "1", + "8", + "0", + "-1", + "20", + "15182", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178611", + "178611", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116717", + "1483131919", + "1483131937", + "1483116717", + "1", + "8", + "0", + "-1", + "18", + "15202", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178613", + "178613", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116717", + "1483131937", + "1483131963", + "1483116717", + "1", + "8", + "0", + "-1", + "26", + "15220", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178627", + "178627", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116719", + "1483132265", + "1483132289", + "1483116719", + "1", + "8", + "0", + "-1", + "24", + "15546", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178633", + "178633", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116720", + "1483132361", + "1483132387", + "1483116720", + "1", + "8", + "0", + "-1", + "26", + "15641", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178635", + "178635", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116720", + "1483132388", + "1483132411", + "1483116720", + "1", + "8", + "0", + "-1", + "23", + "15668", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178637", + "178637", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116720", + "1483132411", + "1483132436", + "1483116720", + "1", + "8", + "0", + "-1", + "25", + "15691", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178639", + "178639", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116720", + "1483132436", + "1483132464", + "1483116720", + "1", + "8", + "0", + "-1", + "28", + "15716", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178645", + "178645", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116721", + "1483132531", + "1483132551", + "1483116721", + "1", + "8", + "0", + "-1", + "20", + "15810", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178647", + "178647", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116722", + "1483132552", + "1483132578", + "1483116722", + "1", + "8", + "0", + "-1", + "26", + "15830", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178650", + "178650", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116722", + "1483132579", + "1483132596", + "1483116722", + "1", + "8", + "0", + "-1", + "17", + "15857", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178652", + "178652", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116722", + "1483132596", + "1483132614", + "1483116722", + "1", + "8", + "0", + "-1", + "18", + "15874", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178654", + "178654", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116723", + "1483132614", + "1483132635", + "1483116723", + "1", + "8", + "0", + "-1", + "21", + "15891", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178658", + "178658", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116723", + "1483132669", + "1483132693", + "1483116723", + "1", + "8", + "0", + "-1", + "24", + "15946", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178666", + "178666", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116724", + "1483132871", + "1483132896", + "1483116724", + "1", + "8", + "0", + "-1", + "25", + "16147", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178671", + "178671", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116725", + "1483132944", + "1483132966", + "1483116725", + "1", + "8", + "0", + "-1", + "22", + "16219", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178673", + "178673", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116725", + "1483132966", + "1483132993", + "1483116725", + "1", + "8", + "0", + "-1", + "27", + "16241", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178678", + "178678", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116726", + "1483133029", + "1483133049", + "1483116726", + "1", + "8", + "0", + "-1", + "20", + "16303", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178680", + "178680", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116726", + "1483133049", + "1483133077", + "1483116726", + "1", + "8", + "0", + "-1", + "28", + "16323", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178682", + "178682", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116727", + "1483133077", + "1483133099", + "1483116727", + "1", + "8", + "0", + "-1", + "22", + "16350", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178686", + "178686", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116727", + "1483133137", + "1483133159", + "1483116727", + "1", + "8", + "0", + "-1", + "22", + "16410", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178688", + "178688", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116728", + "1483133159", + "1483133178", + "1483116728", + "1", + "8", + "0", + "-1", + "19", + "16431", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178690", + "178690", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116728", + "1483133179", + "1483133199", + "1483116728", + "1", + "8", + "0", + "-1", + "20", + "16451", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178692", + "178692", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116728", + "1483133199", + "1483133222", + "1483116728", + "1", + "8", + "0", + "-1", + "23", + "16471", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178694", + "178694", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116728", + "1483133222", + "1483133243", + "1483116728", + "1", + "8", + "0", + "-1", + "21", + "16494", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178696", + "178696", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116729", + "1483133243", + "1483133260", + "1483116729", + "1", + "8", + "0", + "-1", + "17", + "16514", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178698", + "178698", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116729", + "1483133260", + "1483133280", + "1483116729", + "1", + "8", + "0", + "-1", + "20", + "16531", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178703", + "178703", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116730", + "1483133313", + "1483133339", + "1483116730", + "1", + "8", + "0", + "-1", + "26", + "16583", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178711", + "178711", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116731", + "1483133489", + "1483133515", + "1483116731", + "1", + "8", + "0", + "-1", + "26", + "16758", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178715", + "178715", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116731", + "1483133545", + "1483133567", + "1483116731", + "1", + "8", + "0", + "-1", + "22", + "16814", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178717", + "178717", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116732", + "1483133567", + "1483133590", + "1483116732", + "1", + "8", + "0", + "-1", + "23", + "16835", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178719", + "178719", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116732", + "1483133590", + "1483133608", + "1483116732", + "1", + "8", + "0", + "-1", + "18", + "16858", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178721", + "178721", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116732", + "1483133608", + "1483133631", + "1483116732", + "1", + "8", + "0", + "-1", + "23", + "16876", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178723", + "178723", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116732", + "1483133631", + "1483133659", + "1483116732", + "1", + "8", + "0", + "-1", + "28", + "16899", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178725", + "178725", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116733", + "1483133660", + "1483133686", + "1483116733", + "1", + "8", + "0", + "-1", + "26", + "16927", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178727", + "178727", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116733", + "1483133687", + "1483133708", + "1483116733", + "1", + "8", + "0", + "-1", + "21", + "16954", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178729", + "178729", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116733", + "1483133709", + "1483133727", + "1483116733", + "1", + "8", + "0", + "-1", + "18", + "16976", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178731", + "178731", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116734", + "1483133727", + "1483133753", + "1483116734", + "1", + "8", + "0", + "-1", + "26", + "16993", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178733", + "178733", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116734", + "1483133753", + "1483133775", + "1483116734", + "1", + "8", + "0", + "-1", + "22", + "17019", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178737", + "178737", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116734", + "1483133809", + "1483133825", + "1483116734", + "1", + "8", + "0", + "-1", + "16", + "17075", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178739", + "178739", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116735", + "1483133826", + "1483133842", + "1483116735", + "1", + "8", + "0", + "-1", + "16", + "17091", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178741", + "178741", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116735", + "1483133842", + "1483133859", + "1483116735", + "1", + "8", + "0", + "-1", + "17", + "17107", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178743", + "178743", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116735", + "1483133860", + "1483133880", + "1483116735", + "1", + "8", + "0", + "-1", + "20", + "17125", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178745", + "178745", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116735", + "1483133880", + "1483133908", + "1483116736", + "1", + "8", + "0", + "-1", + "28", + "17145", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178755", + "178755", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116737", + "1483134100", + "1483134125", + "1483116737", + "1", + "8", + "0", + "-1", + "25", + "17363", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178761", + "178761", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116738", + "1483134206", + "1483134229", + "1483116738", + "1", + "8", + "0", + "-1", + "23", + "17468", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178764", + "178764", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116738", + "1483134229", + "1483134246", + "1483116738", + "1", + "8", + "0", + "-1", + "17", + "17491", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178766", + "178766", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116739", + "1483134246", + "1483134264", + "1483116739", + "1", + "8", + "0", + "-1", + "18", + "17507", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178768", + "178768", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116739", + "1483134264", + "1483134282", + "1483116739", + "1", + "8", + "0", + "-1", + "18", + "17525", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178770", + "178770", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116739", + "1483134283", + "1483134303", + "1483116739", + "1", + "8", + "0", + "-1", + "20", + "17544", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178772", + "178772", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116739", + "1483134304", + "1483134332", + "1483116739", + "1", + "8", + "0", + "-1", + "28", + "17565", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178774", + "178774", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116740", + "1483134332", + "1483134351", + "1483116740", + "1", + "8", + "0", + "-1", + "19", + "17592", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178776", + "178776", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116740", + "1483134352", + "1483134376", + "1483116740", + "1", + "8", + "0", + "-1", + "24", + "17612", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178780", + "178780", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116741", + "1483134409", + "1483134436", + "1483116741", + "1", + "8", + "0", + "-1", + "27", + "17668", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178782", + "178782", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116741", + "1483134437", + "1483134453", + "1483116741", + "1", + "8", + "0", + "-1", + "16", + "17696", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178784", + "178784", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116741", + "1483134453", + "1483134469", + "1483116741", + "1", + "8", + "0", + "-1", + "16", + "17712", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178786", + "178786", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116741", + "1483134470", + "1483134484", + "1483116741", + "1", + "8", + "0", + "-1", + "14", + "17729", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178788", + "178788", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116742", + "1483134484", + "1483134505", + "1483116742", + "1", + "8", + "0", + "-1", + "21", + "17742", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178790", + "178790", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116742", + "1483134506", + "1483134527", + "1483116742", + "1", + "8", + "0", + "-1", + "21", + "17764", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178792", + "178792", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116742", + "1483134527", + "1483134545", + "1483116742", + "1", + "8", + "0", + "-1", + "18", + "17785", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178796", + "178796", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116743", + "1483134577", + "1483134601", + "1483116743", + "1", + "8", + "0", + "-1", + "24", + "17834", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178800", + "178800", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116743", + "1483134678", + "1483134702", + "1483116743", + "1", + "8", + "0", + "-1", + "24", + "17935", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178802", + "178802", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116743", + "1483134703", + "1483134731", + "1483116743", + "1", + "8", + "0", + "-1", + "28", + "17960", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6111113", + "6111113", + "Robertson", + "UTC", + "", + "Warbler, Golden-winged", + "Screwdriver", + "curry", + "1483126547", + "1483140171", + "1483140196", + "1483126547", + "2", + "24", + "0", + "-1", + "25", + "13624", + "600", + "0", + "0:0", + "COMPLETED", + "24", + "60000Mn", + "64800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Economics" + ], + [ + "178806", + "178806", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116744", + "1483134769", + "1483134796", + "1483116744", + "1", + "8", + "0", + "-1", + "27", + "18025", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178808", + "178808", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116744", + "1483134797", + "1483134821", + "1483116744", + "1", + "8", + "0", + "-1", + "24", + "18053", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178810", + "178810", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116745", + "1483134821", + "1483134847", + "1483116745", + "1", + "8", + "0", + "-1", + "26", + "18076", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178812", + "178812", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116745", + "1483134848", + "1483134873", + "1483116745", + "1", + "8", + "0", + "-1", + "25", + "18103", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178816", + "178816", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116746", + "1483134874", + "1483134895", + "1483116746", + "1", + "8", + "0", + "-1", + "21", + "18128", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178818", + "178818", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116746", + "1483134896", + "1483134920", + "1483116746", + "1", + "8", + "0", + "-1", + "24", + "18150", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178822", + "178822", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116746", + "1483134956", + "1483134977", + "1483116746", + "1", + "8", + "0", + "-1", + "21", + "18210", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178824", + "178824", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116747", + "1483134978", + "1483134998", + "1483116747", + "1", + "8", + "0", + "-1", + "20", + "18231", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178826", + "178826", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116747", + "1483134999", + "1483135018", + "1483116747", + "1", + "8", + "0", + "-1", + "19", + "18252", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178828", + "178828", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116747", + "1483135018", + "1483135037", + "1483116747", + "1", + "8", + "0", + "-1", + "19", + "18271", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178830", + "178830", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116748", + "1483135038", + "1483135054", + "1483116748", + "1", + "8", + "0", + "-1", + "16", + "18290", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178834", + "178834", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116748", + "1483135087", + "1483135105", + "1483116748", + "1", + "8", + "0", + "-1", + "18", + "18339", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178836", + "178836", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116748", + "1483135105", + "1483135128", + "1483116748", + "1", + "8", + "0", + "-1", + "23", + "18357", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178850", + "178850", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116750", + "1483135425", + "1483135450", + "1483116750", + "1", + "8", + "0", + "-1", + "25", + "18675", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178852", + "178852", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116751", + "1483135451", + "1483135475", + "1483116751", + "1", + "8", + "0", + "-1", + "24", + "18700", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178854", + "178854", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116751", + "1483135476", + "1483135505", + "1483116751", + "1", + "8", + "0", + "-1", + "29", + "18725", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178858", + "178858", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116751", + "1483135544", + "1483135569", + "1483116751", + "1", + "8", + "0", + "-1", + "25", + "18793", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178860", + "178860", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116752", + "1483135570", + "1483135590", + "1483116752", + "1", + "8", + "0", + "-1", + "20", + "18818", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178862", + "178862", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116752", + "1483135591", + "1483135615", + "1483116752", + "1", + "8", + "0", + "-1", + "24", + "18839", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178866", + "178866", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116752", + "1483135651", + "1483135679", + "1483116752", + "1", + "8", + "0", + "-1", + "28", + "18899", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178868", + "178868", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116753", + "1483135679", + "1483135706", + "1483116753", + "1", + "8", + "0", + "-1", + "27", + "18926", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178870", + "178870", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116753", + "1483135706", + "1483135734", + "1483116753", + "1", + "8", + "0", + "-1", + "28", + "18953", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178872", + "178872", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116753", + "1483135734", + "1483135754", + "1483116753", + "1", + "8", + "0", + "-1", + "20", + "18981", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178874", + "178874", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116753", + "1483135755", + "1483135772", + "1483116753", + "1", + "8", + "0", + "-1", + "17", + "19002", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178876", + "178876", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116754", + "1483135772", + "1483135790", + "1483116754", + "1", + "8", + "0", + "-1", + "18", + "19018", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178880", + "178880", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116754", + "1483135824", + "1483135847", + "1483116754", + "1", + "8", + "0", + "-1", + "23", + "19070", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178882", + "178882", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116755", + "1483135847", + "1483135870", + "1483116755", + "1", + "8", + "0", + "-1", + "23", + "19092", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178896", + "178896", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116756", + "1483136198", + "1483136223", + "1483116756", + "1", + "8", + "0", + "-1", + "25", + "19442", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178898", + "178898", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116757", + "1483136224", + "1483136250", + "1483116757", + "1", + "8", + "0", + "-1", + "26", + "19467", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178900", + "178900", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116757", + "1483136250", + "1483136276", + "1483116757", + "1", + "8", + "0", + "-1", + "26", + "19493", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178902", + "178902", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116757", + "1483136277", + "1483136298", + "1483116757", + "1", + "8", + "0", + "-1", + "21", + "19520", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178904", + "178904", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116758", + "1483136298", + "1483136320", + "1483116758", + "1", + "8", + "0", + "-1", + "22", + "19540", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178906", + "178906", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116758", + "1483136321", + "1483136345", + "1483116758", + "1", + "8", + "0", + "-1", + "24", + "19563", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178908", + "178908", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116758", + "1483136346", + "1483136374", + "1483116758", + "1", + "8", + "0", + "-1", + "28", + "19588", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178910", + "178910", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116758", + "1483136375", + "1483136401", + "1483116758", + "1", + "8", + "0", + "-1", + "26", + "19617", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178912", + "178912", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116759", + "1483136402", + "1483136431", + "1483116759", + "1", + "8", + "0", + "-1", + "29", + "19643", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178914", + "178914", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116759", + "1483136431", + "1483136454", + "1483116759", + "1", + "8", + "0", + "-1", + "23", + "19672", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178918", + "178918", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116759", + "1483136487", + "1483136513", + "1483116759", + "1", + "8", + "0", + "-1", + "26", + "19728", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178920", + "178920", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116760", + "1483136513", + "1483136530", + "1483116760", + "1", + "8", + "0", + "-1", + "17", + "19753", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178922", + "178922", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116760", + "1483136531", + "1483136550", + "1483116760", + "1", + "8", + "0", + "-1", + "19", + "19771", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178924", + "178924", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116760", + "1483136550", + "1483136570", + "1483116760", + "1", + "8", + "0", + "-1", + "20", + "19790", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178928", + "178928", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116761", + "1483136605", + "1483136631", + "1483116761", + "1", + "8", + "0", + "-1", + "26", + "19844", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178930", + "178930", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116761", + "1483136631", + "1483136657", + "1483116761", + "1", + "8", + "0", + "-1", + "26", + "19870", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178949", + "178949", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116764", + "1483136999", + "1483137023", + "1483116764", + "1", + "8", + "0", + "-1", + "24", + "20235", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178951", + "178951", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116764", + "1483137023", + "1483137044", + "1483116764", + "1", + "8", + "0", + "-1", + "21", + "20259", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178953", + "178953", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116764", + "1483137044", + "1483137069", + "1483116764", + "1", + "8", + "0", + "-1", + "25", + "20280", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178955", + "178955", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116765", + "1483137070", + "1483137091", + "1483116765", + "1", + "8", + "0", + "-1", + "21", + "20305", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178957", + "178957", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116765", + "1483137092", + "1483137112", + "1483116765", + "1", + "8", + "0", + "-1", + "20", + "20327", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178959", + "178959", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116765", + "1483137113", + "1483137136", + "1483116765", + "1", + "8", + "0", + "-1", + "23", + "20348", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178963", + "178963", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116766", + "1483137176", + "1483137199", + "1483116766", + "1", + "8", + "0", + "-1", + "23", + "20410", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178965", + "178965", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116766", + "1483137199", + "1483137228", + "1483116766", + "1", + "8", + "0", + "-1", + "29", + "20433", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178967", + "178967", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116766", + "1483137228", + "1483137250", + "1483116766", + "1", + "8", + "0", + "-1", + "22", + "20462", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178969", + "178969", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116766", + "1483137250", + "1483137275", + "1483116766", + "1", + "8", + "0", + "-1", + "25", + "20484", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178971", + "178971", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116767", + "1483137275", + "1483137295", + "1483116767", + "1", + "8", + "0", + "-1", + "20", + "20508", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178982", + "178982", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116768", + "1483137509", + "1483137537", + "1483116768", + "1", + "8", + "0", + "-1", + "28", + "20741", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178988", + "178988", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116769", + "1483137616", + "1483137642", + "1483116769", + "1", + "8", + "0", + "-1", + "26", + "20847", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179004", + "179004", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116771", + "1483137927", + "1483137947", + "1483116771", + "1", + "8", + "0", + "-1", + "20", + "21156", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179012", + "179012", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116772", + "1483138069", + "1483138087", + "1483116772", + "1", + "8", + "0", + "-1", + "18", + "21297", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179030", + "179030", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116775", + "1483138574", + "1483138595", + "1483116775", + "1", + "8", + "0", + "-1", + "21", + "21799", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179032", + "179032", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116775", + "1483138596", + "1483138613", + "1483116775", + "1", + "8", + "0", + "-1", + "17", + "21821", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179036", + "179036", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116776", + "1483138648", + "1483138666", + "1483116776", + "1", + "8", + "0", + "-1", + "18", + "21872", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179038", + "179038", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116776", + "1483138666", + "1483138687", + "1483116776", + "1", + "8", + "0", + "-1", + "21", + "21890", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179040", + "179040", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116777", + "1483138688", + "1483138716", + "1483116777", + "1", + "8", + "0", + "-1", + "28", + "21911", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179042", + "179042", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116777", + "1483138717", + "1483138745", + "1483116777", + "1", + "8", + "0", + "-1", + "28", + "21940", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179044", + "179044", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116777", + "1483138745", + "1483138765", + "1483116777", + "1", + "8", + "0", + "-1", + "20", + "21968", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179046", + "179046", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116777", + "1483138766", + "1483138787", + "1483116777", + "1", + "8", + "0", + "-1", + "21", + "21989", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179048", + "179048", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116778", + "1483138788", + "1483138807", + "1483116778", + "1", + "8", + "0", + "-1", + "19", + "22010", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179052", + "179052", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116778", + "1483138839", + "1483138859", + "1483116778", + "1", + "8", + "0", + "-1", + "20", + "22061", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179054", + "179054", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116778", + "1483138860", + "1483138876", + "1483116778", + "1", + "8", + "0", + "-1", + "16", + "22082", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179056", + "179056", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116779", + "1483138877", + "1483138893", + "1483116779", + "1", + "8", + "0", + "-1", + "16", + "22098", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179058", + "179058", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116779", + "1483138893", + "1483138909", + "1483116779", + "1", + "8", + "0", + "-1", + "16", + "22114", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179064", + "179064", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116780", + "1483138956", + "1483138979", + "1483116780", + "1", + "8", + "0", + "-1", + "23", + "22176", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179070", + "179070", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116781", + "1483139111", + "1483139139", + "1483116781", + "1", + "8", + "0", + "-1", + "28", + "22330", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179076", + "179076", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116782", + "1483139208", + "1483139228", + "1483116782", + "1", + "8", + "0", + "-1", + "20", + "22426", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179078", + "179078", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116782", + "1483139229", + "1483139255", + "1483116782", + "1", + "8", + "0", + "-1", + "26", + "22447", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179080", + "179080", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116782", + "1483139255", + "1483139278", + "1483116782", + "1", + "8", + "0", + "-1", + "23", + "22473", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179082", + "179082", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116782", + "1483139278", + "1483139295", + "1483116782", + "1", + "8", + "0", + "-1", + "17", + "22496", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179084", + "179084", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116783", + "1483139295", + "1483139322", + "1483116783", + "1", + "8", + "0", + "-1", + "27", + "22512", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179086", + "179086", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116783", + "1483139322", + "1483139345", + "1483116783", + "1", + "8", + "0", + "-1", + "23", + "22539", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179088", + "179088", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116783", + "1483139345", + "1483139371", + "1483116783", + "1", + "8", + "0", + "-1", + "26", + "22562", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179090", + "179090", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116784", + "1483139371", + "1483139390", + "1483116784", + "1", + "8", + "0", + "-1", + "19", + "22587", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179092", + "179092", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116784", + "1483139391", + "1483139413", + "1483116784", + "1", + "8", + "0", + "-1", + "22", + "22607", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179094", + "179094", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116784", + "1483139414", + "1483139442", + "1483116784", + "1", + "8", + "0", + "-1", + "28", + "22630", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179096", + "179096", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116784", + "1483139442", + "1483139459", + "1483116784", + "1", + "8", + "0", + "-1", + "17", + "22658", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179098", + "179098", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116785", + "1483139460", + "1483139481", + "1483116785", + "1", + "8", + "0", + "-1", + "21", + "22675", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179100", + "179100", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116785", + "1483139481", + "1483139495", + "1483116785", + "1", + "8", + "0", + "-1", + "14", + "22696", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179102", + "179102", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116785", + "1483139496", + "1483139523", + "1483116785", + "1", + "8", + "0", + "-1", + "27", + "22711", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179104", + "179104", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116786", + "1483139523", + "1483139538", + "1483116786", + "1", + "8", + "0", + "-1", + "15", + "22737", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179109", + "179109", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116786", + "1483139578", + "1483139604", + "1483116786", + "1", + "8", + "0", + "-1", + "26", + "22792", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179117", + "179117", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116787", + "1483139773", + "1483139798", + "1483116787", + "1", + "8", + "0", + "-1", + "25", + "22986", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179119", + "179119", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116788", + "1483139798", + "1483139822", + "1483116788", + "1", + "8", + "0", + "-1", + "24", + "23010", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179121", + "179121", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116788", + "1483139823", + "1483139844", + "1483116788", + "1", + "8", + "0", + "-1", + "21", + "23035", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179123", + "179123", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116788", + "1483139844", + "1483139867", + "1483116788", + "1", + "8", + "0", + "-1", + "23", + "23056", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179125", + "179125", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116788", + "1483139868", + "1483139889", + "1483116788", + "1", + "8", + "0", + "-1", + "21", + "23080", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179127", + "179127", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116789", + "1483139889", + "1483139907", + "1483116789", + "1", + "8", + "0", + "-1", + "18", + "23100", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179130", + "179130", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116789", + "1483139907", + "1483139932", + "1483116789", + "1", + "8", + "0", + "-1", + "25", + "23118", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179132", + "179132", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116790", + "1483139932", + "1483139953", + "1483116790", + "1", + "8", + "0", + "-1", + "21", + "23142", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179134", + "179134", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116790", + "1483139953", + "1483139974", + "1483116790", + "1", + "8", + "0", + "-1", + "21", + "23163", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179136", + "179136", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116790", + "1483139975", + "1483140000", + "1483116790", + "1", + "8", + "0", + "-1", + "25", + "23185", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179138", + "179138", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116790", + "1483140000", + "1483140017", + "1483116790", + "1", + "8", + "0", + "-1", + "17", + "23210", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179140", + "179140", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116791", + "1483140018", + "1483140034", + "1483116791", + "1", + "8", + "0", + "-1", + "16", + "23227", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179142", + "179142", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116791", + "1483140035", + "1483140057", + "1483116791", + "1", + "8", + "0", + "-1", + "22", + "23244", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179144", + "179144", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116791", + "1483140058", + "1483140074", + "1483116791", + "1", + "8", + "0", + "-1", + "16", + "23267", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179147", + "179147", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116792", + "1483140074", + "1483140097", + "1483116792", + "1", + "8", + "0", + "-1", + "23", + "23282", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179149", + "179149", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116792", + "1483140097", + "1483140121", + "1483116792", + "1", + "8", + "0", + "-1", + "24", + "23305", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179151", + "179151", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116792", + "1483140122", + "1483140147", + "1483116792", + "1", + "8", + "0", + "-1", + "25", + "23330", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179158", + "179158", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116793", + "1483140265", + "1483140288", + "1483116793", + "1", + "8", + "0", + "-1", + "23", + "23472", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179160", + "179160", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116794", + "1483140289", + "1483140318", + "1483116794", + "1", + "8", + "0", + "-1", + "29", + "23495", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179162", + "179162", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116794", + "1483140318", + "1483140341", + "1483116794", + "1", + "8", + "0", + "-1", + "23", + "23524", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179164", + "179164", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116794", + "1483140341", + "1483140361", + "1483116794", + "1", + "8", + "0", + "-1", + "20", + "23547", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179166", + "179166", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116794", + "1483140361", + "1483140382", + "1483116794", + "1", + "8", + "0", + "-1", + "21", + "23567", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179168", + "179168", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116795", + "1483140382", + "1483140411", + "1483116795", + "1", + "8", + "0", + "-1", + "29", + "23587", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179170", + "179170", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116795", + "1483140411", + "1483140437", + "1483116795", + "1", + "8", + "0", + "-1", + "26", + "23616", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179172", + "179172", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116795", + "1483140437", + "1483140463", + "1483116795", + "1", + "8", + "0", + "-1", + "26", + "23642", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179174", + "179174", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116796", + "1483140463", + "1483140485", + "1483116796", + "1", + "8", + "0", + "-1", + "22", + "23667", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179176", + "179176", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116796", + "1483140486", + "1483140510", + "1483116796", + "1", + "8", + "0", + "-1", + "24", + "23690", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179178", + "179178", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116796", + "1483140511", + "1483140539", + "1483116796", + "1", + "8", + "0", + "-1", + "28", + "23715", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179180", + "179180", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116796", + "1483140539", + "1483140564", + "1483116796", + "1", + "8", + "0", + "-1", + "25", + "23743", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179184", + "179184", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116797", + "1483140594", + "1483140621", + "1483116797", + "1", + "8", + "0", + "-1", + "27", + "23797", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179186", + "179186", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116797", + "1483140621", + "1483140637", + "1483116797", + "1", + "8", + "0", + "-1", + "16", + "23824", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179188", + "179188", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116798", + "1483140637", + "1483140651", + "1483116798", + "1", + "8", + "0", + "-1", + "14", + "23839", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179190", + "179190", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116798", + "1483140652", + "1483140674", + "1483116798", + "1", + "8", + "0", + "-1", + "22", + "23854", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179192", + "179192", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116798", + "1483140674", + "1483140698", + "1483116798", + "1", + "8", + "0", + "-1", + "24", + "23876", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179194", + "179194", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116798", + "1483140698", + "1483140723", + "1483116798", + "1", + "8", + "0", + "-1", + "25", + "23900", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179204", + "179204", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116800", + "1483140910", + "1483140935", + "1483116800", + "1", + "8", + "0", + "-1", + "25", + "24110", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179208", + "179208", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116800", + "1483140978", + "1483140999", + "1483116800", + "1", + "8", + "0", + "-1", + "21", + "24178", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179213", + "179213", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116801", + "1483141031", + "1483141052", + "1483116801", + "1", + "8", + "0", + "-1", + "21", + "24230", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179215", + "179215", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116801", + "1483141052", + "1483141070", + "1483116801", + "1", + "8", + "0", + "-1", + "18", + "24251", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179217", + "179217", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116802", + "1483141071", + "1483141092", + "1483116802", + "1", + "8", + "0", + "-1", + "21", + "24269", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179219", + "179219", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116802", + "1483141092", + "1483141115", + "1483116802", + "1", + "8", + "0", + "-1", + "23", + "24290", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179221", + "179221", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116802", + "1483141116", + "1483141136", + "1483116802", + "1", + "8", + "0", + "-1", + "20", + "24314", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179225", + "179225", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116803", + "1483141172", + "1483141193", + "1483116803", + "1", + "8", + "0", + "-1", + "21", + "24369", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179227", + "179227", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116803", + "1483141193", + "1483141212", + "1483116803", + "1", + "8", + "0", + "-1", + "19", + "24390", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179229", + "179229", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116803", + "1483141213", + "1483141230", + "1483116803", + "1", + "8", + "0", + "-1", + "17", + "24410", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179231", + "179231", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116804", + "1483141231", + "1483141253", + "1483116804", + "1", + "8", + "0", + "-1", + "22", + "24427", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179233", + "179233", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116804", + "1483141253", + "1483141272", + "1483116804", + "1", + "8", + "0", + "-1", + "19", + "24449", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179235", + "179235", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116804", + "1483141273", + "1483141290", + "1483116804", + "1", + "8", + "0", + "-1", + "17", + "24469", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179241", + "179241", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116805", + "1483141334", + "1483141356", + "1483116805", + "1", + "8", + "0", + "-1", + "22", + "24529", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179245", + "179245", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116806", + "1483141434", + "1483141462", + "1483116806", + "1", + "8", + "0", + "-1", + "28", + "24628", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179247", + "179247", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116806", + "1483141463", + "1483141491", + "1483116806", + "1", + "8", + "0", + "-1", + "28", + "24657", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179251", + "179251", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116807", + "1483141528", + "1483141555", + "1483116807", + "1", + "8", + "0", + "-1", + "27", + "24721", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179257", + "179257", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116807", + "1483141629", + "1483141651", + "1483116807", + "1", + "8", + "0", + "-1", + "22", + "24822", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179259", + "179259", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116808", + "1483141651", + "1483141670", + "1483116808", + "1", + "8", + "0", + "-1", + "19", + "24843", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179261", + "179261", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116808", + "1483141670", + "1483141690", + "1483116808", + "1", + "8", + "0", + "-1", + "20", + "24862", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179277", + "179277", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116810", + "1483141973", + "1483141994", + "1483116810", + "1", + "8", + "0", + "-1", + "21", + "25163", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179279", + "179279", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116811", + "1483141994", + "1483142023", + "1483116811", + "1", + "8", + "0", + "-1", + "29", + "25183", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "1003521", + "1003521", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483046136", + "1483081449", + "1483081454", + "1483046136", + "1", + "24", + "0", + "-1", + "5", + "35313", + "120", + "0", + "29:0", + "FAILED", + "24", + "62.50Gn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "6106586", + "6106586", + "Robertson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "curry", + "1483004941", + "1483116904", + "1483116933", + "1483004941", + "1", + "8", + "0", + "-1", + "29", + "111963", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "108000", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6100150", + "6100150", + "Robertson", + "UTC", + "", + "Bunting, Yellow-browed", + "Screwdriver", + "curry", + "1482698330", + "1483078060", + "1483078062", + "1482698330", + "1", + "16", + "0", + "-1", + "2", + "379730", + "32", + "0", + "1:0", + "FAILED", + "16", + "2147486448Mn", + "259200", + "white", + "Geosciences", + "Polar Programs", + "Polar Aeronomy and Astrophysics" + ], + [ + "968115", + "968115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055846", + "1483055846", + "1483056007", + "1483055846", + "1", + "8", + "0", + "-1", + "161", + "0", + "1288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968143", + "968143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055966", + "1483055966", + "1483056024", + "1483055966", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968161", + "968161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056024", + "1483056024", + "1483056106", + "1483056024", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968163", + "968163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056024", + "1483056024", + "1483056071", + "1483056024", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968167", + "968167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056052", + "1483056052", + "1483056123", + "1483056052", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968179", + "968179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056078", + "1483056078", + "1483056120", + "1483056078", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968181", + "968181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056090", + "1483056090", + "1483056144", + "1483056090", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968183", + "968183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056099", + "1483056099", + "1483056132", + "1483056099", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968185", + "968185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056106", + "1483056106", + "1483056138", + "1483056106", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968187", + "968187", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056109", + "1483056109", + "1483056141", + "1483056109", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968189", + "968189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056121", + "1483056121", + "1483056161", + "1483056121", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968191", + "968191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056124", + "1483056124", + "1483056154", + "1483056124", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968201", + "968201", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056145", + "1483056145", + "1483056207", + "1483056145", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968203", + "968203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056155", + "1483056155", + "1483056226", + "1483056155", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968205", + "968205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056159", + "1483056159", + "1483056227", + "1483056159", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968207", + "968207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056162", + "1483056162", + "1483056304", + "1483056162", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968210", + "968210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056162", + "1483056162", + "1483056232", + "1483056162", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968232", + "968232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056255", + "1483056255", + "1483056286", + "1483056255", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968252", + "968252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056305", + "1483056305", + "1483056446", + "1483056305", + "1", + "8", + "0", + "-1", + "141", + "0", + "1128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968262", + "968262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056332", + "1483056332", + "1483056366", + "1483056332", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968272", + "968272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056380", + "1483056380", + "1483056434", + "1483056380", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968274", + "968274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056386", + "1483056386", + "1483056440", + "1483056386", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968276", + "968276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056391", + "1483056391", + "1483056430", + "1483056391", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968278", + "968278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056400", + "1483056400", + "1483056432", + "1483056400", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968292", + "968292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056447", + "1483056447", + "1483056504", + "1483056447", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968296", + "968296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056459", + "1483056459", + "1483056511", + "1483056459", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968298", + "968298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056459", + "1483056459", + "1483056555", + "1483056459", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968300", + "968300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056462", + "1483056462", + "1483056503", + "1483056462", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968302", + "968302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056468", + "1483056468", + "1483056541", + "1483056468", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968308", + "968308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056504", + "1483056504", + "1483056555", + "1483056504", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968328", + "968328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056556", + "1483056556", + "1483056590", + "1483056556", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968383", + "968383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056733", + "1483056733", + "1483056789", + "1483056733", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968389", + "968389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056753", + "1483056753", + "1483056832", + "1483056753", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968407", + "968407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056816", + "1483056816", + "1483056850", + "1483056816", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968409", + "968409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056820", + "1483056820", + "1483056866", + "1483056820", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968437", + "968437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056878", + "1483056878", + "1483056913", + "1483056878", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968463", + "968463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056936", + "1483056936", + "1483056967", + "1483056936", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968500", + "968500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057081", + "1483057081", + "1483057138", + "1483057081", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968504", + "968504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057084", + "1483057084", + "1483057120", + "1483057084", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968508", + "968508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057116", + "1483057116", + "1483057153", + "1483057116", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968522", + "968522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057151", + "1483057151", + "1483057205", + "1483057151", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968524", + "968524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057154", + "1483057154", + "1483057225", + "1483057154", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968526", + "968526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057157", + "1483057157", + "1483057298", + "1483057157", + "1", + "8", + "0", + "-1", + "141", + "0", + "1128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968530", + "968530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057166", + "1483057166", + "1483057242", + "1483057166", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968532", + "968532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057171", + "1483057171", + "1483057221", + "1483057171", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968534", + "968534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057186", + "1483057186", + "1483057218", + "1483057186", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968538", + "968538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057219", + "1483057219", + "1483057250", + "1483057219", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968546", + "968546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057243", + "1483057243", + "1483057297", + "1483057243", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968548", + "968548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057251", + "1483057251", + "1483057302", + "1483057251", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968550", + "968550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057252", + "1483057252", + "1483057285", + "1483057252", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968552", + "968552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057252", + "1483057252", + "1483057283", + "1483057252", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968554", + "968554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057258", + "1483057258", + "1483057296", + "1483057258", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968580", + "968580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057346", + "1483057346", + "1483057399", + "1483057346", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968596", + "968596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057389", + "1483057389", + "1483057434", + "1483057389", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968600", + "968600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057400", + "1483057400", + "1483057457", + "1483057400", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968610", + "968610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057438", + "1483057438", + "1483057476", + "1483057438", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968612", + "968612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057439", + "1483057439", + "1483057504", + "1483057439", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968618", + "968618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057458", + "1483057458", + "1483057597", + "1483057458", + "1", + "8", + "0", + "-1", + "139", + "0", + "1112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968626", + "968626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057513", + "1483057513", + "1483057546", + "1483057513", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968630", + "968630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057516", + "1483057516", + "1483057560", + "1483057516", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968632", + "968632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057547", + "1483057547", + "1483057587", + "1483057547", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968634", + "968634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057555", + "1483057555", + "1483057596", + "1483057555", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968638", + "968638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057561", + "1483057561", + "1483057629", + "1483057561", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968640", + "968640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057576", + "1483057576", + "1483057630", + "1483057576", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968642", + "968642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057581", + "1483057581", + "1483057617", + "1483057581", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968644", + "968644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057588", + "1483057588", + "1483057647", + "1483057588", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968648", + "968648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057597", + "1483057597", + "1483057657", + "1483057597", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968652", + "968652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057618", + "1483057618", + "1483057667", + "1483057618", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968654", + "968654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057630", + "1483057630", + "1483057682", + "1483057630", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968694", + "968694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057788", + "1483057788", + "1483057828", + "1483057788", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968700", + "968700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057805", + "1483057805", + "1483057846", + "1483057805", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968704", + "968704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057822", + "1483057822", + "1483057856", + "1483057822", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968706", + "968706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057823", + "1483057823", + "1483057874", + "1483057823", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968716", + "968716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057847", + "1483057847", + "1483057915", + "1483057847", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968730", + "968730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057904", + "1483057904", + "1483057951", + "1483057904", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968756", + "968756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057945", + "1483057945", + "1483058056", + "1483057945", + "1", + "8", + "0", + "-1", + "111", + "0", + "888", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968796", + "968796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058057", + "1483058057", + "1483058093", + "1483058057", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968798", + "968798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058058", + "1483058058", + "1483058093", + "1483058058", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968800", + "968800", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058065", + "1483058065", + "1483058096", + "1483058065", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968823", + "968823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058135", + "1483058135", + "1483058169", + "1483058135", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968827", + "968827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058145", + "1483058145", + "1483058177", + "1483058145", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968843", + "968843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058198", + "1483058198", + "1483058261", + "1483058198", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968847", + "968847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058209", + "1483058209", + "1483058333", + "1483058209", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968857", + "968857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058262", + "1483058262", + "1483058307", + "1483058262", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968868", + "968868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058289", + "1483058289", + "1483058322", + "1483058289", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968888", + "968888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058347", + "1483058347", + "1483058385", + "1483058347", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968890", + "968890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058358", + "1483058358", + "1483058397", + "1483058358", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968896", + "968896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058364", + "1483058364", + "1483058431", + "1483058364", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968898", + "968898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058386", + "1483058386", + "1483058450", + "1483058386", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968900", + "968900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058386", + "1483058386", + "1483058418", + "1483058386", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968928", + "968928", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058504", + "1483058504", + "1483058557", + "1483058504", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968934", + "968934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058517", + "1483058517", + "1483058564", + "1483058517", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968954", + "968954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058579", + "1483058579", + "1483058612", + "1483058579", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968956", + "968956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058608", + "1483058608", + "1483058667", + "1483058608", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968958", + "968958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058613", + "1483058613", + "1483058688", + "1483058613", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968960", + "968960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058623", + "1483058623", + "1483058685", + "1483058623", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968962", + "968962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058630", + "1483058630", + "1483058690", + "1483058630", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968968", + "968968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058642", + "1483058642", + "1483058679", + "1483058642", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968974", + "968974", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058668", + "1483058668", + "1483058730", + "1483058668", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968990", + "968990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058731", + "1483058731", + "1483058826", + "1483058731", + "1", + "8", + "0", + "-1", + "95", + "0", + "760", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968992", + "968992", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058770", + "1483058770", + "1483058837", + "1483058770", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968996", + "968996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058779", + "1483058779", + "1483058847", + "1483058779", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968998", + "968998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058783", + "1483058783", + "1483058831", + "1483058783", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969018", + "969018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058861", + "1483058861", + "1483058892", + "1483058861", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969020", + "969020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058888", + "1483058888", + "1483058947", + "1483058888", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969030", + "969030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058911", + "1483058911", + "1483059071", + "1483058911", + "1", + "8", + "0", + "-1", + "160", + "0", + "1280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969038", + "969038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058948", + "1483058948", + "1483059084", + "1483058948", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969056", + "969056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059085", + "1483059085", + "1483059223", + "1483059085", + "1", + "8", + "0", + "-1", + "138", + "0", + "1104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969060", + "969060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059101", + "1483059101", + "1483059174", + "1483059101", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969062", + "969062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059107", + "1483059107", + "1483059238", + "1483059107", + "1", + "8", + "0", + "-1", + "131", + "0", + "1048", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969068", + "969068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059175", + "1483059175", + "1483059253", + "1483059175", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969072", + "969072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059212", + "1483059212", + "1483059377", + "1483059212", + "1", + "8", + "0", + "-1", + "165", + "0", + "1320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969074", + "969074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059224", + "1483059224", + "1483059384", + "1483059224", + "1", + "8", + "0", + "-1", + "160", + "0", + "1280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969076", + "969076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059227", + "1483059227", + "1483059482", + "1483059227", + "1", + "8", + "0", + "-1", + "255", + "0", + "2040", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969080", + "969080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059236", + "1483059236", + "1483059343", + "1483059236", + "1", + "8", + "0", + "-1", + "107", + "0", + "856", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969084", + "969084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059254", + "1483059254", + "1483059292", + "1483059254", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969088", + "969088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059343", + "1483059343", + "1483059395", + "1483059343", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969120", + "969120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059483", + "1483059483", + "1483059539", + "1483059483", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969124", + "969124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059495", + "1483059495", + "1483059566", + "1483059495", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969126", + "969126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059498", + "1483059498", + "1483059563", + "1483059498", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969128", + "969128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059501", + "1483059501", + "1483059597", + "1483059501", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969138", + "969138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059567", + "1483059567", + "1483059603", + "1483059567", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969146", + "969146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059607", + "1483059607", + "1483059685", + "1483059607", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969148", + "969148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059613", + "1483059613", + "1483059649", + "1483059613", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969150", + "969150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059633", + "1483059633", + "1483059704", + "1483059633", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969152", + "969152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059638", + "1483059638", + "1483059677", + "1483059638", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969154", + "969154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059650", + "1483059650", + "1483059706", + "1483059650", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969158", + "969158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059677", + "1483059677", + "1483059717", + "1483059677", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969160", + "969160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059677", + "1483059677", + "1483059725", + "1483059677", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969174", + "969174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059718", + "1483059718", + "1483059816", + "1483059718", + "1", + "8", + "0", + "-1", + "98", + "0", + "784", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969194", + "969194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059827", + "1483059827", + "1483059901", + "1483059827", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969198", + "969198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059854", + "1483059854", + "1483059894", + "1483059854", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969204", + "969204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059882", + "1483059882", + "1483059917", + "1483059882", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969214", + "969214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059895", + "1483059895", + "1483060060", + "1483059895", + "1", + "8", + "0", + "-1", + "165", + "0", + "1320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969216", + "969216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059895", + "1483059895", + "1483059957", + "1483059895", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969222", + "969222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059918", + "1483059918", + "1483059965", + "1483059918", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969224", + "969224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059958", + "1483059958", + "1483059999", + "1483059958", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969226", + "969226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059966", + "1483059966", + "1483059998", + "1483059966", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969232", + "969232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059999", + "1483059999", + "1483060044", + "1483059999", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969241", + "969241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060015", + "1483060015", + "1483060066", + "1483060015", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969251", + "969251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060060", + "1483060060", + "1483060106", + "1483060060", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969257", + "969257", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060072", + "1483060072", + "1483060121", + "1483060072", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969269", + "969269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060106", + "1483060106", + "1483060136", + "1483060106", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969283", + "969283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060162", + "1483060162", + "1483060217", + "1483060162", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969285", + "969285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060172", + "1483060172", + "1483060222", + "1483060172", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969287", + "969287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060173", + "1483060173", + "1483060226", + "1483060173", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969289", + "969289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060176", + "1483060176", + "1483060214", + "1483060176", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969307", + "969307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060226", + "1483060226", + "1483060291", + "1483060226", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969311", + "969311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060249", + "1483060249", + "1483060316", + "1483060249", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969313", + "969313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060282", + "1483060282", + "1483060331", + "1483060282", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969317", + "969317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060292", + "1483060292", + "1483060338", + "1483060292", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969319", + "969319", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060297", + "1483060297", + "1483060332", + "1483060297", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969333", + "969333", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060352", + "1483060352", + "1483060395", + "1483060352", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969335", + "969335", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060365", + "1483060365", + "1483060407", + "1483060365", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969349", + "969349", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060396", + "1483060396", + "1483060469", + "1483060396", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969351", + "969351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060397", + "1483060397", + "1483060546", + "1483060397", + "1", + "8", + "0", + "-1", + "149", + "0", + "1192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969353", + "969353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060408", + "1483060408", + "1483060448", + "1483060408", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969355", + "969355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060420", + "1483060420", + "1483060457", + "1483060420", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969361", + "969361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060449", + "1483060449", + "1483060488", + "1483060449", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969376", + "969376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060489", + "1483060489", + "1483060542", + "1483060489", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969390", + "969390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060547", + "1483060547", + "1483060584", + "1483060547", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969394", + "969394", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060552", + "1483060552", + "1483060619", + "1483060552", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969402", + "969402", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060595", + "1483060595", + "1483060637", + "1483060595", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969419", + "969419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060664", + "1483060664", + "1483060708", + "1483060664", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969421", + "969421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060665", + "1483060665", + "1483060703", + "1483060665", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969435", + "969435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060704", + "1483060704", + "1483060736", + "1483060704", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969439", + "969439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060709", + "1483060709", + "1483060740", + "1483060709", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969445", + "969445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060730", + "1483060730", + "1483060802", + "1483060730", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969453", + "969453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060741", + "1483060741", + "1483060775", + "1483060741", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969459", + "969459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060764", + "1483060764", + "1483060801", + "1483060764", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969465", + "969465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060785", + "1483060785", + "1483060828", + "1483060785", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969469", + "969469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060802", + "1483060802", + "1483060838", + "1483060802", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969477", + "969477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060829", + "1483060829", + "1483060862", + "1483060829", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969483", + "969483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060838", + "1483060838", + "1483060877", + "1483060838", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969487", + "969487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060850", + "1483060850", + "1483060923", + "1483060850", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969505", + "969505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060905", + "1483060905", + "1483060953", + "1483060905", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969523", + "969523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060962", + "1483060962", + "1483060997", + "1483060962", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969527", + "969527", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060975", + "1483060975", + "1483061013", + "1483060975", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969529", + "969529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060979", + "1483060979", + "1483061052", + "1483060979", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969531", + "969531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060981", + "1483060981", + "1483061058", + "1483060981", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969539", + "969539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061012", + "1483061012", + "1483061092", + "1483061012", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969555", + "969555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061081", + "1483061081", + "1483061120", + "1483061081", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969559", + "969559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061086", + "1483061086", + "1483061120", + "1483061086", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969563", + "969563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061103", + "1483061103", + "1483061140", + "1483061103", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969567", + "969567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061121", + "1483061121", + "1483061152", + "1483061121", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969569", + "969569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061130", + "1483061130", + "1483061161", + "1483061130", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969571", + "969571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061138", + "1483061138", + "1483061175", + "1483061138", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969573", + "969573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061141", + "1483061141", + "1483061177", + "1483061141", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969579", + "969579", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061158", + "1483061158", + "1483061312", + "1483061158", + "1", + "8", + "0", + "-1", + "154", + "0", + "1232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969581", + "969581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061162", + "1483061162", + "1483061221", + "1483061162", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969587", + "969587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061176", + "1483061176", + "1483061208", + "1483061176", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969593", + "969593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061209", + "1483061209", + "1483061258", + "1483061209", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969597", + "969597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061221", + "1483061221", + "1483061270", + "1483061221", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969611", + "969611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061259", + "1483061259", + "1483061290", + "1483061259", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969628", + "969628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061313", + "1483061313", + "1483061396", + "1483061313", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969632", + "969632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061319", + "1483061319", + "1483061358", + "1483061319", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969648", + "969648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061397", + "1483061397", + "1483061432", + "1483061397", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969650", + "969650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061401", + "1483061401", + "1483061437", + "1483061401", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969660", + "969660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061433", + "1483061433", + "1483061484", + "1483061433", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969668", + "969668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061448", + "1483061448", + "1483061491", + "1483061448", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969672", + "969672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061464", + "1483061464", + "1483061511", + "1483061464", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969674", + "969674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061469", + "1483061469", + "1483061508", + "1483061469", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969678", + "969678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061485", + "1483061485", + "1483061547", + "1483061485", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969680", + "969680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061492", + "1483061492", + "1483061567", + "1483061492", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969682", + "969682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061509", + "1483061509", + "1483061547", + "1483061509", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969686", + "969686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061525", + "1483061525", + "1483061585", + "1483061525", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969688", + "969688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061529", + "1483061529", + "1483061593", + "1483061529", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969692", + "969692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061548", + "1483061548", + "1483061601", + "1483061548", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969694", + "969694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061548", + "1483061548", + "1483061585", + "1483061548", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969696", + "969696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061551", + "1483061551", + "1483061614", + "1483061551", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969698", + "969698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061568", + "1483061568", + "1483061615", + "1483061568", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969704", + "969704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061586", + "1483061586", + "1483061650", + "1483061586", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969710", + "969710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061601", + "1483061601", + "1483061697", + "1483061601", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969753", + "969753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061760", + "1483061760", + "1483061792", + "1483061760", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969755", + "969755", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061761", + "1483061761", + "1483061824", + "1483061761", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969757", + "969757", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061767", + "1483061767", + "1483061812", + "1483061767", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969761", + "969761", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061780", + "1483061780", + "1483061920", + "1483061780", + "1", + "8", + "0", + "-1", + "140", + "0", + "1120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969765", + "969765", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061793", + "1483061793", + "1483061833", + "1483061793", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969785", + "969785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061857", + "1483061857", + "1483061894", + "1483061857", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969789", + "969789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061880", + "1483061880", + "1483061920", + "1483061880", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969806", + "969806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061921", + "1483061921", + "1483062035", + "1483061921", + "1", + "8", + "0", + "-1", + "114", + "0", + "912", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969808", + "969808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061921", + "1483061921", + "1483061973", + "1483061921", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969812", + "969812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061954", + "1483061954", + "1483062016", + "1483061954", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969832", + "969832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062011", + "1483062011", + "1483062041", + "1483062011", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969834", + "969834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062017", + "1483062017", + "1483062049", + "1483062017", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969844", + "969844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062042", + "1483062042", + "1483062078", + "1483062042", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969846", + "969846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062049", + "1483062049", + "1483062106", + "1483062049", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969848", + "969848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062050", + "1483062050", + "1483062102", + "1483062050", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969850", + "969850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062057", + "1483062057", + "1483062101", + "1483062057", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969852", + "969852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062060", + "1483062060", + "1483062157", + "1483062060", + "1", + "8", + "0", + "-1", + "97", + "0", + "776", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969858", + "969858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062079", + "1483062079", + "1483062119", + "1483062079", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969872", + "969872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062132", + "1483062132", + "1483062172", + "1483062132", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969874", + "969874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062136", + "1483062136", + "1483062185", + "1483062136", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969888", + "969888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062186", + "1483062186", + "1483062222", + "1483062186", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969890", + "969890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062194", + "1483062194", + "1483062228", + "1483062194", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969894", + "969894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062199", + "1483062199", + "1483062246", + "1483062199", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969896", + "969896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062202", + "1483062202", + "1483062238", + "1483062202", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969900", + "969900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062223", + "1483062223", + "1483062262", + "1483062223", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969902", + "969902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062227", + "1483062227", + "1483062265", + "1483062227", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969908", + "969908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062247", + "1483062247", + "1483062278", + "1483062247", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969920", + "969920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062278", + "1483062278", + "1483062329", + "1483062278", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969940", + "969940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062329", + "1483062329", + "1483062388", + "1483062329", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969944", + "969944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062342", + "1483062342", + "1483062440", + "1483062342", + "1", + "8", + "0", + "-1", + "98", + "0", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969946", + "969946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062343", + "1483062343", + "1483062384", + "1483062343", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969960", + "969960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062403", + "1483062403", + "1483062442", + "1483062403", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969966", + "969966", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062427", + "1483062427", + "1483062498", + "1483062427", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969968", + "969968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062436", + "1483062436", + "1483062496", + "1483062436", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969970", + "969970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062441", + "1483062441", + "1483062475", + "1483062441", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969995", + "969995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062508", + "1483062508", + "1483062559", + "1483062508", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970005", + "970005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062567", + "1483062567", + "1483062607", + "1483062567", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970011", + "970011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062583", + "1483062583", + "1483062641", + "1483062583", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970013", + "970013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062604", + "1483062604", + "1483062655", + "1483062604", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970019", + "970019", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062634", + "1483062634", + "1483062678", + "1483062634", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970021", + "970021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062640", + "1483062640", + "1483062674", + "1483062640", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970027", + "970027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062649", + "1483062649", + "1483062708", + "1483062649", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970029", + "970029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062655", + "1483062655", + "1483062697", + "1483062655", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970031", + "970031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062675", + "1483062675", + "1483062767", + "1483062675", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970035", + "970035", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062678", + "1483062678", + "1483062849", + "1483062678", + "1", + "8", + "0", + "-1", + "171", + "0", + "1368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970072", + "970072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062821", + "1483062821", + "1483062868", + "1483062821", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970090", + "970090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062895", + "1483062895", + "1483063035", + "1483062895", + "1", + "8", + "0", + "-1", + "140", + "0", + "1120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970096", + "970096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062955", + "1483062955", + "1483063090", + "1483062955", + "1", + "8", + "0", + "-1", + "135", + "0", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970108", + "970108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063052", + "1483063052", + "1483063194", + "1483063052", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970112", + "970112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063091", + "1483063091", + "1483063193", + "1483063091", + "1", + "8", + "0", + "-1", + "102", + "0", + "816", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970114", + "970114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063094", + "1483063094", + "1483063213", + "1483063094", + "1", + "8", + "0", + "-1", + "119", + "0", + "952", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970120", + "970120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063168", + "1483063168", + "1483063273", + "1483063168", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970126", + "970126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063194", + "1483063194", + "1483063465", + "1483063194", + "1", + "8", + "0", + "-1", + "271", + "0", + "2168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970128", + "970128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063195", + "1483063195", + "1483063307", + "1483063195", + "1", + "8", + "0", + "-1", + "112", + "0", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970137", + "970137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063274", + "1483063274", + "1483063321", + "1483063274", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970143", + "970143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063322", + "1483063322", + "1483063370", + "1483063322", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970145", + "970145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063354", + "1483063354", + "1483063386", + "1483063354", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970147", + "970147", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063357", + "1483063357", + "1483063407", + "1483063357", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970151", + "970151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063360", + "1483063360", + "1483063417", + "1483063360", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970153", + "970153", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063371", + "1483063371", + "1483063424", + "1483063371", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970155", + "970155", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063387", + "1483063387", + "1483063440", + "1483063387", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970159", + "970159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063411", + "1483063411", + "1483063457", + "1483063411", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970165", + "970165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063425", + "1483063425", + "1483063469", + "1483063425", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970169", + "970169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063458", + "1483063458", + "1483063524", + "1483063458", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970173", + "970173", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063466", + "1483063466", + "1483063612", + "1483063466", + "1", + "8", + "0", + "-1", + "146", + "0", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970175", + "970175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063469", + "1483063469", + "1483063557", + "1483063469", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970179", + "970179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063503", + "1483063503", + "1483063576", + "1483063503", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970181", + "970181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063524", + "1483063524", + "1483063574", + "1483063524", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970183", + "970183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063547", + "1483063547", + "1483063586", + "1483063547", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970187", + "970187", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063558", + "1483063558", + "1483063600", + "1483063558", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970191", + "970191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063574", + "1483063574", + "1483063626", + "1483063574", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970225", + "970225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063701", + "1483063701", + "1483063808", + "1483063701", + "1", + "8", + "0", + "-1", + "107", + "0", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970229", + "970229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063710", + "1483063710", + "1483063777", + "1483063710", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970241", + "970241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063766", + "1483063766", + "1483063823", + "1483063766", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970245", + "970245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063798", + "1483063798", + "1483063854", + "1483063798", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970247", + "970247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063809", + "1483063809", + "1483063886", + "1483063809", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970251", + "970251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063816", + "1483063816", + "1483063871", + "1483063816", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970255", + "970255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063824", + "1483063824", + "1483063867", + "1483063824", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970269", + "970269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063868", + "1483063868", + "1483063972", + "1483063868", + "1", + "8", + "0", + "-1", + "104", + "0", + "832", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970271", + "970271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063872", + "1483063872", + "1483063934", + "1483063872", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970273", + "970273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063887", + "1483063887", + "1483063919", + "1483063887", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970275", + "970275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063918", + "1483063918", + "1483063957", + "1483063918", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970279", + "970279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063935", + "1483063935", + "1483063969", + "1483063935", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970291", + "970291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063972", + "1483063972", + "1483064003", + "1483063972", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970315", + "970315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064040", + "1483064040", + "1483064100", + "1483064040", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970317", + "970317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064057", + "1483064057", + "1483064092", + "1483064057", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970319", + "970319", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064057", + "1483064057", + "1483064090", + "1483064057", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970333", + "970333", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064111", + "1483064111", + "1483064150", + "1483064111", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970335", + "970335", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064115", + "1483064115", + "1483064146", + "1483064115", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970352", + "970352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064161", + "1483064161", + "1483064212", + "1483064161", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970356", + "970356", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064173", + "1483064173", + "1483064305", + "1483064173", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970362", + "970362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064182", + "1483064182", + "1483064219", + "1483064182", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970364", + "970364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064199", + "1483064199", + "1483064241", + "1483064199", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970366", + "970366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064211", + "1483064211", + "1483064257", + "1483064211", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970370", + "970370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064220", + "1483064220", + "1483064267", + "1483064220", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970376", + "970376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064248", + "1483064248", + "1483064297", + "1483064248", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970378", + "970378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064258", + "1483064258", + "1483064309", + "1483064258", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970380", + "970380", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064262", + "1483064262", + "1483064298", + "1483064262", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970384", + "970384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064268", + "1483064268", + "1483064314", + "1483064268", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970398", + "970398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064319", + "1483064319", + "1483064360", + "1483064319", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970400", + "970400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064320", + "1483064320", + "1483064371", + "1483064320", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970414", + "970414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064368", + "1483064368", + "1483064405", + "1483064368", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970426", + "970426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064406", + "1483064406", + "1483064457", + "1483064406", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970428", + "970428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064407", + "1483064407", + "1483064440", + "1483064407", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970430", + "970430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064418", + "1483064418", + "1483064456", + "1483064418", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970442", + "970442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064457", + "1483064457", + "1483064498", + "1483064457", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970444", + "970444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064458", + "1483064458", + "1483064510", + "1483064458", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970450", + "970450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064468", + "1483064468", + "1483064505", + "1483064468", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970454", + "970454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064478", + "1483064478", + "1483064510", + "1483064478", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970468", + "970468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064529", + "1483064529", + "1483064561", + "1483064529", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970474", + "970474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064541", + "1483064541", + "1483064574", + "1483064541", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970476", + "970476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064549", + "1483064549", + "1483064583", + "1483064549", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970534", + "970534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064692", + "1483064692", + "1483064724", + "1483064692", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970544", + "970544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064725", + "1483064725", + "1483064755", + "1483064725", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970546", + "970546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064732", + "1483064732", + "1483064773", + "1483064732", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970550", + "970550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064747", + "1483064747", + "1483064784", + "1483064747", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970560", + "970560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064780", + "1483064780", + "1483064810", + "1483064780", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970562", + "970562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064785", + "1483064785", + "1483064838", + "1483064785", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970570", + "970570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064811", + "1483064811", + "1483064841", + "1483064811", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970576", + "970576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064830", + "1483064830", + "1483064865", + "1483064830", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970586", + "970586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064854", + "1483064854", + "1483064900", + "1483064854", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970594", + "970594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064890", + "1483064890", + "1483064924", + "1483064890", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970597", + "970597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064890", + "1483064890", + "1483064941", + "1483064890", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970599", + "970599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064901", + "1483064901", + "1483064939", + "1483064901", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970603", + "970603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064918", + "1483064918", + "1483064965", + "1483064918", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970607", + "970607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064924", + "1483064924", + "1483064967", + "1483064924", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970611", + "970611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064931", + "1483064931", + "1483064964", + "1483064931", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970624", + "970624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064966", + "1483064966", + "1483065010", + "1483064966", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970630", + "970630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064978", + "1483064978", + "1483065018", + "1483064978", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970640", + "970640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065027", + "1483065027", + "1483065070", + "1483065027", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970644", + "970644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065044", + "1483065044", + "1483065080", + "1483065044", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970669", + "970669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065103", + "1483065103", + "1483065143", + "1483065103", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970675", + "970675", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065114", + "1483065114", + "1483065152", + "1483065114", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970698", + "970698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065190", + "1483065190", + "1483065226", + "1483065190", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970718", + "970718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065247", + "1483065247", + "1483065382", + "1483065247", + "1", + "8", + "0", + "-1", + "135", + "0", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970720", + "970720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065250", + "1483065250", + "1483065297", + "1483065250", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970722", + "970722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065253", + "1483065253", + "1483065296", + "1483065253", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970724", + "970724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065280", + "1483065280", + "1483065313", + "1483065280", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970726", + "970726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065286", + "1483065286", + "1483065351", + "1483065286", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970728", + "970728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065297", + "1483065297", + "1483065362", + "1483065297", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970730", + "970730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065297", + "1483065297", + "1483065362", + "1483065297", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970734", + "970734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065314", + "1483065314", + "1483065371", + "1483065314", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970738", + "970738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065352", + "1483065352", + "1483065422", + "1483065352", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970770", + "970770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065488", + "1483065488", + "1483065576", + "1483065488", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970786", + "970786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065577", + "1483065577", + "1483065623", + "1483065577", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970790", + "970790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065588", + "1483065588", + "1483065619", + "1483065588", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970800", + "970800", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065624", + "1483065624", + "1483065654", + "1483065624", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970806", + "970806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065633", + "1483065633", + "1483065694", + "1483065633", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970808", + "970808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065640", + "1483065640", + "1483065680", + "1483065640", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970812", + "970812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065651", + "1483065651", + "1483065705", + "1483065651", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970823", + "970823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065681", + "1483065681", + "1483065715", + "1483065681", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970831", + "970831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065705", + "1483065705", + "1483065742", + "1483065705", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970835", + "970835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065716", + "1483065716", + "1483065754", + "1483065716", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970837", + "970837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065716", + "1483065716", + "1483065755", + "1483065716", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970848", + "970848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065746", + "1483065746", + "1483065795", + "1483065746", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970852", + "970852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065755", + "1483065755", + "1483065805", + "1483065755", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970878", + "970878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065835", + "1483065835", + "1483065877", + "1483065835", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970898", + "970898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065888", + "1483065888", + "1483065926", + "1483065888", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970908", + "970908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065927", + "1483065927", + "1483065958", + "1483065927", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970924", + "970924", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065970", + "1483065970", + "1483066013", + "1483065970", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970928", + "970928", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065979", + "1483065979", + "1483066015", + "1483065979", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970948", + "970948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066030", + "1483066030", + "1483066069", + "1483066030", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970950", + "970950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066035", + "1483066035", + "1483066080", + "1483066035", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970952", + "970952", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066050", + "1483066050", + "1483066080", + "1483066050", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970956", + "970956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066053", + "1483066053", + "1483066095", + "1483066053", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970985", + "970985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066130", + "1483066130", + "1483066178", + "1483066130", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970998", + "970998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066154", + "1483066154", + "1483066193", + "1483066154", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971002", + "971002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066178", + "1483066178", + "1483066209", + "1483066178", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971014", + "971014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066215", + "1483066215", + "1483066262", + "1483066215", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971018", + "971018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066221", + "1483066221", + "1483066261", + "1483066221", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971040", + "971040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066291", + "1483066291", + "1483066334", + "1483066291", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971042", + "971042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066292", + "1483066292", + "1483066334", + "1483066292", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971044", + "971044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066302", + "1483066302", + "1483066349", + "1483066302", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971046", + "971046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066330", + "1483066330", + "1483066373", + "1483066330", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971052", + "971052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066335", + "1483066335", + "1483066392", + "1483066335", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971058", + "971058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066350", + "1483066350", + "1483066392", + "1483066350", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971072", + "971072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066397", + "1483066397", + "1483066432", + "1483066397", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971076", + "971076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066412", + "1483066412", + "1483066470", + "1483066412", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971080", + "971080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066420", + "1483066420", + "1483066465", + "1483066420", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971086", + "971086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066435", + "1483066435", + "1483066495", + "1483066435", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971118", + "971118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066577", + "1483066577", + "1483066614", + "1483066577", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971124", + "971124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066584", + "1483066584", + "1483066662", + "1483066584", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971128", + "971128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066604", + "1483066604", + "1483066698", + "1483066604", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971138", + "971138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066650", + "1483066650", + "1483066782", + "1483066650", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971140", + "971140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066653", + "1483066653", + "1483066784", + "1483066653", + "1", + "8", + "0", + "-1", + "131", + "0", + "1048", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971146", + "971146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066693", + "1483066693", + "1483066787", + "1483066693", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971154", + "971154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066782", + "1483066782", + "1483066889", + "1483066782", + "1", + "8", + "0", + "-1", + "107", + "0", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971156", + "971156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066785", + "1483066785", + "1483066873", + "1483066785", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971160", + "971160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066787", + "1483066787", + "1483066859", + "1483066787", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971166", + "971166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066837", + "1483066837", + "1483066953", + "1483066837", + "1", + "8", + "0", + "-1", + "116", + "0", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971175", + "971175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066859", + "1483066859", + "1483067036", + "1483066859", + "1", + "8", + "0", + "-1", + "177", + "0", + "1416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971177", + "971177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066865", + "1483066865", + "1483067036", + "1483066865", + "1", + "8", + "0", + "-1", + "171", + "0", + "1368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971183", + "971183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066894", + "1483066894", + "1483066954", + "1483066894", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971192", + "971192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067064", + "1483067064", + "1483067138", + "1483067064", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971214", + "971214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067436", + "1483067436", + "1483067592", + "1483067436", + "1", + "8", + "0", + "-1", + "156", + "0", + "1248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971219", + "971219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067494", + "1483067494", + "1483067559", + "1483067494", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971221", + "971221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067507", + "1483067507", + "1483067572", + "1483067507", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971239", + "971239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067635", + "1483067635", + "1483067709", + "1483067635", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971256", + "971256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067680", + "1483067680", + "1483067809", + "1483067680", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971268", + "971268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067697", + "1483067697", + "1483067753", + "1483067697", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971270", + "971270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067697", + "1483067697", + "1483067764", + "1483067697", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971284", + "971284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067710", + "1483067710", + "1483067741", + "1483067710", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971288", + "971288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067742", + "1483067742", + "1483067776", + "1483067742", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971294", + "971294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067761", + "1483067761", + "1483067833", + "1483067761", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971300", + "971300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067777", + "1483067777", + "1483067921", + "1483067777", + "1", + "8", + "0", + "-1", + "144", + "0", + "1152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971302", + "971302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067804", + "1483067804", + "1483067864", + "1483067804", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971306", + "971306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067810", + "1483067810", + "1483067854", + "1483067810", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971345", + "971345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067924", + "1483067924", + "1483068044", + "1483067924", + "1", + "8", + "0", + "-1", + "120", + "0", + "960", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971349", + "971349", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067938", + "1483067938", + "1483067992", + "1483067938", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971353", + "971353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067954", + "1483067954", + "1483067986", + "1483067954", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971379", + "971379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068016", + "1483068016", + "1483068050", + "1483068016", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971387", + "971387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068039", + "1483068039", + "1483068070", + "1483068039", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971391", + "971391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068045", + "1483068045", + "1483068077", + "1483068045", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971395", + "971395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068061", + "1483068061", + "1483068118", + "1483068061", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971397", + "971397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068067", + "1483068067", + "1483068098", + "1483068067", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971429", + "971429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068137", + "1483068137", + "1483068176", + "1483068137", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971432", + "971432", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068137", + "1483068137", + "1483068171", + "1483068137", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971436", + "971436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068153", + "1483068153", + "1483068193", + "1483068153", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971438", + "971438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068157", + "1483068157", + "1483068198", + "1483068157", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971448", + "971448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068185", + "1483068185", + "1483068221", + "1483068185", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971514", + "971514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068360", + "1483068360", + "1483068398", + "1483068360", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971545", + "971545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068438", + "1483068438", + "1483068468", + "1483068438", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971549", + "971549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068444", + "1483068444", + "1483068478", + "1483068444", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971551", + "971551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068447", + "1483068447", + "1483068493", + "1483068447", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971553", + "971553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068456", + "1483068456", + "1483068488", + "1483068456", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971559", + "971559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068473", + "1483068473", + "1483068510", + "1483068473", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971561", + "971561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068479", + "1483068479", + "1483068519", + "1483068479", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971563", + "971563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068484", + "1483068484", + "1483068516", + "1483068484", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971577", + "971577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068516", + "1483068516", + "1483068643", + "1483068516", + "1", + "8", + "0", + "-1", + "127", + "0", + "1016", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971579", + "971579", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068519", + "1483068519", + "1483068559", + "1483068519", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971589", + "971589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068560", + "1483068560", + "1483068595", + "1483068560", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971603", + "971603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068600", + "1483068600", + "1483068644", + "1483068600", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971620", + "971620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068660", + "1483068660", + "1483068705", + "1483068660", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971622", + "971622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068665", + "1483068665", + "1483068703", + "1483068665", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971634", + "971634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068704", + "1483068704", + "1483068752", + "1483068704", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971638", + "971638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068719", + "1483068719", + "1483068845", + "1483068719", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971644", + "971644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068730", + "1483068730", + "1483068791", + "1483068730", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971656", + "971656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068770", + "1483068770", + "1483068806", + "1483068770", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971668", + "971668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068792", + "1483068792", + "1483068825", + "1483068792", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971670", + "971670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068802", + "1483068802", + "1483068867", + "1483068802", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971672", + "971672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068807", + "1483068807", + "1483068869", + "1483068807", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971684", + "971684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068846", + "1483068846", + "1483068890", + "1483068846", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971686", + "971686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068855", + "1483068855", + "1483068898", + "1483068855", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971688", + "971688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068867", + "1483068867", + "1483068930", + "1483068867", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971690", + "971690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068867", + "1483068867", + "1483068953", + "1483068867", + "1", + "8", + "0", + "-1", + "86", + "0", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971692", + "971692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068870", + "1483068870", + "1483069040", + "1483068870", + "1", + "8", + "0", + "-1", + "170", + "0", + "1360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971694", + "971694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068877", + "1483068877", + "1483068973", + "1483068877", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971714", + "971714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068979", + "1483068979", + "1483069020", + "1483068979", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971720", + "971720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069000", + "1483069000", + "1483069038", + "1483069000", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971743", + "971743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069065", + "1483069065", + "1483069119", + "1483069065", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971759", + "971759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069117", + "1483069117", + "1483069149", + "1483069117", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971763", + "971763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069120", + "1483069120", + "1483069164", + "1483069120", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971777", + "971777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069163", + "1483069163", + "1483069194", + "1483069163", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971787", + "971787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069192", + "1483069192", + "1483069224", + "1483069192", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971793", + "971793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069209", + "1483069209", + "1483069249", + "1483069209", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971795", + "971795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069221", + "1483069221", + "1483069261", + "1483069221", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971801", + "971801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069250", + "1483069250", + "1483069293", + "1483069250", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971805", + "971805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069261", + "1483069261", + "1483069366", + "1483069261", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971811", + "971811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069294", + "1483069294", + "1483069365", + "1483069294", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971815", + "971815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069311", + "1483069311", + "1483069388", + "1483069311", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971823", + "971823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069366", + "1483069366", + "1483069446", + "1483069366", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971833", + "971833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069431", + "1483069431", + "1483069510", + "1483069431", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971835", + "971835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069444", + "1483069444", + "1483069683", + "1483069444", + "1", + "8", + "0", + "-1", + "239", + "0", + "1912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971837", + "971837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069447", + "1483069447", + "1483069575", + "1483069447", + "1", + "8", + "0", + "-1", + "128", + "0", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971839", + "971839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069462", + "1483069462", + "1483069614", + "1483069462", + "1", + "8", + "0", + "-1", + "152", + "0", + "1216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971843", + "971843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069485", + "1483069485", + "1483069540", + "1483069485", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971847", + "971847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069525", + "1483069525", + "1483069589", + "1483069525", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971873", + "971873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069614", + "1483069614", + "1483069658", + "1483069614", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971887", + "971887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069652", + "1483069652", + "1483069682", + "1483069652", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971889", + "971889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069655", + "1483069655", + "1483069687", + "1483069655", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971891", + "971891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069659", + "1483069659", + "1483069689", + "1483069659", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971899", + "971899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069684", + "1483069684", + "1483069715", + "1483069684", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971987", + "971987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069856", + "1483069856", + "1483069894", + "1483069856", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971989", + "971989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069859", + "1483069859", + "1483069903", + "1483069859", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972027", + "972027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069950", + "1483069950", + "1483069984", + "1483069950", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972031", + "972031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069959", + "1483069959", + "1483070036", + "1483069959", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972034", + "972034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069959", + "1483069959", + "1483069990", + "1483069959", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972058", + "972058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070007", + "1483070007", + "1483070039", + "1483070007", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972082", + "972082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070053", + "1483070053", + "1483070087", + "1483070053", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972122", + "972122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070129", + "1483070129", + "1483070235", + "1483070129", + "1", + "8", + "0", + "-1", + "106", + "0", + "848", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972136", + "972136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070160", + "1483070160", + "1483070191", + "1483070160", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972150", + "972150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070192", + "1483070192", + "1483070233", + "1483070192", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972162", + "972162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070222", + "1483070222", + "1483070260", + "1483070222", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972166", + "972166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070228", + "1483070228", + "1483070259", + "1483070228", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972213", + "972213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070338", + "1483070338", + "1483070401", + "1483070338", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972259", + "972259", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070438", + "1483070438", + "1483070506", + "1483070438", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972273", + "972273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070483", + "1483070483", + "1483070514", + "1483070483", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972317", + "972317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070587", + "1483070587", + "1483070620", + "1483070587", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972326", + "972326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070610", + "1483070610", + "1483070672", + "1483070610", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972344", + "972344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070673", + "1483070673", + "1483070748", + "1483070673", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972395", + "972395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070822", + "1483070822", + "1483070942", + "1483070822", + "1", + "8", + "0", + "-1", + "120", + "0", + "960", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972399", + "972399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070826", + "1483070826", + "1483070878", + "1483070826", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972483", + "972483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071022", + "1483071022", + "1483071056", + "1483071022", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972487", + "972487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071024", + "1483071024", + "1483071114", + "1483071024", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972555", + "972555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071179", + "1483071179", + "1483071217", + "1483071179", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972576", + "972576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071214", + "1483071214", + "1483071254", + "1483071214", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972580", + "972580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071217", + "1483071217", + "1483071248", + "1483071217", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972587", + "972587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071224", + "1483071224", + "1483071265", + "1483071224", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972589", + "972589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071249", + "1483071249", + "1483071285", + "1483071249", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972591", + "972591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071255", + "1483071255", + "1483071305", + "1483071255", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972603", + "972603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071298", + "1483071298", + "1483071329", + "1483071298", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972617", + "972617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071330", + "1483071330", + "1483071362", + "1483071330", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972621", + "972621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071339", + "1483071339", + "1483071406", + "1483071339", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972625", + "972625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071363", + "1483071363", + "1483071420", + "1483071363", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972637", + "972637", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071419", + "1483071419", + "1483071478", + "1483071419", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972671", + "972671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071503", + "1483071503", + "1483071562", + "1483071503", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972675", + "972675", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071506", + "1483071506", + "1483071560", + "1483071506", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972693", + "972693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071561", + "1483071561", + "1483071593", + "1483071561", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972697", + "972697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071566", + "1483071566", + "1483071611", + "1483071566", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972718", + "972718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071617", + "1483071617", + "1483071697", + "1483071617", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972728", + "972728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071660", + "1483071660", + "1483071736", + "1483071660", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972736", + "972736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071696", + "1483071696", + "1483071766", + "1483071696", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972740", + "972740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071710", + "1483071710", + "1483071834", + "1483071710", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972742", + "972742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071723", + "1483071723", + "1483071837", + "1483071723", + "1", + "8", + "0", + "-1", + "114", + "0", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972746", + "972746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071765", + "1483071765", + "1483071841", + "1483071765", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972750", + "972750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071771", + "1483071771", + "1483071837", + "1483071771", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972752", + "972752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071808", + "1483071808", + "1483071890", + "1483071808", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972758", + "972758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071838", + "1483071838", + "1483071914", + "1483071838", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972769", + "972769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071891", + "1483071891", + "1483071933", + "1483071891", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972771", + "972771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071915", + "1483071915", + "1483071956", + "1483071915", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972773", + "972773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071918", + "1483071918", + "1483071969", + "1483071918", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972777", + "972777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071934", + "1483071934", + "1483071967", + "1483071934", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972783", + "972783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071957", + "1483071957", + "1483072001", + "1483071957", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972789", + "972789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071968", + "1483071968", + "1483072008", + "1483071968", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972795", + "972795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071986", + "1483071986", + "1483072020", + "1483071986", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972797", + "972797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071991", + "1483071991", + "1483072033", + "1483071991", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972799", + "972799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072002", + "1483072002", + "1483072061", + "1483072002", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972802", + "972802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072002", + "1483072002", + "1483072071", + "1483072002", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972804", + "972804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072009", + "1483072009", + "1483072133", + "1483072009", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972834", + "972834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072134", + "1483072134", + "1483072184", + "1483072134", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972838", + "972838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072140", + "1483072140", + "1483072190", + "1483072140", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972851", + "972851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072174", + "1483072174", + "1483072223", + "1483072174", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972862", + "972862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072221", + "1483072221", + "1483072256", + "1483072221", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972874", + "972874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072257", + "1483072257", + "1483072320", + "1483072257", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972876", + "972876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072260", + "1483072260", + "1483072321", + "1483072260", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972880", + "972880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072278", + "1483072278", + "1483072308", + "1483072278", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972888", + "972888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072309", + "1483072309", + "1483072350", + "1483072309", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972896", + "972896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072321", + "1483072321", + "1483072367", + "1483072321", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972900", + "972900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072351", + "1483072351", + "1483072408", + "1483072351", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972904", + "972904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072354", + "1483072354", + "1483072396", + "1483072354", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972906", + "972906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072368", + "1483072368", + "1483072404", + "1483072368", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972908", + "972908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072377", + "1483072377", + "1483072415", + "1483072377", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972914", + "972914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072405", + "1483072405", + "1483072456", + "1483072405", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972920", + "972920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072415", + "1483072415", + "1483072462", + "1483072415", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972926", + "972926", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072449", + "1483072449", + "1483072482", + "1483072449", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972932", + "972932", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072457", + "1483072457", + "1483072499", + "1483072457", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972938", + "972938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072472", + "1483072472", + "1483072513", + "1483072472", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972946", + "972946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072500", + "1483072500", + "1483072568", + "1483072500", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972961", + "972961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072549", + "1483072549", + "1483072597", + "1483072549", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972965", + "972965", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072554", + "1483072554", + "1483072587", + "1483072554", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972969", + "972969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072569", + "1483072569", + "1483072602", + "1483072569", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972975", + "972975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072588", + "1483072588", + "1483072628", + "1483072588", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972981", + "972981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072597", + "1483072597", + "1483072641", + "1483072597", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972985", + "972985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072603", + "1483072603", + "1483072735", + "1483072603", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972987", + "972987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072606", + "1483072606", + "1483072641", + "1483072606", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972989", + "972989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072609", + "1483072609", + "1483072678", + "1483072609", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972993", + "972993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072629", + "1483072629", + "1483072667", + "1483072629", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972998", + "972998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072642", + "1483072642", + "1483072677", + "1483072642", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973008", + "973008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072681", + "1483072681", + "1483072715", + "1483072681", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973020", + "973020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072721", + "1483072721", + "1483072762", + "1483072721", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973022", + "973022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072727", + "1483072727", + "1483072766", + "1483072727", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973030", + "973030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072737", + "1483072737", + "1483072870", + "1483072737", + "1", + "8", + "0", + "-1", + "133", + "0", + "1064", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973060", + "973060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072871", + "1483072871", + "1483072902", + "1483072871", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973066", + "973066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072894", + "1483072894", + "1483072934", + "1483072894", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973082", + "973082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072935", + "1483072935", + "1483073001", + "1483072935", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973088", + "973088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072956", + "1483072956", + "1483072995", + "1483072956", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973104", + "973104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073012", + "1483073012", + "1483073057", + "1483073012", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973115", + "973115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073051", + "1483073051", + "1483073091", + "1483073051", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973117", + "973117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073058", + "1483073058", + "1483073114", + "1483073058", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973123", + "973123", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073070", + "1483073070", + "1483073107", + "1483073070", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973156", + "973156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073163", + "1483073163", + "1483073196", + "1483073163", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973162", + "973162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073167", + "1483073167", + "1483073211", + "1483073167", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973174", + "973174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073212", + "1483073212", + "1483073257", + "1483073212", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973180", + "973180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073234", + "1483073234", + "1483073269", + "1483073234", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973182", + "973182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073248", + "1483073248", + "1483073279", + "1483073248", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973186", + "973186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073257", + "1483073257", + "1483073312", + "1483073257", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973194", + "973194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073280", + "1483073280", + "1483073314", + "1483073280", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973208", + "973208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073318", + "1483073318", + "1483073362", + "1483073318", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973216", + "973216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073341", + "1483073341", + "1483073415", + "1483073341", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973218", + "973218", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073358", + "1483073358", + "1483073405", + "1483073358", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973226", + "973226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073393", + "1483073393", + "1483073428", + "1483073393", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973236", + "973236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073416", + "1483073416", + "1483073471", + "1483073416", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973238", + "973238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073422", + "1483073422", + "1483073456", + "1483073422", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973240", + "973240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073429", + "1483073429", + "1483073469", + "1483073429", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973244", + "973244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073450", + "1483073450", + "1483073480", + "1483073450", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973248", + "973248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073465", + "1483073465", + "1483073509", + "1483073465", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973256", + "973256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073481", + "1483073481", + "1483073526", + "1483073481", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973258", + "973258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073481", + "1483073481", + "1483073618", + "1483073481", + "1", + "8", + "0", + "-1", + "137", + "0", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973260", + "973260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073493", + "1483073493", + "1483073542", + "1483073493", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973262", + "973262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073509", + "1483073509", + "1483073584", + "1483073509", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973290", + "973290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073624", + "1483073624", + "1483073660", + "1483073624", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973298", + "973298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073641", + "1483073641", + "1483073674", + "1483073641", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973311", + "973311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073675", + "1483073675", + "1483073707", + "1483073675", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973325", + "973325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073727", + "1483073727", + "1483073770", + "1483073727", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973327", + "973327", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073731", + "1483073731", + "1483073773", + "1483073731", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973329", + "973329", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073731", + "1483073731", + "1483073776", + "1483073731", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973353", + "973353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073800", + "1483073800", + "1483073837", + "1483073800", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973355", + "973355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073800", + "1483073800", + "1483073848", + "1483073800", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973359", + "973359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073808", + "1483073808", + "1483073842", + "1483073808", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973361", + "973361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073824", + "1483073824", + "1483073876", + "1483073824", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973363", + "973363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073838", + "1483073838", + "1483073890", + "1483073838", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973365", + "973365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073843", + "1483073843", + "1483073901", + "1483073843", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973367", + "973367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073848", + "1483073848", + "1483073878", + "1483073848", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973383", + "973383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073919", + "1483073919", + "1483073973", + "1483073919", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973392", + "973392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073957", + "1483073957", + "1483074049", + "1483073957", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973400", + "973400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073985", + "1483073985", + "1483074039", + "1483073985", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973408", + "973408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074040", + "1483074040", + "1483074070", + "1483074040", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973410", + "973410", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074046", + "1483074046", + "1483074081", + "1483074046", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973420", + "973420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074082", + "1483074082", + "1483074114", + "1483074082", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973426", + "973426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074109", + "1483074109", + "1483074150", + "1483074109", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973434", + "973434", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074132", + "1483074132", + "1483074174", + "1483074132", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973438", + "973438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074139", + "1483074139", + "1483074188", + "1483074139", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973440", + "973440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074151", + "1483074151", + "1483074280", + "1483074151", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973442", + "973442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074157", + "1483074157", + "1483074195", + "1483074157", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973446", + "973446", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074171", + "1483074171", + "1483074236", + "1483074171", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973450", + "973450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074189", + "1483074189", + "1483074230", + "1483074189", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973482", + "973482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074278", + "1483074278", + "1483074308", + "1483074278", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973526", + "973526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074382", + "1483074382", + "1483074417", + "1483074382", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973530", + "973530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074391", + "1483074391", + "1483074444", + "1483074391", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973534", + "973534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074409", + "1483074409", + "1483074440", + "1483074409", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973536", + "973536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074411", + "1483074411", + "1483074442", + "1483074411", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973553", + "973553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074455", + "1483074455", + "1483074493", + "1483074455", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973560", + "973560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074467", + "1483074467", + "1483074506", + "1483074467", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973580", + "973580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074507", + "1483074507", + "1483074568", + "1483074507", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973582", + "973582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074514", + "1483074514", + "1483074562", + "1483074514", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973586", + "973586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074543", + "1483074543", + "1483074573", + "1483074543", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973621", + "973621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074636", + "1483074636", + "1483074763", + "1483074636", + "1", + "8", + "0", + "-1", + "127", + "0", + "1016", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973633", + "973633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074672", + "1483074672", + "1483074707", + "1483074672", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973635", + "973635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074677", + "1483074677", + "1483074708", + "1483074677", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973653", + "973653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074751", + "1483074751", + "1483074782", + "1483074751", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973655", + "973655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074756", + "1483074756", + "1483074792", + "1483074756", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973667", + "973667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074783", + "1483074783", + "1483074871", + "1483074783", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973669", + "973669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074790", + "1483074790", + "1483074840", + "1483074790", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973673", + "973673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074793", + "1483074793", + "1483074853", + "1483074793", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973677", + "973677", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074841", + "1483074841", + "1483074876", + "1483074841", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973679", + "973679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074851", + "1483074851", + "1483074885", + "1483074851", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973681", + "973681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074853", + "1483074853", + "1483074902", + "1483074853", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973724", + "973724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074974", + "1483074974", + "1483075011", + "1483074974", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973726", + "973726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075012", + "1483075012", + "1483075076", + "1483075012", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973732", + "973732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075037", + "1483075037", + "1483075100", + "1483075037", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973738", + "973738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075067", + "1483075067", + "1483075112", + "1483075067", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973742", + "973742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075077", + "1483075077", + "1483075122", + "1483075077", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973748", + "973748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075105", + "1483075105", + "1483075161", + "1483075105", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973750", + "973750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075113", + "1483075113", + "1483075147", + "1483075113", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973766", + "973766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075162", + "1483075162", + "1483075294", + "1483075162", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973771", + "973771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075176", + "1483075176", + "1483075305", + "1483075176", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973783", + "973783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075239", + "1483075239", + "1483075374", + "1483075239", + "1", + "8", + "0", + "-1", + "135", + "0", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973787", + "973787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075295", + "1483075295", + "1483075423", + "1483075295", + "1", + "8", + "0", + "-1", + "128", + "0", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973803", + "973803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075374", + "1483075374", + "1483075630", + "1483075374", + "1", + "8", + "0", + "-1", + "256", + "0", + "2048", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973823", + "973823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075526", + "1483075526", + "1483075569", + "1483075526", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973827", + "973827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075548", + "1483075548", + "1483075608", + "1483075548", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973833", + "973833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075570", + "1483075570", + "1483075610", + "1483075570", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973835", + "973835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075578", + "1483075578", + "1483075618", + "1483075578", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973837", + "973837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075593", + "1483075593", + "1483075635", + "1483075593", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973843", + "973843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075609", + "1483075609", + "1483075672", + "1483075609", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973849", + "973849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075619", + "1483075619", + "1483075760", + "1483075619", + "1", + "8", + "0", + "-1", + "141", + "0", + "1128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973851", + "973851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075630", + "1483075630", + "1483075685", + "1483075630", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973853", + "973853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075636", + "1483075636", + "1483075708", + "1483075636", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973855", + "973855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075653", + "1483075653", + "1483075727", + "1483075653", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973863", + "973863", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075686", + "1483075686", + "1483075756", + "1483075686", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973867", + "973867", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075708", + "1483075708", + "1483075739", + "1483075708", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973869", + "973869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075719", + "1483075719", + "1483075793", + "1483075719", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973871", + "973871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075728", + "1483075728", + "1483075766", + "1483075728", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973907", + "973907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075868", + "1483075868", + "1483075935", + "1483075868", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973915", + "973915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075910", + "1483075910", + "1483075954", + "1483075910", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973917", + "973917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075936", + "1483075936", + "1483076008", + "1483075936", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973923", + "973923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075947", + "1483075947", + "1483076017", + "1483075947", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973925", + "973925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075955", + "1483075955", + "1483075994", + "1483075955", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973929", + "973929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075995", + "1483075995", + "1483076034", + "1483075995", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973931", + "973931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076003", + "1483076003", + "1483076062", + "1483076003", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973933", + "973933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076006", + "1483076006", + "1483076037", + "1483076006", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973935", + "973935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076009", + "1483076009", + "1483076073", + "1483076009", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973937", + "973937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076013", + "1483076013", + "1483076103", + "1483076013", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973939", + "973939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076018", + "1483076018", + "1483076108", + "1483076018", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973943", + "973943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076034", + "1483076034", + "1483076103", + "1483076034", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973945", + "973945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076038", + "1483076038", + "1483076132", + "1483076038", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973953", + "973953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076104", + "1483076104", + "1483076154", + "1483076104", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973963", + "973963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076132", + "1483076132", + "1483076187", + "1483076132", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973981", + "973981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076169", + "1483076169", + "1483076230", + "1483076169", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973991", + "973991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076188", + "1483076188", + "1483076256", + "1483076188", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973999", + "973999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076239", + "1483076239", + "1483076275", + "1483076239", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974001", + "974001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076242", + "1483076242", + "1483076293", + "1483076242", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974005", + "974005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076257", + "1483076257", + "1483076299", + "1483076257", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974013", + "974013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076280", + "1483076280", + "1483076322", + "1483076280", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974015", + "974015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076294", + "1483076294", + "1483076338", + "1483076294", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974028", + "974028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076324", + "1483076324", + "1483076368", + "1483076324", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974030", + "974030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076331", + "1483076331", + "1483076389", + "1483076331", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974036", + "974036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076349", + "1483076349", + "1483076384", + "1483076349", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974038", + "974038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076354", + "1483076354", + "1483076426", + "1483076354", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974040", + "974040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076369", + "1483076369", + "1483076401", + "1483076369", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974046", + "974046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076390", + "1483076390", + "1483076423", + "1483076390", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974048", + "974048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076390", + "1483076390", + "1483076427", + "1483076390", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974052", + "974052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076402", + "1483076402", + "1483076445", + "1483076402", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974068", + "974068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076473", + "1483076473", + "1483076503", + "1483076473", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974076", + "974076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076499", + "1483076499", + "1483076567", + "1483076499", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974090", + "974090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076554", + "1483076554", + "1483076587", + "1483076554", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974098", + "974098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076588", + "1483076588", + "1483076638", + "1483076588", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974102", + "974102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076596", + "1483076596", + "1483076638", + "1483076596", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974106", + "974106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076606", + "1483076606", + "1483076660", + "1483076606", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974117", + "974117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076651", + "1483076651", + "1483076713", + "1483076651", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974119", + "974119", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076657", + "1483076657", + "1483076704", + "1483076657", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974121", + "974121", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076661", + "1483076661", + "1483076730", + "1483076661", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974123", + "974123", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076665", + "1483076665", + "1483076802", + "1483076665", + "1", + "8", + "0", + "-1", + "137", + "0", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974129", + "974129", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076705", + "1483076705", + "1483076746", + "1483076705", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974131", + "974131", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076714", + "1483076714", + "1483076745", + "1483076714", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974137", + "974137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076742", + "1483076742", + "1483076780", + "1483076742", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974139", + "974139", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076746", + "1483076746", + "1483076788", + "1483076746", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974143", + "974143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076760", + "1483076760", + "1483076810", + "1483076760", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974192", + "974192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076913", + "1483076913", + "1483076943", + "1483076913", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974217", + "974217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076966", + "1483076966", + "1483077029", + "1483076966", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974225", + "974225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076998", + "1483076998", + "1483077031", + "1483076998", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974229", + "974229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077011", + "1483077011", + "1483077054", + "1483077011", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974233", + "974233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077028", + "1483077028", + "1483077087", + "1483077028", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974251", + "974251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077088", + "1483077088", + "1483077133", + "1483077088", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974253", + "974253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077091", + "1483077091", + "1483077158", + "1483077091", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974256", + "974256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077091", + "1483077091", + "1483077154", + "1483077091", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974258", + "974258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077094", + "1483077094", + "1483077237", + "1483077094", + "1", + "8", + "0", + "-1", + "143", + "0", + "1144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974274", + "974274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077186", + "1483077186", + "1483077216", + "1483077186", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974296", + "974296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077270", + "1483077270", + "1483077320", + "1483077270", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974302", + "974302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077279", + "1483077279", + "1483077347", + "1483077279", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974312", + "974312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077329", + "1483077329", + "1483077360", + "1483077329", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974314", + "974314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077336", + "1483077336", + "1483077366", + "1483077336", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974320", + "974320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077361", + "1483077361", + "1483077392", + "1483077361", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974322", + "974322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077367", + "1483077367", + "1483077413", + "1483077367", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974324", + "974324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077371", + "1483077371", + "1483077415", + "1483077371", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974326", + "974326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077375", + "1483077375", + "1483077434", + "1483077375", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974328", + "974328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077379", + "1483077379", + "1483077415", + "1483077379", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974330", + "974330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077393", + "1483077393", + "1483077452", + "1483077393", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974336", + "974336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077416", + "1483077416", + "1483077450", + "1483077416", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974340", + "974340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077425", + "1483077425", + "1483077465", + "1483077425", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974342", + "974342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077435", + "1483077435", + "1483077484", + "1483077435", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974344", + "974344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077444", + "1483077444", + "1483077480", + "1483077444", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974353", + "974353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077453", + "1483077453", + "1483077515", + "1483077453", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974355", + "974355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077465", + "1483077465", + "1483077522", + "1483077465", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974381", + "974381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077551", + "1483077551", + "1483077584", + "1483077551", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974389", + "974389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077579", + "1483077579", + "1483077634", + "1483077579", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974395", + "974395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077599", + "1483077599", + "1483077741", + "1483077599", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974401", + "974401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077635", + "1483077635", + "1483077684", + "1483077635", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974403", + "974403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077654", + "1483077654", + "1483077725", + "1483077654", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974407", + "974407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077658", + "1483077658", + "1483077698", + "1483077658", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974409", + "974409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077664", + "1483077664", + "1483077717", + "1483077664", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974411", + "974411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077685", + "1483077685", + "1483077747", + "1483077685", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974417", + "974417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077718", + "1483077718", + "1483077767", + "1483077718", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974421", + "974421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077726", + "1483077726", + "1483077792", + "1483077726", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974425", + "974425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077732", + "1483077732", + "1483077802", + "1483077732", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974427", + "974427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077742", + "1483077742", + "1483077805", + "1483077742", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974431", + "974431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077757", + "1483077757", + "1483077818", + "1483077757", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974437", + "974437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077793", + "1483077793", + "1483077874", + "1483077793", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974441", + "974441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077806", + "1483077806", + "1483077990", + "1483077806", + "1", + "8", + "0", + "-1", + "184", + "0", + "1472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974448", + "974448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077819", + "1483077819", + "1483077850", + "1483077819", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974450", + "974450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077831", + "1483077831", + "1483077879", + "1483077831", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974460", + "974460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077880", + "1483077880", + "1483077933", + "1483077880", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974481", + "974481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077949", + "1483077949", + "1483078007", + "1483077949", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974487", + "974487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077974", + "1483077974", + "1483078015", + "1483077974", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974503", + "974503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078021", + "1483078021", + "1483078059", + "1483078021", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974513", + "974513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078060", + "1483078060", + "1483078110", + "1483078060", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974527", + "974527", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078096", + "1483078096", + "1483078141", + "1483078096", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974531", + "974531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078109", + "1483078109", + "1483078209", + "1483078109", + "1", + "8", + "0", + "-1", + "100", + "0", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974537", + "974537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078130", + "1483078130", + "1483078181", + "1483078130", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974539", + "974539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078142", + "1483078142", + "1483078177", + "1483078142", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974545", + "974545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078158", + "1483078158", + "1483078192", + "1483078158", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974549", + "974549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078177", + "1483078177", + "1483078212", + "1483078177", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974555", + "974555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078186", + "1483078186", + "1483078216", + "1483078186", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974557", + "974557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078193", + "1483078193", + "1483078229", + "1483078193", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974571", + "974571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078230", + "1483078230", + "1483078273", + "1483078230", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974577", + "974577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078245", + "1483078245", + "1483078367", + "1483078245", + "1", + "8", + "0", + "-1", + "122", + "0", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974581", + "974581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078250", + "1483078250", + "1483078283", + "1483078250", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974583", + "974583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078251", + "1483078251", + "1483078302", + "1483078251", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974587", + "974587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078272", + "1483078272", + "1483078309", + "1483078272", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974622", + "974622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078352", + "1483078352", + "1483078478", + "1483078352", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974626", + "974626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078366", + "1483078366", + "1483078399", + "1483078366", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974664", + "974664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078458", + "1483078458", + "1483078497", + "1483078458", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974667", + "974667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078458", + "1483078458", + "1483078530", + "1483078458", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974673", + "974673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078479", + "1483078479", + "1483078531", + "1483078479", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974681", + "974681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078519", + "1483078519", + "1483078550", + "1483078519", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974683", + "974683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078522", + "1483078522", + "1483078555", + "1483078522", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974689", + "974689", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078532", + "1483078532", + "1483078566", + "1483078532", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974715", + "974715", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078611", + "1483078611", + "1483078666", + "1483078611", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974741", + "974741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078719", + "1483078719", + "1483078784", + "1483078719", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974743", + "974743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078724", + "1483078724", + "1483078789", + "1483078724", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974745", + "974745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078738", + "1483078738", + "1483078768", + "1483078738", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974757", + "974757", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078774", + "1483078774", + "1483078853", + "1483078774", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974759", + "974759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078785", + "1483078785", + "1483078959", + "1483078785", + "1", + "8", + "0", + "-1", + "174", + "0", + "1392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974767", + "974767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078817", + "1483078817", + "1483078872", + "1483078817", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974771", + "974771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078846", + "1483078846", + "1483078891", + "1483078846", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974773", + "974773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078854", + "1483078854", + "1483078923", + "1483078854", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974775", + "974775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078854", + "1483078854", + "1483078917", + "1483078854", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974786", + "974786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078918", + "1483078918", + "1483078972", + "1483078918", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974788", + "974788", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078924", + "1483078924", + "1483078972", + "1483078924", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974790", + "974790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078933", + "1483078933", + "1483078997", + "1483078933", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974823", + "974823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079093", + "1483079093", + "1483079235", + "1483079093", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974841", + "974841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079236", + "1483079236", + "1483079305", + "1483079236", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974847", + "974847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079273", + "1483079273", + "1483079437", + "1483079273", + "1", + "8", + "0", + "-1", + "164", + "0", + "1312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974851", + "974851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079286", + "1483079286", + "1483079391", + "1483079286", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974855", + "974855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079292", + "1483079292", + "1483079468", + "1483079292", + "1", + "8", + "0", + "-1", + "176", + "0", + "1408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974857", + "974857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079296", + "1483079296", + "1483079340", + "1483079296", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974861", + "974861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079306", + "1483079306", + "1483079367", + "1483079306", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974863", + "974863", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079341", + "1483079341", + "1483079397", + "1483079341", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974865", + "974865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079345", + "1483079345", + "1483079390", + "1483079345", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974867", + "974867", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079368", + "1483079368", + "1483079412", + "1483079368", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974869", + "974869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079391", + "1483079391", + "1483079442", + "1483079391", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974873", + "974873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079398", + "1483079398", + "1483079444", + "1483079398", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974915", + "974915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079568", + "1483079568", + "1483079607", + "1483079568", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974921", + "974921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079608", + "1483079608", + "1483079686", + "1483079608", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974931", + "974931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079663", + "1483079663", + "1483079703", + "1483079663", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974939", + "974939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079691", + "1483079691", + "1483079787", + "1483079691", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974941", + "974941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079703", + "1483079703", + "1483079872", + "1483079703", + "1", + "8", + "0", + "-1", + "169", + "0", + "1352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974945", + "974945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079715", + "1483079715", + "1483079776", + "1483079715", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974949", + "974949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079745", + "1483079745", + "1483079817", + "1483079745", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974953", + "974953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079773", + "1483079773", + "1483079845", + "1483079773", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974955", + "974955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079776", + "1483079776", + "1483079848", + "1483079776", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974957", + "974957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079788", + "1483079788", + "1483079831", + "1483079788", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974963", + "974963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079818", + "1483079818", + "1483079895", + "1483079818", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974983", + "974983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079920", + "1483079920", + "1483080020", + "1483079920", + "1", + "8", + "0", + "-1", + "100", + "0", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974987", + "974987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079926", + "1483079926", + "1483080095", + "1483079926", + "1", + "8", + "0", + "-1", + "169", + "0", + "1352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974997", + "974997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080011", + "1483080011", + "1483080041", + "1483080011", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975007", + "975007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080041", + "1483080041", + "1483080088", + "1483080041", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975011", + "975011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080049", + "1483080049", + "1483080096", + "1483080049", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975030", + "975030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080110", + "1483080110", + "1483080151", + "1483080110", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975034", + "975034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080113", + "1483080113", + "1483080154", + "1483080113", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975036", + "975036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080120", + "1483080120", + "1483080179", + "1483080120", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975054", + "975054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080187", + "1483080187", + "1483080224", + "1483080187", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975056", + "975056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080190", + "1483080190", + "1483080224", + "1483080190", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975058", + "975058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080198", + "1483080198", + "1483080238", + "1483080198", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975094", + "975094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080304", + "1483080304", + "1483080336", + "1483080304", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975120", + "975120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080388", + "1483080388", + "1483080428", + "1483080388", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975122", + "975122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080392", + "1483080392", + "1483080437", + "1483080392", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975127", + "975127", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080399", + "1483080399", + "1483080439", + "1483080399", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975129", + "975129", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080406", + "1483080406", + "1483080440", + "1483080406", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975135", + "975135", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080429", + "1483080429", + "1483080463", + "1483080429", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975145", + "975145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080441", + "1483080441", + "1483080488", + "1483080441", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975170", + "975170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080510", + "1483080510", + "1483080548", + "1483080510", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975174", + "975174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080519", + "1483080519", + "1483080550", + "1483080519", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975178", + "975178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080538", + "1483080538", + "1483080571", + "1483080538", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975180", + "975180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080547", + "1483080547", + "1483080578", + "1483080547", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975215", + "975215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080631", + "1483080631", + "1483080667", + "1483080631", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975258", + "975258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080742", + "1483080742", + "1483080858", + "1483080742", + "1", + "8", + "0", + "-1", + "116", + "0", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975268", + "975268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080764", + "1483080764", + "1483080800", + "1483080764", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975270", + "975270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080772", + "1483080772", + "1483080819", + "1483080772", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975278", + "975278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080801", + "1483080801", + "1483080846", + "1483080801", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975280", + "975280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080803", + "1483080803", + "1483080842", + "1483080803", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975282", + "975282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080804", + "1483080804", + "1483080844", + "1483080804", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975298", + "975298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080865", + "1483080865", + "1483080904", + "1483080865", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975304", + "975304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080868", + "1483080868", + "1483081000", + "1483080868", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975306", + "975306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080871", + "1483080871", + "1483080915", + "1483080871", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975308", + "975308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080881", + "1483080881", + "1483080925", + "1483080881", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975312", + "975312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080904", + "1483080904", + "1483080939", + "1483080904", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975322", + "975322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080940", + "1483080940", + "1483080974", + "1483080940", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975332", + "975332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080974", + "1483080974", + "1483081007", + "1483080974", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975351", + "975351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081009", + "1483081009", + "1483081049", + "1483081009", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975353", + "975353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081019", + "1483081019", + "1483081052", + "1483081019", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975357", + "975357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081041", + "1483081041", + "1483081080", + "1483081041", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975393", + "975393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081139", + "1483081139", + "1483081186", + "1483081139", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975395", + "975395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081144", + "1483081144", + "1483081279", + "1483081144", + "1", + "8", + "0", + "-1", + "135", + "0", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975399", + "975399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081147", + "1483081147", + "1483081184", + "1483081147", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975415", + "975415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081216", + "1483081216", + "1483081246", + "1483081216", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975423", + "975423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081237", + "1483081237", + "1483081269", + "1483081237", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975431", + "975431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081270", + "1483081270", + "1483081301", + "1483081270", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975436", + "975436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081270", + "1483081270", + "1483081325", + "1483081270", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975438", + "975438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081271", + "1483081271", + "1483081319", + "1483081271", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975442", + "975442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081280", + "1483081280", + "1483081324", + "1483081280", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975444", + "975444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081293", + "1483081293", + "1483081345", + "1483081293", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975446", + "975446", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081301", + "1483081301", + "1483081336", + "1483081301", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975450", + "975450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081320", + "1483081320", + "1483081379", + "1483081320", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975466", + "975466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081388", + "1483081388", + "1483081444", + "1483081388", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975468", + "975468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081389", + "1483081389", + "1483081445", + "1483081389", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975482", + "975482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081446", + "1483081446", + "1483081537", + "1483081446", + "1", + "8", + "0", + "-1", + "91", + "0", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975484", + "975484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081449", + "1483081449", + "1483081543", + "1483081449", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975513", + "975513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081568", + "1483081568", + "1483081601", + "1483081568", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975519", + "975519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081591", + "1483081591", + "1483081621", + "1483081591", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975527", + "975527", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081606", + "1483081606", + "1483081647", + "1483081606", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975529", + "975529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081621", + "1483081621", + "1483081667", + "1483081621", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975535", + "975535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081629", + "1483081629", + "1483081686", + "1483081629", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975537", + "975537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081638", + "1483081638", + "1483081671", + "1483081638", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975586", + "975586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081783", + "1483081783", + "1483081815", + "1483081783", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975624", + "975624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081878", + "1483081878", + "1483081912", + "1483081878", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975628", + "975628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081886", + "1483081886", + "1483081917", + "1483081886", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975630", + "975630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081897", + "1483081897", + "1483081934", + "1483081897", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975632", + "975632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081910", + "1483081910", + "1483081941", + "1483081910", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975664", + "975664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081990", + "1483081990", + "1483082027", + "1483081990", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975670", + "975670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081996", + "1483081996", + "1483082028", + "1483081996", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975672", + "975672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081998", + "1483081998", + "1483082045", + "1483081998", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975678", + "975678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082027", + "1483082027", + "1483082061", + "1483082027", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975682", + "975682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082029", + "1483082029", + "1483082059", + "1483082029", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975692", + "975692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082061", + "1483082061", + "1483082100", + "1483082061", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975722", + "975722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082128", + "1483082128", + "1483082165", + "1483082128", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975726", + "975726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082142", + "1483082142", + "1483082185", + "1483082142", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975742", + "975742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082201", + "1483082201", + "1483082255", + "1483082201", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975754", + "975754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082237", + "1483082237", + "1483082279", + "1483082237", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975756", + "975756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082240", + "1483082240", + "1483082297", + "1483082240", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975758", + "975758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082244", + "1483082244", + "1483082279", + "1483082244", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975760", + "975760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082256", + "1483082256", + "1483082346", + "1483082256", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975769", + "975769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082280", + "1483082280", + "1483082319", + "1483082280", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975781", + "975781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082345", + "1483082345", + "1483082411", + "1483082345", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975785", + "975785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082348", + "1483082348", + "1483082387", + "1483082348", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975790", + "975790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082351", + "1483082351", + "1483082381", + "1483082351", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975794", + "975794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082382", + "1483082382", + "1483082414", + "1483082382", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975804", + "975804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082398", + "1483082398", + "1483082528", + "1483082398", + "1", + "8", + "0", + "-1", + "130", + "0", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975824", + "975824", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082465", + "1483082465", + "1483082498", + "1483082465", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975828", + "975828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082493", + "1483082493", + "1483082535", + "1483082493", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975830", + "975830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082498", + "1483082498", + "1483082541", + "1483082498", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975854", + "975854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082583", + "1483082583", + "1483082652", + "1483082583", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975858", + "975858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082597", + "1483082597", + "1483082724", + "1483082597", + "1", + "8", + "0", + "-1", + "127", + "0", + "1016", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975864", + "975864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082629", + "1483082629", + "1483082753", + "1483082629", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975868", + "975868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082653", + "1483082653", + "1483082724", + "1483082653", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975872", + "975872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082722", + "1483082722", + "1483082855", + "1483082722", + "1", + "8", + "0", + "-1", + "133", + "0", + "1064", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975874", + "975874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082725", + "1483082725", + "1483082837", + "1483082725", + "1", + "8", + "0", + "-1", + "112", + "0", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975879", + "975879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082750", + "1483082750", + "1483082831", + "1483082750", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975881", + "975881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082754", + "1483082754", + "1483082825", + "1483082754", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975883", + "975883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082754", + "1483082754", + "1483082867", + "1483082754", + "1", + "8", + "0", + "-1", + "113", + "0", + "904", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975889", + "975889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082801", + "1483082801", + "1483082944", + "1483082801", + "1", + "8", + "0", + "-1", + "143", + "0", + "1144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975891", + "975891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082826", + "1483082826", + "1483082981", + "1483082826", + "1", + "8", + "0", + "-1", + "155", + "0", + "1240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975893", + "975893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082832", + "1483082832", + "1483082984", + "1483082832", + "1", + "8", + "0", + "-1", + "152", + "0", + "1216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975915", + "975915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082945", + "1483082945", + "1483083003", + "1483082945", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975917", + "975917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082955", + "1483082955", + "1483083022", + "1483082955", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975927", + "975927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082985", + "1483082985", + "1483083025", + "1483082985", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975933", + "975933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083004", + "1483083004", + "1483083053", + "1483083004", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975937", + "975937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083023", + "1483083023", + "1483083080", + "1483083023", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975939", + "975939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083024", + "1483083024", + "1483083100", + "1483083024", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975955", + "975955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083102", + "1483083102", + "1483083141", + "1483083102", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975979", + "975979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083175", + "1483083175", + "1483083210", + "1483083175", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975982", + "975982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083176", + "1483083176", + "1483083254", + "1483083176", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975986", + "975986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083189", + "1483083189", + "1483083350", + "1483083189", + "1", + "8", + "0", + "-1", + "161", + "0", + "1288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975992", + "975992", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083211", + "1483083211", + "1483083259", + "1483083211", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976006", + "976006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083260", + "1483083260", + "1483083301", + "1483083260", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976008", + "976008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083283", + "1483083283", + "1483083350", + "1483083283", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976012", + "976012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083302", + "1483083302", + "1483083364", + "1483083302", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976016", + "976016", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083308", + "1483083308", + "1483083343", + "1483083308", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976027", + "976027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083358", + "1483083358", + "1483083442", + "1483083358", + "1", + "8", + "0", + "-1", + "84", + "0", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976035", + "976035", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083382", + "1483083382", + "1483083443", + "1483083382", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976037", + "976037", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083387", + "1483083387", + "1483083427", + "1483083387", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976041", + "976041", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083428", + "1483083428", + "1483083461", + "1483083428", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976079", + "976079", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083496", + "1483083496", + "1483083540", + "1483083496", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976081", + "976081", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083501", + "1483083501", + "1483083559", + "1483083501", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976083", + "976083", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083512", + "1483083512", + "1483083548", + "1483083512", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976168", + "976168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083693", + "1483083693", + "1483083725", + "1483083693", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976180", + "976180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083725", + "1483083725", + "1483083756", + "1483083725", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976182", + "976182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083726", + "1483083726", + "1483083769", + "1483083726", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976198", + "976198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083760", + "1483083760", + "1483083841", + "1483083760", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976202", + "976202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083763", + "1483083763", + "1483083798", + "1483083763", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976306", + "976306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083976", + "1483083976", + "1483084042", + "1483083976", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976310", + "976310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083982", + "1483083982", + "1483084044", + "1483083982", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976312", + "976312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083995", + "1483083995", + "1483084053", + "1483083995", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976342", + "976342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084071", + "1483084071", + "1483084105", + "1483084071", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976346", + "976346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084083", + "1483084083", + "1483084129", + "1483084083", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976375", + "976375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084157", + "1483084157", + "1483084193", + "1483084157", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976391", + "976391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084189", + "1483084189", + "1483084220", + "1483084189", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976413", + "976413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084249", + "1483084249", + "1483084289", + "1483084249", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976419", + "976419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084260", + "1483084260", + "1483084306", + "1483084260", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976423", + "976423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084288", + "1483084288", + "1483084385", + "1483084288", + "1", + "8", + "0", + "-1", + "97", + "0", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976427", + "976427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084307", + "1483084307", + "1483084376", + "1483084307", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976449", + "976449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084395", + "1483084395", + "1483084428", + "1483084395", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976467", + "976467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084445", + "1483084445", + "1483084521", + "1483084445", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976505", + "976505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084534", + "1483084534", + "1483084590", + "1483084534", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976521", + "976521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084572", + "1483084572", + "1483084627", + "1483084572", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976523", + "976523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084576", + "1483084576", + "1483084610", + "1483084576", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976525", + "976525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084576", + "1483084576", + "1483084606", + "1483084576", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976533", + "976533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084596", + "1483084596", + "1483084628", + "1483084596", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976537", + "976537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084611", + "1483084611", + "1483084652", + "1483084611", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976543", + "976543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084628", + "1483084628", + "1483084665", + "1483084628", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976547", + "976547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084636", + "1483084636", + "1483084779", + "1483084636", + "1", + "8", + "0", + "-1", + "143", + "0", + "1144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976549", + "976549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084653", + "1483084653", + "1483084695", + "1483084653", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976553", + "976553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084666", + "1483084666", + "1483084705", + "1483084666", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976559", + "976559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084696", + "1483084696", + "1483084747", + "1483084696", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976561", + "976561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084703", + "1483084703", + "1483084745", + "1483084703", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976567", + "976567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084739", + "1483084739", + "1483084831", + "1483084739", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976569", + "976569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084746", + "1483084746", + "1483084869", + "1483084746", + "1", + "8", + "0", + "-1", + "123", + "0", + "984", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976573", + "976573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084779", + "1483084779", + "1483084843", + "1483084779", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976575", + "976575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084783", + "1483084783", + "1483084842", + "1483084783", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976581", + "976581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084842", + "1483084842", + "1483084915", + "1483084842", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976583", + "976583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084843", + "1483084843", + "1483084883", + "1483084843", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976621", + "976621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084960", + "1483084960", + "1483084992", + "1483084960", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976664", + "976664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085066", + "1483085066", + "1483085096", + "1483085066", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976670", + "976670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085074", + "1483085074", + "1483085132", + "1483085074", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976672", + "976672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085087", + "1483085087", + "1483085127", + "1483085087", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976740", + "976740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085269", + "1483085269", + "1483085302", + "1483085269", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976754", + "976754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085301", + "1483085301", + "1483085339", + "1483085301", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976758", + "976758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085304", + "1483085304", + "1483085364", + "1483085304", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976807", + "976807", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085427", + "1483085427", + "1483085461", + "1483085427", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976809", + "976809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085430", + "1483085430", + "1483085468", + "1483085430", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976888", + "976888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085609", + "1483085609", + "1483085654", + "1483085609", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976892", + "976892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085625", + "1483085625", + "1483085657", + "1483085625", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976898", + "976898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085650", + "1483085650", + "1483085701", + "1483085650", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976927", + "976927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085708", + "1483085708", + "1483085755", + "1483085708", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976929", + "976929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085711", + "1483085711", + "1483085749", + "1483085711", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976937", + "976937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085725", + "1483085725", + "1483085759", + "1483085725", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976939", + "976939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085736", + "1483085736", + "1483085768", + "1483085736", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976941", + "976941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085750", + "1483085750", + "1483085819", + "1483085750", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976943", + "976943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085752", + "1483085752", + "1483085794", + "1483085752", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976947", + "976947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085755", + "1483085755", + "1483085792", + "1483085755", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976981", + "976981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085840", + "1483085840", + "1483085893", + "1483085840", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976987", + "976987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085850", + "1483085850", + "1483085928", + "1483085850", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976991", + "976991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085869", + "1483085869", + "1483085909", + "1483085869", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976995", + "976995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085881", + "1483085881", + "1483085918", + "1483085881", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977005", + "977005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085912", + "1483085912", + "1483085954", + "1483085912", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977015", + "977015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085935", + "1483085935", + "1483085968", + "1483085935", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977034", + "977034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085978", + "1483085978", + "1483086016", + "1483085978", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977040", + "977040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085989", + "1483085989", + "1483086056", + "1483085989", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977044", + "977044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086017", + "1483086017", + "1483086083", + "1483086017", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977046", + "977046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086025", + "1483086025", + "1483086084", + "1483086025", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977048", + "977048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086032", + "1483086032", + "1483086075", + "1483086032", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977052", + "977052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086045", + "1483086045", + "1483086111", + "1483086045", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977062", + "977062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086084", + "1483086084", + "1483086148", + "1483086084", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977066", + "977066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086096", + "1483086096", + "1483086144", + "1483086096", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977068", + "977068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086111", + "1483086111", + "1483086159", + "1483086111", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977070", + "977070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086138", + "1483086138", + "1483086188", + "1483086138", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977072", + "977072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086142", + "1483086142", + "1483086228", + "1483086142", + "1", + "8", + "0", + "-1", + "86", + "0", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977122", + "977122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086309", + "1483086309", + "1483086383", + "1483086309", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977126", + "977126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086328", + "1483086328", + "1483086393", + "1483086328", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977128", + "977128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086333", + "1483086333", + "1483086365", + "1483086333", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977159", + "977159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086395", + "1483086395", + "1483086426", + "1483086395", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977165", + "977165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086413", + "1483086413", + "1483086443", + "1483086413", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977167", + "977167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086413", + "1483086413", + "1483086502", + "1483086413", + "1", + "8", + "0", + "-1", + "89", + "0", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977190", + "977190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086474", + "1483086474", + "1483086505", + "1483086474", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977211", + "977211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086514", + "1483086514", + "1483086607", + "1483086514", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977304", + "977304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086699", + "1483086699", + "1483086737", + "1483086699", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977308", + "977308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086708", + "1483086708", + "1483086739", + "1483086708", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977312", + "977312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086721", + "1483086721", + "1483086751", + "1483086721", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977326", + "977326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086752", + "1483086752", + "1483086787", + "1483086752", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977328", + "977328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086758", + "1483086758", + "1483086790", + "1483086758", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977330", + "977330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086758", + "1483086758", + "1483086788", + "1483086758", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977334", + "977334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086768", + "1483086768", + "1483086807", + "1483086768", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977371", + "977371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086883", + "1483086883", + "1483086916", + "1483086883", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977382", + "977382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086906", + "1483086906", + "1483086963", + "1483086906", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977392", + "977392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086947", + "1483086947", + "1483086988", + "1483086947", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977394", + "977394", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086956", + "1483086956", + "1483087008", + "1483086956", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977400", + "977400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086974", + "1483086974", + "1483087004", + "1483086974", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977409", + "977409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087005", + "1483087005", + "1483087054", + "1483087005", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977411", + "977411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087008", + "1483087008", + "1483087040", + "1483087008", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977416", + "977416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087009", + "1483087009", + "1483087043", + "1483087009", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977418", + "977418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087009", + "1483087009", + "1483087043", + "1483087009", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977438", + "977438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087074", + "1483087074", + "1483087149", + "1483087074", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977440", + "977440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087075", + "1483087075", + "1483087128", + "1483087075", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977452", + "977452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087122", + "1483087122", + "1483087184", + "1483087122", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977476", + "977476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087221", + "1483087221", + "1483087357", + "1483087221", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977478", + "977478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087222", + "1483087222", + "1483087255", + "1483087222", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977484", + "977484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087242", + "1483087242", + "1483087348", + "1483087242", + "1", + "8", + "0", + "-1", + "106", + "0", + "848", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977490", + "977490", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087297", + "1483087297", + "1483087341", + "1483087297", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977496", + "977496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087340", + "1483087340", + "1483087387", + "1483087340", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977504", + "977504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087355", + "1483087355", + "1483087396", + "1483087355", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977506", + "977506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087358", + "1483087358", + "1483087401", + "1483087358", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977514", + "977514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087388", + "1483087388", + "1483087421", + "1483087388", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977520", + "977520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087402", + "1483087402", + "1483087440", + "1483087402", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977524", + "977524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087415", + "1483087415", + "1483087464", + "1483087415", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977526", + "977526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087422", + "1483087422", + "1483087473", + "1483087422", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977528", + "977528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087429", + "1483087429", + "1483087538", + "1483087429", + "1", + "8", + "0", + "-1", + "109", + "0", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977532", + "977532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087441", + "1483087441", + "1483087492", + "1483087441", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977534", + "977534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087460", + "1483087460", + "1483087519", + "1483087460", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977546", + "977546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087493", + "1483087493", + "1483087524", + "1483087493", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977567", + "977567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087555", + "1483087555", + "1483087598", + "1483087555", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977573", + "977573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087569", + "1483087569", + "1483087729", + "1483087569", + "1", + "8", + "0", + "-1", + "160", + "0", + "1280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977575", + "977575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087569", + "1483087569", + "1483087625", + "1483087569", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977589", + "977589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087629", + "1483087629", + "1483087674", + "1483087629", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977603", + "977603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087675", + "1483087675", + "1483087739", + "1483087675", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977607", + "977607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087687", + "1483087687", + "1483087737", + "1483087687", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977609", + "977609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087696", + "1483087696", + "1483087754", + "1483087696", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977613", + "977613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087730", + "1483087730", + "1483087786", + "1483087730", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977615", + "977615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087738", + "1483087738", + "1483087806", + "1483087738", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977623", + "977623", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087760", + "1483087760", + "1483087848", + "1483087760", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977625", + "977625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087787", + "1483087787", + "1483087845", + "1483087787", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977654", + "977654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087866", + "1483087866", + "1483087910", + "1483087866", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977682", + "977682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087936", + "1483087936", + "1483087978", + "1483087936", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977709", + "977709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087992", + "1483087992", + "1483088076", + "1483087992", + "1", + "8", + "0", + "-1", + "84", + "0", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977715", + "977715", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088004", + "1483088004", + "1483088041", + "1483088004", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977748", + "977748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088092", + "1483088092", + "1483088137", + "1483088092", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977755", + "977755", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088098", + "1483088098", + "1483088138", + "1483088098", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977761", + "977761", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088129", + "1483088129", + "1483088159", + "1483088129", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977775", + "977775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088168", + "1483088168", + "1483088217", + "1483088168", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977777", + "977777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088176", + "1483088176", + "1483088207", + "1483088176", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977779", + "977779", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088176", + "1483088176", + "1483088211", + "1483088176", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977789", + "977789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088212", + "1483088212", + "1483088248", + "1483088212", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977791", + "977791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088215", + "1483088215", + "1483088262", + "1483088215", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977795", + "977795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088218", + "1483088218", + "1483088272", + "1483088218", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977906", + "977906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088499", + "1483088499", + "1483088531", + "1483088499", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977922", + "977922", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088532", + "1483088532", + "1483088565", + "1483088532", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977974", + "977974", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088701", + "1483088701", + "1483088750", + "1483088701", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977976", + "977976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088706", + "1483088706", + "1483088762", + "1483088706", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977984", + "977984", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088734", + "1483088734", + "1483088780", + "1483088734", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977986", + "977986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088746", + "1483088746", + "1483088791", + "1483088746", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978018", + "978018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088840", + "1483088840", + "1483088887", + "1483088840", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978032", + "978032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088884", + "1483088884", + "1483088962", + "1483088884", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978034", + "978034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088888", + "1483088888", + "1483088927", + "1483088888", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978050", + "978050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088941", + "1483088941", + "1483088973", + "1483088941", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978054", + "978054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088957", + "1483088957", + "1483089011", + "1483088957", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978076", + "978076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089016", + "1483089016", + "1483089075", + "1483089016", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978080", + "978080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089042", + "1483089042", + "1483089097", + "1483089042", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978084", + "978084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089076", + "1483089076", + "1483089140", + "1483089076", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978090", + "978090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089098", + "1483089098", + "1483089160", + "1483089098", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978092", + "978092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089118", + "1483089118", + "1483089159", + "1483089118", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978094", + "978094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089134", + "1483089134", + "1483089185", + "1483089134", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978100", + "978100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089155", + "1483089155", + "1483089206", + "1483089155", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978102", + "978102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089160", + "1483089160", + "1483089214", + "1483089160", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978106", + "978106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089186", + "1483089186", + "1483089247", + "1483089186", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978108", + "978108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089207", + "1483089207", + "1483089267", + "1483089207", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978112", + "978112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089215", + "1483089215", + "1483089272", + "1483089215", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978114", + "978114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089227", + "1483089227", + "1483089320", + "1483089227", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978124", + "978124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089247", + "1483089247", + "1483089361", + "1483089247", + "1", + "8", + "0", + "-1", + "114", + "0", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978126", + "978126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089267", + "1483089267", + "1483089353", + "1483089267", + "1", + "8", + "0", + "-1", + "86", + "0", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978162", + "978162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089389", + "1483089389", + "1483089422", + "1483089389", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978166", + "978166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089397", + "1483089397", + "1483089473", + "1483089397", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978170", + "978170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089423", + "1483089423", + "1483089474", + "1483089423", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978202", + "978202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089501", + "1483089501", + "1483089540", + "1483089501", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978206", + "978206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089504", + "1483089504", + "1483089541", + "1483089504", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978212", + "978212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089518", + "1483089518", + "1483089606", + "1483089518", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978216", + "978216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089538", + "1483089538", + "1483089608", + "1483089538", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978250", + "978250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089626", + "1483089626", + "1483089658", + "1483089626", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978262", + "978262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089659", + "1483089659", + "1483089703", + "1483089659", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978354", + "978354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089870", + "1483089870", + "1483089902", + "1483089870", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978356", + "978356", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089873", + "1483089873", + "1483089909", + "1483089873", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978358", + "978358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089887", + "1483089887", + "1483089919", + "1483089887", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978364", + "978364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089910", + "1483089910", + "1483089949", + "1483089910", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978368", + "978368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089918", + "1483089918", + "1483089955", + "1483089918", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978374", + "978374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089931", + "1483089931", + "1483089965", + "1483089931", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978387", + "978387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089955", + "1483089955", + "1483090003", + "1483089955", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978393", + "978393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089966", + "1483089966", + "1483090083", + "1483089966", + "1", + "8", + "0", + "-1", + "117", + "0", + "936", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978396", + "978396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089966", + "1483089966", + "1483090018", + "1483089966", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978398", + "978398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089979", + "1483089979", + "1483090026", + "1483089979", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978400", + "978400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089999", + "1483089999", + "1483090034", + "1483089999", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978402", + "978402", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090004", + "1483090004", + "1483090040", + "1483090004", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978414", + "978414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090040", + "1483090040", + "1483090075", + "1483090040", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978422", + "978422", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090056", + "1483090056", + "1483090095", + "1483090056", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978426", + "978426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090075", + "1483090075", + "1483090107", + "1483090075", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978448", + "978448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090135", + "1483090135", + "1483090172", + "1483090135", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978450", + "978450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090138", + "1483090138", + "1483090170", + "1483090138", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978456", + "978456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090156", + "1483090156", + "1483090213", + "1483090156", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978458", + "978458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090160", + "1483090160", + "1483090196", + "1483090160", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978471", + "978471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090207", + "1483090207", + "1483090247", + "1483090207", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978485", + "978485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090241", + "1483090241", + "1483090316", + "1483090241", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978487", + "978487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090248", + "1483090248", + "1483090342", + "1483090248", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978489", + "978489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090262", + "1483090262", + "1483090306", + "1483090262", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978495", + "978495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090289", + "1483090289", + "1483090357", + "1483090289", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978497", + "978497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090307", + "1483090307", + "1483090381", + "1483090307", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978501", + "978501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090340", + "1483090340", + "1483090461", + "1483090340", + "1", + "8", + "0", + "-1", + "121", + "0", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978503", + "978503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090343", + "1483090343", + "1483090430", + "1483090343", + "1", + "8", + "0", + "-1", + "87", + "0", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978507", + "978507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090356", + "1483090356", + "1483090428", + "1483090356", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978511", + "978511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090382", + "1483090382", + "1483090464", + "1483090382", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978513", + "978513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090428", + "1483090428", + "1483090550", + "1483090428", + "1", + "8", + "0", + "-1", + "122", + "0", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978515", + "978515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090429", + "1483090429", + "1483090499", + "1483090429", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978527", + "978527", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090500", + "1483090500", + "1483090602", + "1483090500", + "1", + "8", + "0", + "-1", + "102", + "0", + "816", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978539", + "978539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090574", + "1483090574", + "1483090620", + "1483090574", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978545", + "978545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090614", + "1483090614", + "1483090651", + "1483090614", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978553", + "978553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090650", + "1483090650", + "1483090699", + "1483090650", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978568", + "978568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090700", + "1483090700", + "1483090745", + "1483090700", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978572", + "978572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090734", + "1483090734", + "1483090797", + "1483090734", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978578", + "978578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090738", + "1483090738", + "1483090794", + "1483090738", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978580", + "978580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090745", + "1483090745", + "1483090799", + "1483090745", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978600", + "978600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090837", + "1483090837", + "1483090876", + "1483090837", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978606", + "978606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090843", + "1483090843", + "1483090890", + "1483090843", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978610", + "978610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090851", + "1483090851", + "1483090896", + "1483090851", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978621", + "978621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090895", + "1483090895", + "1483090976", + "1483090895", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978635", + "978635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090954", + "1483090954", + "1483091011", + "1483090954", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978645", + "978645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090982", + "1483090982", + "1483091033", + "1483090982", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978649", + "978649", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091012", + "1483091012", + "1483091059", + "1483091012", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978651", + "978651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091016", + "1483091016", + "1483091066", + "1483091016", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978653", + "978653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091027", + "1483091027", + "1483091087", + "1483091027", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978661", + "978661", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091041", + "1483091041", + "1483091114", + "1483091041", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978665", + "978665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091060", + "1483091060", + "1483091152", + "1483091060", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978667", + "978667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091067", + "1483091067", + "1483091149", + "1483091067", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978674", + "978674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091087", + "1483091087", + "1483091121", + "1483091087", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978680", + "978680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091114", + "1483091114", + "1483091145", + "1483091114", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978684", + "978684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091122", + "1483091122", + "1483091169", + "1483091122", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978688", + "978688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091146", + "1483091146", + "1483091193", + "1483091146", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978690", + "978690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091150", + "1483091150", + "1483091180", + "1483091150", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978710", + "978710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091201", + "1483091201", + "1483091325", + "1483091201", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978718", + "978718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091237", + "1483091237", + "1483091281", + "1483091237", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978720", + "978720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091237", + "1483091237", + "1483091277", + "1483091237", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978726", + "978726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091253", + "1483091253", + "1483091292", + "1483091253", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978749", + "978749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091326", + "1483091326", + "1483091359", + "1483091326", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978762", + "978762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091342", + "1483091342", + "1483091377", + "1483091342", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978797", + "978797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091426", + "1483091426", + "1483091469", + "1483091426", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978801", + "978801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091451", + "1483091451", + "1483091494", + "1483091451", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978809", + "978809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091478", + "1483091478", + "1483091511", + "1483091478", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978815", + "978815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091498", + "1483091498", + "1483091531", + "1483091498", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978819", + "978819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091512", + "1483091512", + "1483091560", + "1483091512", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978823", + "978823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091521", + "1483091521", + "1483091562", + "1483091521", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978825", + "978825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091526", + "1483091526", + "1483091566", + "1483091526", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978827", + "978827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091527", + "1483091527", + "1483091563", + "1483091527", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978835", + "978835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091555", + "1483091555", + "1483091589", + "1483091555", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978837", + "978837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091561", + "1483091561", + "1483091594", + "1483091561", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978841", + "978841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091564", + "1483091564", + "1483091626", + "1483091564", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978845", + "978845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091575", + "1483091575", + "1483091701", + "1483091575", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978847", + "978847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091590", + "1483091590", + "1483091649", + "1483091590", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978849", + "978849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091594", + "1483091594", + "1483091647", + "1483091594", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978851", + "978851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091616", + "1483091616", + "1483091648", + "1483091616", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978859", + "978859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091648", + "1483091648", + "1483091678", + "1483091648", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978885", + "978885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091713", + "1483091713", + "1483091753", + "1483091713", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978895", + "978895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091732", + "1483091732", + "1483091791", + "1483091732", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978937", + "978937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091840", + "1483091840", + "1483091951", + "1483091840", + "1", + "8", + "0", + "-1", + "111", + "0", + "888", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978945", + "978945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091861", + "1483091861", + "1483091898", + "1483091861", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978947", + "978947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091865", + "1483091865", + "1483091912", + "1483091865", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978951", + "978951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091873", + "1483091873", + "1483091909", + "1483091873", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978953", + "978953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091886", + "1483091886", + "1483091928", + "1483091886", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978957", + "978957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091910", + "1483091910", + "1483091950", + "1483091910", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978959", + "978959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091913", + "1483091913", + "1483091954", + "1483091913", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978961", + "978961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091919", + "1483091919", + "1483091949", + "1483091919", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978965", + "978965", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091929", + "1483091929", + "1483091970", + "1483091929", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978971", + "978971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091951", + "1483091951", + "1483091989", + "1483091951", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978979", + "978979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091971", + "1483091971", + "1483092036", + "1483091971", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978999", + "978999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092037", + "1483092037", + "1483092068", + "1483092037", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979007", + "979007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092058", + "1483092058", + "1483092107", + "1483092058", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979020", + "979020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092100", + "1483092100", + "1483092139", + "1483092100", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979022", + "979022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092103", + "1483092103", + "1483092149", + "1483092103", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979028", + "979028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092115", + "1483092115", + "1483092244", + "1483092115", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979030", + "979030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092121", + "1483092121", + "1483092167", + "1483092121", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979036", + "979036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092150", + "1483092150", + "1483092196", + "1483092150", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979044", + "979044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092172", + "1483092172", + "1483092204", + "1483092172", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979048", + "979048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092197", + "1483092197", + "1483092235", + "1483092197", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979050", + "979050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092202", + "1483092202", + "1483092252", + "1483092202", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979055", + "979055", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092205", + "1483092205", + "1483092237", + "1483092205", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979073", + "979073", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092253", + "1483092253", + "1483092371", + "1483092253", + "1", + "8", + "0", + "-1", + "118", + "0", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979075", + "979075", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092261", + "1483092261", + "1483092316", + "1483092261", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979077", + "979077", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092266", + "1483092266", + "1483092335", + "1483092266", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979079", + "979079", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092270", + "1483092270", + "1483092312", + "1483092270", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979091", + "979091", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092339", + "1483092339", + "1483092376", + "1483092339", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979095", + "979095", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092344", + "1483092344", + "1483092394", + "1483092344", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979099", + "979099", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092355", + "1483092355", + "1483092405", + "1483092355", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979115", + "979115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092406", + "1483092406", + "1483092454", + "1483092406", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979117", + "979117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092409", + "1483092409", + "1483092448", + "1483092409", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979123", + "979123", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092422", + "1483092422", + "1483092467", + "1483092422", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979127", + "979127", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092449", + "1483092449", + "1483092510", + "1483092449", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979135", + "979135", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092466", + "1483092466", + "1483092519", + "1483092466", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979143", + "979143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092511", + "1483092511", + "1483092576", + "1483092511", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979152", + "979152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092519", + "1483092519", + "1483092568", + "1483092519", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979162", + "979162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092569", + "1483092569", + "1483092659", + "1483092569", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979164", + "979164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092572", + "1483092572", + "1483092742", + "1483092572", + "1", + "8", + "0", + "-1", + "170", + "0", + "1360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979171", + "979171", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092577", + "1483092577", + "1483092617", + "1483092577", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979179", + "979179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092618", + "1483092618", + "1483092655", + "1483092618", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979183", + "979183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092651", + "1483092651", + "1483092683", + "1483092651", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979187", + "979187", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092660", + "1483092660", + "1483092690", + "1483092660", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979223", + "979223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092778", + "1483092778", + "1483092810", + "1483092778", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979256", + "979256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092847", + "1483092847", + "1483092885", + "1483092847", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979262", + "979262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092881", + "1483092881", + "1483092916", + "1483092881", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979273", + "979273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092905", + "1483092905", + "1483092944", + "1483092905", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979295", + "979295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092944", + "1483092944", + "1483092978", + "1483092944", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979299", + "979299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092948", + "1483092948", + "1483093060", + "1483092948", + "1", + "8", + "0", + "-1", + "112", + "0", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979301", + "979301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092955", + "1483092955", + "1483092987", + "1483092955", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979345", + "979345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093052", + "1483093052", + "1483093108", + "1483093052", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979359", + "979359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093088", + "1483093088", + "1483093122", + "1483093088", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979367", + "979367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093109", + "1483093109", + "1483093139", + "1483093109", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979385", + "979385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093144", + "1483093144", + "1483093190", + "1483093144", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979389", + "979389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093160", + "1483093160", + "1483093276", + "1483093160", + "1", + "8", + "0", + "-1", + "116", + "0", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979397", + "979397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093191", + "1483093191", + "1483093244", + "1483093191", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979403", + "979403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093205", + "1483093205", + "1483093236", + "1483093205", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979409", + "979409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093237", + "1483093237", + "1483093268", + "1483093237", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979421", + "979421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093276", + "1483093276", + "1483093308", + "1483093276", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979427", + "979427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093301", + "1483093301", + "1483093349", + "1483093301", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979431", + "979431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093304", + "1483093304", + "1483093370", + "1483093304", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979433", + "979433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093309", + "1483093309", + "1483093380", + "1483093309", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979439", + "979439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093350", + "1483093350", + "1483093401", + "1483093350", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979445", + "979445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093381", + "1483093381", + "1483093442", + "1483093381", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979459", + "979459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093429", + "1483093429", + "1483093472", + "1483093429", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979463", + "979463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093443", + "1483093443", + "1483093481", + "1483093443", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979473", + "979473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093477", + "1483093477", + "1483093511", + "1483093477", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979475", + "979475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093482", + "1483093482", + "1483093537", + "1483093482", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979489", + "979489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093574", + "1483093574", + "1483093633", + "1483093574", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979497", + "979497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093586", + "1483093586", + "1483093637", + "1483093586", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979499", + "979499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093627", + "1483093627", + "1483093658", + "1483093627", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979501", + "979501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093633", + "1483093633", + "1483093696", + "1483093633", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979509", + "979509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093639", + "1483093639", + "1483093678", + "1483093639", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979515", + "979515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093679", + "1483093679", + "1483093723", + "1483093679", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979517", + "979517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093686", + "1483093686", + "1483093717", + "1483093686", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979519", + "979519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093689", + "1483093689", + "1483093721", + "1483093689", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979521", + "979521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093692", + "1483093692", + "1483093738", + "1483093692", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979523", + "979523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093697", + "1483093697", + "1483093779", + "1483093697", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979541", + "979541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093780", + "1483093780", + "1483093877", + "1483093780", + "1", + "8", + "0", + "-1", + "97", + "0", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979560", + "979560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093866", + "1483093866", + "1483093979", + "1483093866", + "1", + "8", + "0", + "-1", + "113", + "0", + "904", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979568", + "979568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093919", + "1483093919", + "1483094071", + "1483093919", + "1", + "8", + "0", + "-1", + "152", + "0", + "1216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979570", + "979570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093957", + "1483093957", + "1483094093", + "1483093957", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979578", + "979578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093980", + "1483093980", + "1483094131", + "1483093980", + "1", + "8", + "0", + "-1", + "151", + "0", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979580", + "979580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093989", + "1483093989", + "1483094023", + "1483093989", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979582", + "979582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094010", + "1483094010", + "1483094044", + "1483094010", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979586", + "979586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094045", + "1483094045", + "1483094079", + "1483094045", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979596", + "979596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094080", + "1483094080", + "1483094123", + "1483094080", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979600", + "979600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094116", + "1483094116", + "1483094157", + "1483094116", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979616", + "979616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094158", + "1483094158", + "1483094215", + "1483094158", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979626", + "979626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094209", + "1483094209", + "1483094263", + "1483094209", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979645", + "979645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094270", + "1483094270", + "1483094318", + "1483094270", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979655", + "979655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094310", + "1483094310", + "1483094348", + "1483094310", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979663", + "979663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094334", + "1483094334", + "1483094490", + "1483094334", + "1", + "8", + "0", + "-1", + "156", + "0", + "1248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979665", + "979665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094340", + "1483094340", + "1483094390", + "1483094340", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979667", + "979667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094349", + "1483094349", + "1483094405", + "1483094349", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979671", + "979671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094358", + "1483094358", + "1483094401", + "1483094358", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979681", + "979681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094395", + "1483094395", + "1483094430", + "1483094395", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979683", + "979683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094402", + "1483094402", + "1483094469", + "1483094402", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979685", + "979685", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094403", + "1483094403", + "1483094469", + "1483094403", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979687", + "979687", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094406", + "1483094406", + "1483094470", + "1483094406", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979691", + "979691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094431", + "1483094431", + "1483094479", + "1483094431", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979697", + "979697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094469", + "1483094469", + "1483094521", + "1483094469", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979702", + "979702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094470", + "1483094470", + "1483094532", + "1483094470", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979706", + "979706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094477", + "1483094477", + "1483094558", + "1483094477", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979708", + "979708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094480", + "1483094480", + "1483094632", + "1483094480", + "1", + "8", + "0", + "-1", + "152", + "0", + "1216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979714", + "979714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094522", + "1483094522", + "1483094574", + "1483094522", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979716", + "979716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094525", + "1483094525", + "1483094564", + "1483094525", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979718", + "979718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094533", + "1483094533", + "1483094571", + "1483094533", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979720", + "979720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094559", + "1483094559", + "1483094590", + "1483094559", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979722", + "979722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094565", + "1483094565", + "1483094604", + "1483094565", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979744", + "979744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094642", + "1483094642", + "1483094689", + "1483094642", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979754", + "979754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094668", + "1483094668", + "1483094810", + "1483094668", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979758", + "979758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094677", + "1483094677", + "1483094741", + "1483094677", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979768", + "979768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094736", + "1483094736", + "1483094766", + "1483094736", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979774", + "979774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094746", + "1483094746", + "1483094783", + "1483094746", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979776", + "979776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094750", + "1483094750", + "1483094801", + "1483094750", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979782", + "979782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094784", + "1483094784", + "1483094829", + "1483094784", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979784", + "979784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094790", + "1483094790", + "1483094830", + "1483094790", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979790", + "979790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094802", + "1483094802", + "1483094832", + "1483094802", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979798", + "979798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094830", + "1483094830", + "1483094972", + "1483094830", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979802", + "979802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094833", + "1483094833", + "1483094911", + "1483094833", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979804", + "979804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094854", + "1483094854", + "1483094908", + "1483094854", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979810", + "979810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094885", + "1483094885", + "1483094920", + "1483094885", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979814", + "979814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094894", + "1483094894", + "1483094952", + "1483094894", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979816", + "979816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094909", + "1483094909", + "1483094967", + "1483094909", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979818", + "979818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094912", + "1483094912", + "1483094945", + "1483094912", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979820", + "979820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094915", + "1483094915", + "1483094974", + "1483094915", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979822", + "979822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094920", + "1483094920", + "1483094974", + "1483094920", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979839", + "979839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094975", + "1483094975", + "1483095073", + "1483094975", + "1", + "8", + "0", + "-1", + "98", + "0", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979859", + "979859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095034", + "1483095034", + "1483095075", + "1483095034", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979861", + "979861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095035", + "1483095035", + "1483095092", + "1483095035", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979881", + "979881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095093", + "1483095093", + "1483095133", + "1483095093", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979894", + "979894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095159", + "1483095159", + "1483095189", + "1483095159", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979898", + "979898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095173", + "1483095173", + "1483095204", + "1483095173", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979911", + "979911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095205", + "1483095205", + "1483095255", + "1483095205", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979913", + "979913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095214", + "1483095214", + "1483095258", + "1483095214", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979921", + "979921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095240", + "1483095240", + "1483095282", + "1483095240", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979941", + "979941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095308", + "1483095308", + "1483095347", + "1483095308", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979956", + "979956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095348", + "1483095348", + "1483095389", + "1483095348", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979962", + "979962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095376", + "1483095376", + "1483095418", + "1483095376", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979966", + "979966", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095386", + "1483095386", + "1483095423", + "1483095386", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979994", + "979994", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095512", + "1483095512", + "1483095574", + "1483095512", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979999", + "979999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095528", + "1483095528", + "1483095564", + "1483095528", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980001", + "980001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095547", + "1483095547", + "1483095591", + "1483095547", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980007", + "980007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095575", + "1483095575", + "1483095607", + "1483095575", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980009", + "980009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095586", + "1483095586", + "1483095653", + "1483095586", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980013", + "980013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095592", + "1483095592", + "1483095663", + "1483095592", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980015", + "980015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095600", + "1483095600", + "1483095747", + "1483095600", + "1", + "8", + "0", + "-1", + "147", + "0", + "1176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980039", + "980039", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095696", + "1483095696", + "1483095766", + "1483095696", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980042", + "980042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095696", + "1483095696", + "1483095756", + "1483095696", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980048", + "980048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095710", + "1483095710", + "1483095753", + "1483095710", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980068", + "980068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095817", + "1483095817", + "1483095886", + "1483095817", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980070", + "980070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095825", + "1483095825", + "1483095901", + "1483095825", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980076", + "980076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095847", + "1483095847", + "1483095893", + "1483095847", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980080", + "980080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095887", + "1483095887", + "1483095954", + "1483095887", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980088", + "980088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095930", + "1483095930", + "1483095983", + "1483095930", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980096", + "980096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095964", + "1483095964", + "1483096075", + "1483095964", + "1", + "8", + "0", + "-1", + "111", + "0", + "888", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980102", + "980102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096002", + "1483096002", + "1483096120", + "1483096002", + "1", + "8", + "0", + "-1", + "118", + "0", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980116", + "980116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096094", + "1483096094", + "1483096125", + "1483096094", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980122", + "980122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096106", + "1483096106", + "1483096244", + "1483096106", + "1", + "8", + "0", + "-1", + "138", + "0", + "1104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980124", + "980124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096111", + "1483096111", + "1483096159", + "1483096111", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980126", + "980126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096121", + "1483096121", + "1483096159", + "1483096121", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980128", + "980128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096121", + "1483096121", + "1483096186", + "1483096121", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980140", + "980140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096160", + "1483096160", + "1483096224", + "1483096160", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980163", + "980163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096245", + "1483096245", + "1483096337", + "1483096245", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980167", + "980167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096254", + "1483096254", + "1483096297", + "1483096254", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980191", + "980191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096351", + "1483096351", + "1483096388", + "1483096351", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980193", + "980193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096359", + "1483096359", + "1483096401", + "1483096359", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980203", + "980203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096389", + "1483096389", + "1483096441", + "1483096389", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980207", + "980207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096392", + "1483096392", + "1483096446", + "1483096392", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980213", + "980213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096422", + "1483096422", + "1483096483", + "1483096422", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980217", + "980217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096442", + "1483096442", + "1483096500", + "1483096442", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980219", + "980219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096446", + "1483096446", + "1483096551", + "1483096446", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980225", + "980225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096484", + "1483096484", + "1483096541", + "1483096484", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980227", + "980227", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096489", + "1483096489", + "1483096548", + "1483096489", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980231", + "980231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096501", + "1483096501", + "1483096595", + "1483096501", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980233", + "980233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096506", + "1483096506", + "1483096675", + "1483096506", + "1", + "8", + "0", + "-1", + "169", + "0", + "1352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980239", + "980239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096542", + "1483096542", + "1483096639", + "1483096542", + "1", + "8", + "0", + "-1", + "97", + "0", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980241", + "980241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096549", + "1483096549", + "1483096821", + "1483096549", + "1", + "8", + "0", + "-1", + "272", + "0", + "2176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980247", + "980247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096596", + "1483096596", + "1483096773", + "1483096596", + "1", + "8", + "0", + "-1", + "177", + "0", + "1416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980249", + "980249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096640", + "1483096640", + "1483096719", + "1483096640", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980253", + "980253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096675", + "1483096675", + "1483096763", + "1483096675", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980259", + "980259", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096692", + "1483096692", + "1483096794", + "1483096692", + "1", + "8", + "0", + "-1", + "102", + "0", + "816", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980267", + "980267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096720", + "1483096720", + "1483096751", + "1483096720", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980269", + "980269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096731", + "1483096731", + "1483096761", + "1483096731", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980273", + "980273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096752", + "1483096752", + "1483096799", + "1483096752", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980283", + "980283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096795", + "1483096795", + "1483096845", + "1483096795", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980285", + "980285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096800", + "1483096800", + "1483096831", + "1483096800", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980293", + "980293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096829", + "1483096829", + "1483096899", + "1483096829", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980295", + "980295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096832", + "1483096832", + "1483096893", + "1483096832", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980297", + "980297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096836", + "1483096836", + "1483096886", + "1483096836", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980299", + "980299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096846", + "1483096846", + "1483096995", + "1483096846", + "1", + "8", + "0", + "-1", + "149", + "0", + "1192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980301", + "980301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096850", + "1483096850", + "1483096909", + "1483096850", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980303", + "980303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096872", + "1483096872", + "1483096955", + "1483096872", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980305", + "980305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096887", + "1483096887", + "1483096968", + "1483096887", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980307", + "980307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096894", + "1483096894", + "1483096930", + "1483096894", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980309", + "980309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096900", + "1483096900", + "1483096935", + "1483096900", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980311", + "980311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096910", + "1483096910", + "1483096949", + "1483096910", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980313", + "980313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096930", + "1483096930", + "1483096973", + "1483096930", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980317", + "980317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096950", + "1483096950", + "1483096993", + "1483096950", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980319", + "980319", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096955", + "1483096955", + "1483097002", + "1483096955", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980360", + "980360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097070", + "1483097070", + "1483097103", + "1483097070", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980362", + "980362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097103", + "1483097103", + "1483097152", + "1483097103", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980374", + "980374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097153", + "1483097153", + "1483097210", + "1483097153", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980379", + "980379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097170", + "1483097170", + "1483097209", + "1483097170", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980385", + "980385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097184", + "1483097184", + "1483097267", + "1483097184", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980395", + "980395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097210", + "1483097210", + "1483097291", + "1483097210", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980399", + "980399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097215", + "1483097215", + "1483097248", + "1483097215", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980403", + "980403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097246", + "1483097246", + "1483097304", + "1483097246", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980405", + "980405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097249", + "1483097249", + "1483097282", + "1483097249", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980407", + "980407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097260", + "1483097260", + "1483097295", + "1483097260", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980409", + "980409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097266", + "1483097266", + "1483097317", + "1483097266", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980413", + "980413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097283", + "1483097283", + "1483097331", + "1483097283", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980419", + "980419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097296", + "1483097296", + "1483097340", + "1483097296", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980421", + "980421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097305", + "1483097305", + "1483097346", + "1483097305", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980423", + "980423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097318", + "1483097318", + "1483097349", + "1483097318", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980433", + "980433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097350", + "1483097350", + "1483097406", + "1483097350", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980435", + "980435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097351", + "1483097351", + "1483097504", + "1483097351", + "1", + "8", + "0", + "-1", + "153", + "0", + "1224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980473", + "980473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097496", + "1483097496", + "1483097544", + "1483097496", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980475", + "980475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097501", + "1483097501", + "1483097540", + "1483097501", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980477", + "980477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097505", + "1483097505", + "1483097545", + "1483097505", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980483", + "980483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097520", + "1483097520", + "1483097600", + "1483097520", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980491", + "980491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097546", + "1483097546", + "1483097595", + "1483097546", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980493", + "980493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097562", + "1483097562", + "1483097605", + "1483097562", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980495", + "980495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097594", + "1483097594", + "1483097642", + "1483097594", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980497", + "980497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097595", + "1483097595", + "1483097633", + "1483097595", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980503", + "980503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097606", + "1483097606", + "1483097653", + "1483097606", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980505", + "980505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097626", + "1483097626", + "1483097680", + "1483097626", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980511", + "980511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097643", + "1483097643", + "1483097674", + "1483097643", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980513", + "980513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097652", + "1483097652", + "1483097697", + "1483097652", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980523", + "980523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097684", + "1483097684", + "1483097751", + "1483097684", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980525", + "980525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097688", + "1483097688", + "1483097753", + "1483097688", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980529", + "980529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097698", + "1483097698", + "1483097737", + "1483097698", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980547", + "980547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097773", + "1483097773", + "1483097809", + "1483097773", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980549", + "980549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097774", + "1483097774", + "1483097816", + "1483097774", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980551", + "980551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097791", + "1483097791", + "1483097840", + "1483097791", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980565", + "980565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097840", + "1483097840", + "1483097886", + "1483097840", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980567", + "980567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097841", + "1483097841", + "1483097916", + "1483097841", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980573", + "980573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097856", + "1483097856", + "1483098010", + "1483097856", + "1", + "8", + "0", + "-1", + "154", + "0", + "1232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980577", + "980577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097887", + "1483097887", + "1483097939", + "1483097887", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980587", + "980587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097926", + "1483097926", + "1483097966", + "1483097926", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980593", + "980593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097956", + "1483097956", + "1483098024", + "1483097956", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980602", + "980602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097967", + "1483097967", + "1483098018", + "1483097967", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980604", + "980604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097995", + "1483097995", + "1483098037", + "1483097995", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980606", + "980606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098010", + "1483098010", + "1483098044", + "1483098010", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980608", + "980608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098011", + "1483098011", + "1483098065", + "1483098011", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980610", + "980610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098019", + "1483098019", + "1483098075", + "1483098019", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980612", + "980612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098025", + "1483098025", + "1483098101", + "1483098025", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980614", + "980614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098035", + "1483098035", + "1483098120", + "1483098035", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980616", + "980616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098038", + "1483098038", + "1483098121", + "1483098038", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980620", + "980620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098045", + "1483098045", + "1483098101", + "1483098045", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980622", + "980622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098065", + "1483098065", + "1483098154", + "1483098065", + "1", + "8", + "0", + "-1", + "89", + "0", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980624", + "980624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098076", + "1483098076", + "1483098167", + "1483098076", + "1", + "8", + "0", + "-1", + "91", + "0", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980626", + "980626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098102", + "1483098102", + "1483098147", + "1483098102", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980631", + "980631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098120", + "1483098120", + "1483098157", + "1483098120", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980639", + "980639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098147", + "1483098147", + "1483098182", + "1483098147", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980676", + "980676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098259", + "1483098259", + "1483098315", + "1483098259", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980688", + "980688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098302", + "1483098302", + "1483098369", + "1483098302", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980700", + "980700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098329", + "1483098329", + "1483098374", + "1483098329", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980702", + "980702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098334", + "1483098334", + "1483098392", + "1483098334", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980704", + "980704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098341", + "1483098341", + "1483098413", + "1483098341", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980706", + "980706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098345", + "1483098345", + "1483098424", + "1483098345", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980712", + "980712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098370", + "1483098370", + "1483098412", + "1483098370", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980716", + "980716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098393", + "1483098393", + "1483098466", + "1483098393", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980724", + "980724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098425", + "1483098425", + "1483098479", + "1483098425", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980728", + "980728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098466", + "1483098466", + "1483098521", + "1483098466", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980732", + "980732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098480", + "1483098480", + "1483098568", + "1483098480", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980734", + "980734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098480", + "1483098480", + "1483098551", + "1483098480", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980736", + "980736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098491", + "1483098491", + "1483098533", + "1483098491", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980738", + "980738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098501", + "1483098501", + "1483098544", + "1483098501", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980748", + "980748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098561", + "1483098561", + "1483098661", + "1483098561", + "1", + "8", + "0", + "-1", + "100", + "0", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980750", + "980750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098569", + "1483098569", + "1483098683", + "1483098569", + "1", + "8", + "0", + "-1", + "114", + "0", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980764", + "980764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098667", + "1483098667", + "1483098700", + "1483098667", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980789", + "980789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098753", + "1483098753", + "1483098792", + "1483098753", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980793", + "980793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098764", + "1483098764", + "1483098800", + "1483098764", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980799", + "980799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098775", + "1483098775", + "1483098926", + "1483098775", + "1", + "8", + "0", + "-1", + "151", + "0", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980803", + "980803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098793", + "1483098793", + "1483098874", + "1483098793", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980805", + "980805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098801", + "1483098801", + "1483098852", + "1483098801", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980811", + "980811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098820", + "1483098820", + "1483098855", + "1483098820", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980813", + "980813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098825", + "1483098825", + "1483098874", + "1483098825", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980817", + "980817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098856", + "1483098856", + "1483098890", + "1483098856", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980821", + "980821", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098874", + "1483098874", + "1483098909", + "1483098874", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980825", + "980825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098883", + "1483098883", + "1483098914", + "1483098883", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980827", + "980827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098891", + "1483098891", + "1483098921", + "1483098891", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980829", + "980829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098891", + "1483098891", + "1483098939", + "1483098891", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980831", + "980831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098909", + "1483098909", + "1483098944", + "1483098909", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980835", + "980835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098921", + "1483098921", + "1483098964", + "1483098921", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980837", + "980837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098924", + "1483098924", + "1483098967", + "1483098924", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980839", + "980839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098927", + "1483098927", + "1483098958", + "1483098927", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980841", + "980841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098940", + "1483098940", + "1483098988", + "1483098940", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980873", + "980873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099045", + "1483099045", + "1483099075", + "1483099045", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980881", + "980881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099066", + "1483099066", + "1483099106", + "1483099066", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980897", + "980897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099129", + "1483099129", + "1483099196", + "1483099129", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980899", + "980899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099132", + "1483099132", + "1483099179", + "1483099132", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980903", + "980903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099148", + "1483099148", + "1483099191", + "1483099148", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980905", + "980905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099158", + "1483099158", + "1483099202", + "1483099158", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980909", + "980909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099180", + "1483099180", + "1483099213", + "1483099180", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980911", + "980911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099192", + "1483099192", + "1483099225", + "1483099192", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980915", + "980915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099203", + "1483099203", + "1483099258", + "1483099203", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980917", + "980917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099208", + "1483099208", + "1483099245", + "1483099208", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980919", + "980919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099213", + "1483099213", + "1483099260", + "1483099213", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980923", + "980923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099226", + "1483099226", + "1483099268", + "1483099226", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980931", + "980931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099259", + "1483099259", + "1483099322", + "1483099259", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980941", + "980941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099284", + "1483099284", + "1483099360", + "1483099284", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980943", + "980943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099310", + "1483099310", + "1483099378", + "1483099310", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980945", + "980945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099322", + "1483099322", + "1483099357", + "1483099322", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980976", + "980976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099410", + "1483099410", + "1483099449", + "1483099410", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980987", + "980987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099449", + "1483099449", + "1483099512", + "1483099449", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980989", + "980989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099450", + "1483099450", + "1483099497", + "1483099450", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980997", + "980997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099489", + "1483099489", + "1483099524", + "1483099489", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981001", + "981001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099498", + "1483099498", + "1483099544", + "1483099498", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981003", + "981003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099510", + "1483099510", + "1483099585", + "1483099510", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981005", + "981005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099513", + "1483099513", + "1483099548", + "1483099513", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981015", + "981015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099549", + "1483099549", + "1483099580", + "1483099549", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981017", + "981017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099560", + "1483099560", + "1483099600", + "1483099560", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981021", + "981021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099581", + "1483099581", + "1483099625", + "1483099581", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981023", + "981023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099584", + "1483099584", + "1483099639", + "1483099584", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981025", + "981025", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099584", + "1483099584", + "1483099676", + "1483099584", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981033", + "981033", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099626", + "1483099626", + "1483099681", + "1483099626", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981035", + "981035", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099640", + "1483099640", + "1483099689", + "1483099640", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981045", + "981045", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099690", + "1483099690", + "1483099759", + "1483099690", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981047", + "981047", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099701", + "1483099701", + "1483099743", + "1483099701", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981089", + "981089", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099854", + "1483099854", + "1483099890", + "1483099854", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981093", + "981093", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099891", + "1483099891", + "1483099974", + "1483099891", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981095", + "981095", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099895", + "1483099895", + "1483099959", + "1483099895", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981099", + "981099", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099915", + "1483099915", + "1483099962", + "1483099915", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981103", + "981103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099957", + "1483099957", + "1483099993", + "1483099957", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981105", + "981105", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099960", + "1483099960", + "1483100005", + "1483099960", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981113", + "981113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099982", + "1483099982", + "1483100074", + "1483099982", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981115", + "981115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099994", + "1483099994", + "1483100075", + "1483099994", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981117", + "981117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100004", + "1483100004", + "1483100108", + "1483100004", + "1", + "8", + "0", + "-1", + "104", + "0", + "832", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981121", + "981121", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100018", + "1483100018", + "1483100079", + "1483100018", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981131", + "981131", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100076", + "1483100076", + "1483100221", + "1483100076", + "1", + "8", + "0", + "-1", + "145", + "0", + "1160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981133", + "981133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100080", + "1483100080", + "1483100227", + "1483100080", + "1", + "8", + "0", + "-1", + "147", + "0", + "1176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981137", + "981137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100109", + "1483100109", + "1483100243", + "1483100109", + "1", + "8", + "0", + "-1", + "134", + "0", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981159", + "981159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100308", + "1483100308", + "1483100472", + "1483100308", + "1", + "8", + "0", + "-1", + "164", + "0", + "1312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981181", + "981181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100500", + "1483100500", + "1483100550", + "1483100500", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981183", + "981183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100506", + "1483100506", + "1483100559", + "1483100506", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981185", + "981185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100533", + "1483100533", + "1483100596", + "1483100533", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981189", + "981189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100547", + "1483100547", + "1483100612", + "1483100547", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981191", + "981191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100551", + "1483100551", + "1483100618", + "1483100551", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981193", + "981193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100560", + "1483100560", + "1483100626", + "1483100560", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981195", + "981195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100565", + "1483100565", + "1483100618", + "1483100565", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981199", + "981199", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100597", + "1483100597", + "1483100639", + "1483100597", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981201", + "981201", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100613", + "1483100613", + "1483100665", + "1483100613", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981203", + "981203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100618", + "1483100618", + "1483100673", + "1483100618", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981209", + "981209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100627", + "1483100627", + "1483100695", + "1483100627", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981211", + "981211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100639", + "1483100639", + "1483100787", + "1483100639", + "1", + "8", + "0", + "-1", + "148", + "0", + "1184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981253", + "981253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100820", + "1483100820", + "1483100875", + "1483100820", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981255", + "981255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100844", + "1483100844", + "1483100895", + "1483100844", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981259", + "981259", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100848", + "1483100848", + "1483100918", + "1483100848", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981269", + "981269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100896", + "1483100896", + "1483100948", + "1483100896", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981273", + "981273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100919", + "1483100919", + "1483100993", + "1483100919", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981275", + "981275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100949", + "1483100949", + "1483101017", + "1483100949", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981277", + "981277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100960", + "1483100960", + "1483101032", + "1483100960", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981281", + "981281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100973", + "1483100973", + "1483101060", + "1483100973", + "1", + "8", + "0", + "-1", + "87", + "0", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981283", + "981283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100994", + "1483100994", + "1483101080", + "1483100994", + "1", + "8", + "0", + "-1", + "86", + "0", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981285", + "981285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100995", + "1483100995", + "1483101071", + "1483100995", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981291", + "981291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101019", + "1483101019", + "1483101077", + "1483101019", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981293", + "981293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101033", + "1483101033", + "1483101086", + "1483101033", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981297", + "981297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101060", + "1483101060", + "1483101123", + "1483101060", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981301", + "981301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101072", + "1483101072", + "1483101175", + "1483101072", + "1", + "8", + "0", + "-1", + "103", + "0", + "824", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981306", + "981306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101078", + "1483101078", + "1483101178", + "1483101078", + "1", + "8", + "0", + "-1", + "100", + "0", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981328", + "981328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101181", + "1483101181", + "1483101215", + "1483101181", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981345", + "981345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101222", + "1483101222", + "1483101290", + "1483101222", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981355", + "981355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101245", + "1483101245", + "1483101292", + "1483101245", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981365", + "981365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101291", + "1483101291", + "1483101321", + "1483101291", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981377", + "981377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101322", + "1483101322", + "1483101352", + "1483101322", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981385", + "981385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101353", + "1483101353", + "1483101395", + "1483101353", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981387", + "981387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101358", + "1483101358", + "1483101412", + "1483101358", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981393", + "981393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101372", + "1483101372", + "1483101508", + "1483101372", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981395", + "981395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101381", + "1483101381", + "1483101424", + "1483101381", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981397", + "981397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101396", + "1483101396", + "1483101442", + "1483101396", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981403", + "981403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101424", + "1483101424", + "1483101475", + "1483101424", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981407", + "981407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101432", + "1483101432", + "1483101473", + "1483101432", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981413", + "981413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101447", + "1483101447", + "1483101500", + "1483101447", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981415", + "981415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101464", + "1483101464", + "1483101502", + "1483101464", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981419", + "981419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101475", + "1483101475", + "1483101519", + "1483101475", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981435", + "981435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101520", + "1483101520", + "1483101568", + "1483101520", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981449", + "981449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101568", + "1483101568", + "1483101615", + "1483101568", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981455", + "981455", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101582", + "1483101582", + "1483101612", + "1483101582", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981461", + "981461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101612", + "1483101612", + "1483101642", + "1483101612", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981467", + "981467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101623", + "1483101623", + "1483101671", + "1483101623", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981475", + "981475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101654", + "1483101654", + "1483101698", + "1483101654", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981481", + "981481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101668", + "1483101668", + "1483101716", + "1483101668", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981487", + "981487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101685", + "1483101685", + "1483101727", + "1483101685", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981489", + "981489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101699", + "1483101699", + "1483101741", + "1483101699", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981500", + "981500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101726", + "1483101726", + "1483101759", + "1483101726", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981504", + "981504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101742", + "1483101742", + "1483101792", + "1483101742", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981506", + "981506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101750", + "1483101750", + "1483101800", + "1483101750", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981510", + "981510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101760", + "1483101760", + "1483101797", + "1483101760", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981512", + "981512", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101760", + "1483101760", + "1483101794", + "1483101760", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981520", + "981520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101792", + "1483101792", + "1483101822", + "1483101792", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981530", + "981530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101814", + "1483101814", + "1483101943", + "1483101814", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981532", + "981532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101819", + "1483101819", + "1483101858", + "1483101819", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981554", + "981554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101897", + "1483101897", + "1483101940", + "1483101897", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981579", + "981579", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101944", + "1483101944", + "1483101976", + "1483101944", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981589", + "981589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101982", + "1483101982", + "1483102021", + "1483101982", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981595", + "981595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102021", + "1483102021", + "1483102052", + "1483102021", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981601", + "981601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102032", + "1483102032", + "1483102071", + "1483102032", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981603", + "981603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102043", + "1483102043", + "1483102093", + "1483102043", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981609", + "981609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102064", + "1483102064", + "1483102098", + "1483102064", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981611", + "981611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102065", + "1483102065", + "1483102101", + "1483102065", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981619", + "981619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102079", + "1483102079", + "1483102124", + "1483102079", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981623", + "981623", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102094", + "1483102094", + "1483102139", + "1483102094", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981627", + "981627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102102", + "1483102102", + "1483102138", + "1483102102", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981633", + "981633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102125", + "1483102125", + "1483102163", + "1483102125", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981635", + "981635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102126", + "1483102126", + "1483102161", + "1483102126", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981645", + "981645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102162", + "1483102162", + "1483102222", + "1483102162", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981683", + "981683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102274", + "1483102274", + "1483102318", + "1483102274", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981707", + "981707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102357", + "1483102357", + "1483102406", + "1483102357", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981711", + "981711", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102364", + "1483102364", + "1483102418", + "1483102364", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981715", + "981715", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102381", + "1483102381", + "1483102431", + "1483102381", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981719", + "981719", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102403", + "1483102403", + "1483102441", + "1483102403", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981725", + "981725", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102432", + "1483102432", + "1483102477", + "1483102432", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981729", + "981729", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102441", + "1483102441", + "1483102488", + "1483102441", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981733", + "981733", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102466", + "1483102466", + "1483102501", + "1483102466", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981737", + "981737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102477", + "1483102477", + "1483102526", + "1483102477", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981749", + "981749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102517", + "1483102517", + "1483102553", + "1483102517", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981753", + "981753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102527", + "1483102527", + "1483102592", + "1483102527", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981773", + "981773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102593", + "1483102593", + "1483102655", + "1483102593", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981797", + "981797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102707", + "1483102707", + "1483102765", + "1483102707", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981803", + "981803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102727", + "1483102727", + "1483102828", + "1483102727", + "1", + "8", + "0", + "-1", + "101", + "0", + "808", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981805", + "981805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102731", + "1483102731", + "1483102913", + "1483102731", + "1", + "8", + "0", + "-1", + "182", + "0", + "1456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981810", + "981810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102766", + "1483102766", + "1483102859", + "1483102766", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981816", + "981816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102829", + "1483102829", + "1483102867", + "1483102829", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981830", + "981830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102885", + "1483102885", + "1483102933", + "1483102885", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981846", + "981846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102933", + "1483102933", + "1483102985", + "1483102933", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981850", + "981850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102936", + "1483102936", + "1483103018", + "1483102936", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981852", + "981852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102942", + "1483102942", + "1483102986", + "1483102942", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981854", + "981854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102951", + "1483102951", + "1483102998", + "1483102951", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981856", + "981856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102966", + "1483102966", + "1483103003", + "1483102966", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981858", + "981858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102983", + "1483102983", + "1483103018", + "1483102983", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981874", + "981874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103017", + "1483103017", + "1483103054", + "1483103017", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981878", + "981878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103019", + "1483103019", + "1483103064", + "1483103019", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981884", + "981884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103028", + "1483103028", + "1483103058", + "1483103028", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981901", + "981901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103065", + "1483103065", + "1483103100", + "1483103065", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981905", + "981905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103091", + "1483103091", + "1483103123", + "1483103091", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981919", + "981919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103127", + "1483103127", + "1483103166", + "1483103127", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981937", + "981937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103187", + "1483103187", + "1483103218", + "1483103187", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981939", + "981939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103190", + "1483103190", + "1483103246", + "1483103190", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981941", + "981941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103194", + "1483103194", + "1483103316", + "1483103194", + "1", + "8", + "0", + "-1", + "122", + "0", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981945", + "981945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103199", + "1483103199", + "1483103238", + "1483103199", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981949", + "981949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103219", + "1483103219", + "1483103254", + "1483103219", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981951", + "981951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103239", + "1483103239", + "1483103274", + "1483103239", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981961", + "981961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103255", + "1483103255", + "1483103302", + "1483103255", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981963", + "981963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103264", + "1483103264", + "1483103312", + "1483103264", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981965", + "981965", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103271", + "1483103271", + "1483103315", + "1483103271", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981969", + "981969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103275", + "1483103275", + "1483103322", + "1483103275", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982003", + "982003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103383", + "1483103383", + "1483103417", + "1483103383", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982011", + "982011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103399", + "1483103399", + "1483103447", + "1483103399", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982036", + "982036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103469", + "1483103469", + "1483103537", + "1483103469", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982038", + "982038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103473", + "1483103473", + "1483103505", + "1483103473", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982042", + "982042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103497", + "1483103497", + "1483103557", + "1483103497", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982052", + "982052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103538", + "1483103538", + "1483103604", + "1483103538", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982057", + "982057", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103543", + "1483103543", + "1483103594", + "1483103543", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982065", + "982065", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103578", + "1483103578", + "1483103619", + "1483103578", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982073", + "982073", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103595", + "1483103595", + "1483103651", + "1483103595", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982075", + "982075", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103604", + "1483103604", + "1483103653", + "1483103604", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982079", + "982079", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103618", + "1483103618", + "1483103672", + "1483103618", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982085", + "982085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103652", + "1483103652", + "1483103698", + "1483103652", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982101", + "982101", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103699", + "1483103699", + "1483103757", + "1483103699", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982103", + "982103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103706", + "1483103706", + "1483103781", + "1483103706", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982111", + "982111", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103734", + "1483103734", + "1483103766", + "1483103734", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982113", + "982113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103757", + "1483103757", + "1483103800", + "1483103757", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982115", + "982115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103758", + "1483103758", + "1483103800", + "1483103758", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982117", + "982117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103766", + "1483103766", + "1483103826", + "1483103766", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982126", + "982126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103787", + "1483103787", + "1483103880", + "1483103787", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982128", + "982128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103801", + "1483103801", + "1483103848", + "1483103801", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982136", + "982136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103840", + "1483103840", + "1483103883", + "1483103840", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982150", + "982150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103881", + "1483103881", + "1483103936", + "1483103881", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982152", + "982152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103883", + "1483103883", + "1483103916", + "1483103883", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982154", + "982154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103884", + "1483103884", + "1483103925", + "1483103884", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982156", + "982156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103908", + "1483103908", + "1483103940", + "1483103908", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982158", + "982158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103917", + "1483103917", + "1483103957", + "1483103917", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982160", + "982160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103925", + "1483103925", + "1483103964", + "1483103925", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982168", + "982168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103941", + "1483103941", + "1483104104", + "1483103941", + "1", + "8", + "0", + "-1", + "163", + "0", + "1304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982170", + "982170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103958", + "1483103958", + "1483104020", + "1483103958", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982172", + "982172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103965", + "1483103965", + "1483104061", + "1483103965", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982174", + "982174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103982", + "1483103982", + "1483104027", + "1483103982", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982183", + "982183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104028", + "1483104028", + "1483104154", + "1483104028", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982199", + "982199", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104136", + "1483104136", + "1483104268", + "1483104136", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982203", + "982203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104155", + "1483104155", + "1483104281", + "1483104155", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982223", + "982223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104269", + "1483104269", + "1483104316", + "1483104269", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982225", + "982225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104282", + "1483104282", + "1483104330", + "1483104282", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982229", + "982229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104317", + "1483104317", + "1483104391", + "1483104317", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982231", + "982231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104326", + "1483104326", + "1483104365", + "1483104326", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982233", + "982233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104331", + "1483104331", + "1483104403", + "1483104331", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982235", + "982235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104351", + "1483104351", + "1483104406", + "1483104351", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982241", + "982241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104377", + "1483104377", + "1483104425", + "1483104377", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982245", + "982245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104404", + "1483104404", + "1483104453", + "1483104404", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982247", + "982247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104407", + "1483104407", + "1483104451", + "1483104407", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982251", + "982251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104426", + "1483104426", + "1483104473", + "1483104426", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982254", + "982254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104426", + "1483104426", + "1483104496", + "1483104426", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982256", + "982256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104437", + "1483104437", + "1483104533", + "1483104437", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982258", + "982258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104452", + "1483104452", + "1483104586", + "1483104452", + "1", + "8", + "0", + "-1", + "134", + "0", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982260", + "982260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104452", + "1483104452", + "1483104531", + "1483104452", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982264", + "982264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104473", + "1483104473", + "1483104529", + "1483104473", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982268", + "982268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104496", + "1483104496", + "1483104558", + "1483104496", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982304", + "982304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104650", + "1483104650", + "1483104816", + "1483104650", + "1", + "8", + "0", + "-1", + "166", + "0", + "1328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982310", + "982310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104706", + "1483104706", + "1483104756", + "1483104706", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982316", + "982316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104741", + "1483104741", + "1483104813", + "1483104741", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982322", + "982322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104788", + "1483104788", + "1483104825", + "1483104788", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982324", + "982324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104796", + "1483104796", + "1483104840", + "1483104796", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982328", + "982328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104814", + "1483104814", + "1483104879", + "1483104814", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982334", + "982334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104826", + "1483104826", + "1483104862", + "1483104826", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982338", + "982338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104838", + "1483104838", + "1483104873", + "1483104838", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982342", + "982342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104863", + "1483104863", + "1483104926", + "1483104863", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982344", + "982344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104869", + "1483104869", + "1483104954", + "1483104869", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982346", + "982346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104873", + "1483104873", + "1483104958", + "1483104873", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982348", + "982348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104880", + "1483104880", + "1483104973", + "1483104880", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982352", + "982352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104904", + "1483104904", + "1483104975", + "1483104904", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982362", + "982362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104958", + "1483104958", + "1483104998", + "1483104958", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982366", + "982366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104974", + "1483104974", + "1483105027", + "1483104974", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982376", + "982376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105027", + "1483105027", + "1483105079", + "1483105027", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982390", + "982390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105065", + "1483105065", + "1483105140", + "1483105065", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982400", + "982400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105098", + "1483105098", + "1483105188", + "1483105098", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982406", + "982406", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105141", + "1483105141", + "1483105189", + "1483105141", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982408", + "982408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105160", + "1483105160", + "1483105224", + "1483105160", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982416", + "982416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105222", + "1483105222", + "1483105259", + "1483105222", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982423", + "982423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105237", + "1483105237", + "1483105298", + "1483105237", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982437", + "982437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105287", + "1483105287", + "1483105346", + "1483105287", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982452", + "982452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105315", + "1483105315", + "1483105370", + "1483105315", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982454", + "982454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105338", + "1483105338", + "1483105403", + "1483105338", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982458", + "982458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105346", + "1483105346", + "1483105394", + "1483105346", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982460", + "982460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105346", + "1483105346", + "1483105414", + "1483105346", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982462", + "982462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105356", + "1483105356", + "1483105397", + "1483105356", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982478", + "982478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105427", + "1483105427", + "1483105501", + "1483105427", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982480", + "982480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105428", + "1483105428", + "1483105589", + "1483105428", + "1", + "8", + "0", + "-1", + "161", + "0", + "1288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982498", + "982498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105531", + "1483105531", + "1483105588", + "1483105531", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982520", + "982520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105620", + "1483105620", + "1483105775", + "1483105620", + "1", + "8", + "0", + "-1", + "155", + "0", + "1240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982522", + "982522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105621", + "1483105621", + "1483105677", + "1483105621", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982536", + "982536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105702", + "1483105702", + "1483105744", + "1483105702", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982538", + "982538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105717", + "1483105717", + "1483105779", + "1483105717", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982540", + "982540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105722", + "1483105722", + "1483105783", + "1483105722", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982548", + "982548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105763", + "1483105763", + "1483105795", + "1483105763", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982550", + "982550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105775", + "1483105775", + "1483105819", + "1483105775", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982552", + "982552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105780", + "1483105780", + "1483105818", + "1483105780", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982554", + "982554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105784", + "1483105784", + "1483105838", + "1483105784", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982562", + "982562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105819", + "1483105819", + "1483105863", + "1483105819", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982574", + "982574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105866", + "1483105866", + "1483105924", + "1483105866", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982592", + "982592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105929", + "1483105929", + "1483106000", + "1483105929", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982602", + "982602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105967", + "1483105967", + "1483106001", + "1483105967", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982606", + "982606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105986", + "1483105986", + "1483106030", + "1483105986", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982608", + "982608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106000", + "1483106000", + "1483106065", + "1483106000", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982610", + "982610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106001", + "1483106001", + "1483106047", + "1483106001", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982614", + "982614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106017", + "1483106017", + "1483106050", + "1483106017", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982620", + "982620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106031", + "1483106031", + "1483106074", + "1483106031", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982624", + "982624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106048", + "1483106048", + "1483106138", + "1483106048", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982630", + "982630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106066", + "1483106066", + "1483106135", + "1483106066", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982632", + "982632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106074", + "1483106074", + "1483106168", + "1483106074", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982636", + "982636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106119", + "1483106119", + "1483106191", + "1483106119", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982638", + "982638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106130", + "1483106130", + "1483106186", + "1483106130", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982640", + "982640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106136", + "1483106136", + "1483106208", + "1483106136", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982642", + "982642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106139", + "1483106139", + "1483106197", + "1483106139", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982653", + "982653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106186", + "1483106186", + "1483106267", + "1483106186", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982657", + "982657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106192", + "1483106192", + "1483106281", + "1483106192", + "1", + "8", + "0", + "-1", + "89", + "0", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982659", + "982659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106198", + "1483106198", + "1483106361", + "1483106198", + "1", + "8", + "0", + "-1", + "163", + "0", + "1304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982675", + "982675", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106281", + "1483106281", + "1483106320", + "1483106281", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982679", + "982679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106316", + "1483106316", + "1483106375", + "1483106316", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982687", + "982687", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106338", + "1483106338", + "1483106426", + "1483106338", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982697", + "982697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106374", + "1483106374", + "1483106417", + "1483106374", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982711", + "982711", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106418", + "1483106418", + "1483106498", + "1483106418", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982713", + "982713", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106425", + "1483106425", + "1483106476", + "1483106425", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982717", + "982717", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106449", + "1483106449", + "1483106607", + "1483106449", + "1", + "8", + "0", + "-1", + "158", + "0", + "1264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982723", + "982723", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106477", + "1483106477", + "1483106536", + "1483106477", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982725", + "982725", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106499", + "1483106499", + "1483106561", + "1483106499", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982727", + "982727", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106505", + "1483106505", + "1483106556", + "1483106505", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982729", + "982729", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106515", + "1483106515", + "1483106598", + "1483106515", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982735", + "982735", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106537", + "1483106537", + "1483106584", + "1483106537", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982737", + "982737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106546", + "1483106546", + "1483106621", + "1483106546", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982739", + "982739", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106556", + "1483106556", + "1483106682", + "1483106556", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982741", + "982741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106561", + "1483106561", + "1483106679", + "1483106561", + "1", + "8", + "0", + "-1", + "118", + "0", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982743", + "982743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106585", + "1483106585", + "1483106790", + "1483106585", + "1", + "8", + "0", + "-1", + "205", + "0", + "1640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982745", + "982745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106599", + "1483106599", + "1483106730", + "1483106599", + "1", + "8", + "0", + "-1", + "131", + "0", + "1048", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982747", + "982747", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106608", + "1483106608", + "1483106744", + "1483106608", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982762", + "982762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106711", + "1483106711", + "1483106792", + "1483106711", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982782", + "982782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106768", + "1483106768", + "1483106806", + "1483106768", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982808", + "982808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106868", + "1483106868", + "1483106968", + "1483106868", + "1", + "8", + "0", + "-1", + "100", + "0", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982810", + "982810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106869", + "1483106869", + "1483106915", + "1483106869", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982812", + "982812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106884", + "1483106884", + "1483106962", + "1483106884", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982816", + "982816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106892", + "1483106892", + "1483106923", + "1483106892", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982818", + "982818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106899", + "1483106899", + "1483106949", + "1483106899", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982820", + "982820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106916", + "1483106916", + "1483106959", + "1483106916", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982826", + "982826", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106950", + "1483106950", + "1483107081", + "1483106950", + "1", + "8", + "0", + "-1", + "131", + "0", + "1048", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982828", + "982828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106955", + "1483106955", + "1483107005", + "1483106955", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982830", + "982830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106960", + "1483106960", + "1483107036", + "1483106960", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982849", + "982849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107037", + "1483107037", + "1483107084", + "1483107037", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982851", + "982851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107038", + "1483107038", + "1483107100", + "1483107038", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982859", + "982859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107082", + "1483107082", + "1483107145", + "1483107082", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982861", + "982861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107085", + "1483107085", + "1483107170", + "1483107085", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982863", + "982863", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107101", + "1483107101", + "1483107206", + "1483107101", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982869", + "982869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107124", + "1483107124", + "1483107199", + "1483107124", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982873", + "982873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107146", + "1483107146", + "1483107257", + "1483107146", + "1", + "8", + "0", + "-1", + "111", + "0", + "888", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982877", + "982877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107199", + "1483107199", + "1483107381", + "1483107199", + "1", + "8", + "0", + "-1", + "182", + "0", + "1456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982881", + "982881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107207", + "1483107207", + "1483107319", + "1483107207", + "1", + "8", + "0", + "-1", + "112", + "0", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982885", + "982885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107258", + "1483107258", + "1483107547", + "1483107258", + "1", + "8", + "0", + "-1", + "289", + "0", + "2312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982889", + "982889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107278", + "1483107278", + "1483107477", + "1483107278", + "1", + "8", + "0", + "-1", + "199", + "0", + "1592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982897", + "982897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107316", + "1483107316", + "1483107390", + "1483107316", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982899", + "982899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107320", + "1483107320", + "1483107378", + "1483107320", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982903", + "982903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107382", + "1483107382", + "1483107449", + "1483107382", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982905", + "982905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107391", + "1483107391", + "1483107444", + "1483107391", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982909", + "982909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107445", + "1483107445", + "1483107489", + "1483107445", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982911", + "982911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107450", + "1483107450", + "1483107481", + "1483107450", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982945", + "982945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107559", + "1483107559", + "1483107601", + "1483107559", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982953", + "982953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107602", + "1483107602", + "1483107653", + "1483107602", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982981", + "982981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107700", + "1483107700", + "1483107732", + "1483107700", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982989", + "982989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107712", + "1483107712", + "1483107855", + "1483107712", + "1", + "8", + "0", + "-1", + "143", + "0", + "1144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982991", + "982991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107719", + "1483107719", + "1483107766", + "1483107719", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982993", + "982993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107733", + "1483107733", + "1483107794", + "1483107733", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982997", + "982997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107754", + "1483107754", + "1483107793", + "1483107754", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982999", + "982999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107764", + "1483107764", + "1483107817", + "1483107764", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983001", + "983001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107767", + "1483107767", + "1483107815", + "1483107767", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983009", + "983009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107794", + "1483107794", + "1483107841", + "1483107794", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983013", + "983013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107814", + "1483107814", + "1483107873", + "1483107814", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983017", + "983017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107817", + "1483107817", + "1483107861", + "1483107817", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983062", + "983062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107965", + "1483107965", + "1483108019", + "1483107965", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983070", + "983070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108008", + "1483108008", + "1483108056", + "1483108008", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983076", + "983076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108020", + "1483108020", + "1483108097", + "1483108020", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983089", + "983089", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108081", + "1483108081", + "1483108119", + "1483108081", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983091", + "983091", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108095", + "1483108095", + "1483108144", + "1483108095", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983095", + "983095", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108098", + "1483108098", + "1483108132", + "1483108098", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983099", + "983099", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108116", + "1483108116", + "1483108155", + "1483108116", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983103", + "983103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108126", + "1483108126", + "1483108164", + "1483108126", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983105", + "983105", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108133", + "1483108133", + "1483108169", + "1483108133", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983115", + "983115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108165", + "1483108165", + "1483108208", + "1483108165", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983175", + "983175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108345", + "1483108345", + "1483108376", + "1483108345", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983183", + "983183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108362", + "1483108362", + "1483108404", + "1483108362", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983189", + "983189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108388", + "1483108388", + "1483108450", + "1483108388", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983191", + "983191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108399", + "1483108399", + "1483108443", + "1483108399", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983197", + "983197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108405", + "1483108405", + "1483108459", + "1483108405", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983202", + "983202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108439", + "1483108439", + "1483108470", + "1483108439", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983206", + "983206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108451", + "1483108451", + "1483108497", + "1483108451", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983210", + "983210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108457", + "1483108457", + "1483108537", + "1483108457", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983212", + "983212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108460", + "1483108460", + "1483108520", + "1483108460", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983214", + "983214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108471", + "1483108471", + "1483108621", + "1483108471", + "1", + "8", + "0", + "-1", + "150", + "0", + "1200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983216", + "983216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108479", + "1483108479", + "1483108531", + "1483108479", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983224", + "983224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108520", + "1483108520", + "1483108565", + "1483108520", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983248", + "983248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108621", + "1483108621", + "1483108657", + "1483108621", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983260", + "983260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108650", + "1483108650", + "1483108799", + "1483108650", + "1", + "8", + "0", + "-1", + "149", + "0", + "1192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983262", + "983262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108658", + "1483108658", + "1483108712", + "1483108658", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983279", + "983279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108748", + "1483108748", + "1483108783", + "1483108748", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983281", + "983281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108757", + "1483108757", + "1483108791", + "1483108757", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983285", + "983285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108765", + "1483108765", + "1483108825", + "1483108765", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983287", + "983287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108783", + "1483108783", + "1483108823", + "1483108783", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983293", + "983293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108800", + "1483108800", + "1483108850", + "1483108800", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983301", + "983301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108824", + "1483108824", + "1483108903", + "1483108824", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983304", + "983304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108824", + "1483108824", + "1483108973", + "1483108824", + "1", + "8", + "0", + "-1", + "149", + "0", + "1192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983308", + "983308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108850", + "1483108850", + "1483108934", + "1483108850", + "1", + "8", + "0", + "-1", + "84", + "0", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983326", + "983326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108935", + "1483108935", + "1483108970", + "1483108935", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983343", + "983343", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108992", + "1483108992", + "1483109031", + "1483108992", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983355", + "983355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109004", + "1483109004", + "1483109042", + "1483109004", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983361", + "983361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109043", + "1483109043", + "1483109118", + "1483109043", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983363", + "983363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109049", + "1483109049", + "1483109116", + "1483109049", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983369", + "983369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109083", + "1483109083", + "1483109163", + "1483109083", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983373", + "983373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109117", + "1483109117", + "1483109196", + "1483109117", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983379", + "983379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109127", + "1483109127", + "1483109199", + "1483109127", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983385", + "983385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109164", + "1483109164", + "1483109229", + "1483109164", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983387", + "983387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109191", + "1483109191", + "1483109258", + "1483109191", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983391", + "983391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109194", + "1483109194", + "1483109302", + "1483109194", + "1", + "8", + "0", + "-1", + "108", + "0", + "864", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983393", + "983393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109197", + "1483109197", + "1483109304", + "1483109197", + "1", + "8", + "0", + "-1", + "107", + "0", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983395", + "983395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109200", + "1483109200", + "1483109391", + "1483109200", + "1", + "8", + "0", + "-1", + "191", + "0", + "1528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983403", + "983403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109259", + "1483109259", + "1483109292", + "1483109259", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983405", + "983405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109289", + "1483109289", + "1483109330", + "1483109289", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983407", + "983407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109293", + "1483109293", + "1483109336", + "1483109293", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983411", + "983411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109303", + "1483109303", + "1483109351", + "1483109303", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983415", + "983415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109330", + "1483109330", + "1483109383", + "1483109330", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983441", + "983441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109410", + "1483109410", + "1483109515", + "1483109410", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983447", + "983447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109445", + "1483109445", + "1483109486", + "1483109445", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983449", + "983449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109449", + "1483109449", + "1483109488", + "1483109449", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983451", + "983451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109452", + "1483109452", + "1483109493", + "1483109452", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983461", + "983461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109494", + "1483109494", + "1483109538", + "1483109494", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983467", + "983467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109514", + "1483109514", + "1483109547", + "1483109514", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983483", + "983483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109544", + "1483109544", + "1483109585", + "1483109544", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983491", + "983491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109558", + "1483109558", + "1483109610", + "1483109558", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983493", + "983493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109567", + "1483109567", + "1483109605", + "1483109567", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983495", + "983495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109581", + "1483109581", + "1483109627", + "1483109581", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983507", + "983507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109614", + "1483109614", + "1483109664", + "1483109614", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983511", + "983511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109628", + "1483109628", + "1483109676", + "1483109628", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983513", + "983513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109634", + "1483109634", + "1483109684", + "1483109634", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983515", + "983515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109638", + "1483109638", + "1483109672", + "1483109638", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983536", + "983536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109691", + "1483109691", + "1483109739", + "1483109691", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983540", + "983540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109735", + "1483109735", + "1483109772", + "1483109735", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983542", + "983542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109740", + "1483109740", + "1483109774", + "1483109740", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983558", + "983558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109790", + "1483109790", + "1483109839", + "1483109790", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983578", + "983578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109840", + "1483109840", + "1483109939", + "1483109840", + "1", + "8", + "0", + "-1", + "99", + "0", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983580", + "983580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109843", + "1483109843", + "1483109885", + "1483109843", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983582", + "983582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109849", + "1483109849", + "1483109899", + "1483109849", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983586", + "983586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109868", + "1483109868", + "1483109907", + "1483109868", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983590", + "983590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109886", + "1483109886", + "1483109931", + "1483109886", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983592", + "983592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109896", + "1483109896", + "1483109939", + "1483109896", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983598", + "983598", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109912", + "1483109912", + "1483109954", + "1483109912", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983602", + "983602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109932", + "1483109932", + "1483109970", + "1483109932", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983606", + "983606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109940", + "1483109940", + "1483109991", + "1483109940", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983615", + "983615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109954", + "1483109954", + "1483109990", + "1483109954", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983617", + "983617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109965", + "1483109965", + "1483110021", + "1483109965", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983619", + "983619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109968", + "1483109968", + "1483110024", + "1483109968", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983621", + "983621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109971", + "1483109971", + "1483110036", + "1483109971", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983639", + "983639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110058", + "1483110058", + "1483110115", + "1483110058", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983652", + "983652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110109", + "1483110109", + "1483110140", + "1483110109", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983666", + "983666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110166", + "1483110166", + "1483110219", + "1483110166", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983674", + "983674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110192", + "1483110192", + "1483110235", + "1483110192", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983676", + "983676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110206", + "1483110206", + "1483110277", + "1483110206", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983678", + "983678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110220", + "1483110220", + "1483110276", + "1483110220", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983686", + "983686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110277", + "1483110277", + "1483110309", + "1483110277", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983697", + "983697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110309", + "1483110309", + "1483110359", + "1483110309", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983703", + "983703", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110323", + "1483110323", + "1483110361", + "1483110323", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983709", + "983709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110353", + "1483110353", + "1483110419", + "1483110353", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983711", + "983711", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110360", + "1483110360", + "1483110459", + "1483110360", + "1", + "8", + "0", + "-1", + "99", + "0", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983717", + "983717", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110383", + "1483110383", + "1483110487", + "1483110383", + "1", + "8", + "0", + "-1", + "104", + "0", + "832", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983727", + "983727", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110441", + "1483110441", + "1483110513", + "1483110441", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983737", + "983737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110510", + "1483110510", + "1483110584", + "1483110510", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983749", + "983749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110576", + "1483110576", + "1483110637", + "1483110576", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983759", + "983759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110589", + "1483110589", + "1483110743", + "1483110589", + "1", + "8", + "0", + "-1", + "154", + "0", + "1232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983763", + "983763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110626", + "1483110626", + "1483110719", + "1483110626", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983767", + "983767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110638", + "1483110638", + "1483110782", + "1483110638", + "1", + "8", + "0", + "-1", + "144", + "0", + "1152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983769", + "983769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110672", + "1483110672", + "1483110816", + "1483110672", + "1", + "8", + "0", + "-1", + "144", + "0", + "1152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983771", + "983771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110681", + "1483110681", + "1483110832", + "1483110681", + "1", + "8", + "0", + "-1", + "151", + "0", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983773", + "983773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110690", + "1483110690", + "1483110829", + "1483110690", + "1", + "8", + "0", + "-1", + "139", + "0", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983775", + "983775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110720", + "1483110720", + "1483110854", + "1483110720", + "1", + "8", + "0", + "-1", + "134", + "0", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983779", + "983779", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110783", + "1483110783", + "1483110933", + "1483110783", + "1", + "8", + "0", + "-1", + "150", + "0", + "1200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983783", + "983783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110817", + "1483110817", + "1483110930", + "1483110817", + "1", + "8", + "0", + "-1", + "113", + "0", + "904", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983787", + "983787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110833", + "1483110833", + "1483110975", + "1483110833", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983789", + "983789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110854", + "1483110854", + "1483110938", + "1483110854", + "1", + "8", + "0", + "-1", + "84", + "0", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983791", + "983791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110858", + "1483110858", + "1483110951", + "1483110858", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983803", + "983803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110964", + "1483110964", + "1483111134", + "1483110964", + "1", + "8", + "0", + "-1", + "170", + "0", + "1360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983807", + "983807", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111063", + "1483111063", + "1483111187", + "1483111063", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983811", + "983811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111074", + "1483111074", + "1483111173", + "1483111074", + "1", + "8", + "0", + "-1", + "99", + "0", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983825", + "983825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111186", + "1483111186", + "1483111241", + "1483111186", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983827", + "983827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111188", + "1483111188", + "1483111252", + "1483111188", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983833", + "983833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111199", + "1483111199", + "1483111261", + "1483111199", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983835", + "983835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111225", + "1483111225", + "1483111290", + "1483111225", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983837", + "983837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111242", + "1483111242", + "1483111299", + "1483111242", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983839", + "983839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111246", + "1483111246", + "1483111304", + "1483111246", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983841", + "983841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111253", + "1483111253", + "1483111329", + "1483111253", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983845", + "983845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111262", + "1483111262", + "1483111347", + "1483111262", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983847", + "983847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111291", + "1483111291", + "1483111364", + "1483111291", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983849", + "983849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111300", + "1483111300", + "1483111373", + "1483111300", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983855", + "983855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111330", + "1483111330", + "1483111415", + "1483111330", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983857", + "983857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111348", + "1483111348", + "1483111426", + "1483111348", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983859", + "983859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111364", + "1483111364", + "1483111411", + "1483111364", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983861", + "983861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111374", + "1483111374", + "1483111423", + "1483111374", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983883", + "983883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111495", + "1483111495", + "1483111534", + "1483111495", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983885", + "983885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111504", + "1483111504", + "1483111573", + "1483111504", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983893", + "983893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111534", + "1483111534", + "1483111615", + "1483111534", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983897", + "983897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111546", + "1483111546", + "1483111662", + "1483111546", + "1", + "8", + "0", + "-1", + "116", + "0", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983899", + "983899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111559", + "1483111559", + "1483111619", + "1483111559", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983911", + "983911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111599", + "1483111599", + "1483111670", + "1483111599", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983921", + "983921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111635", + "1483111635", + "1483111666", + "1483111635", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983925", + "983925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111652", + "1483111652", + "1483111734", + "1483111652", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983927", + "983927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111653", + "1483111653", + "1483111697", + "1483111653", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983929", + "983929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111663", + "1483111663", + "1483111698", + "1483111663", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983933", + "983933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111671", + "1483111671", + "1483111736", + "1483111671", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983935", + "983935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111688", + "1483111688", + "1483111742", + "1483111688", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983937", + "983937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111693", + "1483111693", + "1483111785", + "1483111693", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983939", + "983939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111698", + "1483111698", + "1483111764", + "1483111698", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983947", + "983947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111742", + "1483111742", + "1483111847", + "1483111742", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983949", + "983949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111764", + "1483111764", + "1483111812", + "1483111764", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983951", + "983951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111779", + "1483111779", + "1483111817", + "1483111779", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983957", + "983957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111812", + "1483111812", + "1483111842", + "1483111812", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983959", + "983959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111813", + "1483111813", + "1483111854", + "1483111813", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983963", + "983963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111818", + "1483111818", + "1483111851", + "1483111818", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983969", + "983969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111848", + "1483111848", + "1483111879", + "1483111848", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983991", + "983991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111888", + "1483111888", + "1483111930", + "1483111888", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984011", + "984011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111944", + "1483111944", + "1483111976", + "1483111944", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984015", + "984015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111953", + "1483111953", + "1483111994", + "1483111953", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984033", + "984033", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112011", + "1483112011", + "1483112144", + "1483112011", + "1", + "8", + "0", + "-1", + "133", + "0", + "1064", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984037", + "984037", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112026", + "1483112026", + "1483112062", + "1483112026", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984039", + "984039", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112032", + "1483112032", + "1483112099", + "1483112032", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984043", + "984043", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112052", + "1483112052", + "1483112082", + "1483112052", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984049", + "984049", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112075", + "1483112075", + "1483112117", + "1483112075", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984051", + "984051", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112081", + "1483112081", + "1483112126", + "1483112081", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984055", + "984055", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112090", + "1483112090", + "1483112124", + "1483112090", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984057", + "984057", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112100", + "1483112100", + "1483112136", + "1483112100", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984075", + "984075", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112145", + "1483112145", + "1483112277", + "1483112145", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984117", + "984117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112284", + "1483112284", + "1483112329", + "1483112284", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984127", + "984127", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112332", + "1483112332", + "1483112370", + "1483112332", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984131", + "984131", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112342", + "1483112342", + "1483112376", + "1483112342", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984145", + "984145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112377", + "1483112377", + "1483112415", + "1483112377", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984151", + "984151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112396", + "1483112396", + "1483112432", + "1483112396", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984157", + "984157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112413", + "1483112413", + "1483112445", + "1483112413", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984159", + "984159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112416", + "1483112416", + "1483112454", + "1483112416", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984167", + "984167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112443", + "1483112443", + "1483112485", + "1483112443", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984239", + "984239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112651", + "1483112651", + "1483112692", + "1483112651", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984241", + "984241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112659", + "1483112659", + "1483112700", + "1483112659", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984253", + "984253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112701", + "1483112701", + "1483112770", + "1483112701", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984257", + "984257", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112712", + "1483112712", + "1483112750", + "1483112712", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984259", + "984259", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112735", + "1483112735", + "1483112800", + "1483112735", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984263", + "984263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112742", + "1483112742", + "1483112774", + "1483112742", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984275", + "984275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112792", + "1483112792", + "1483112822", + "1483112792", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984277", + "984277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112798", + "1483112798", + "1483112830", + "1483112798", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984281", + "984281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112801", + "1483112801", + "1483112837", + "1483112801", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984283", + "984283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112804", + "1483112804", + "1483112848", + "1483112804", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984285", + "984285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112822", + "1483112822", + "1483112961", + "1483112822", + "1", + "8", + "0", + "-1", + "139", + "0", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984287", + "984287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112830", + "1483112830", + "1483112875", + "1483112830", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984313", + "984313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112904", + "1483112904", + "1483112943", + "1483112904", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984317", + "984317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112943", + "1483112943", + "1483112976", + "1483112943", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984321", + "984321", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112950", + "1483112950", + "1483113014", + "1483112950", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984333", + "984333", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112977", + "1483112977", + "1483113073", + "1483112977", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984339", + "984339", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113013", + "1483113013", + "1483113119", + "1483113013", + "1", + "8", + "0", + "-1", + "106", + "0", + "848", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984359", + "984359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113098", + "1483113098", + "1483113130", + "1483113098", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984361", + "984361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113109", + "1483113109", + "1483113239", + "1483113109", + "1", + "8", + "0", + "-1", + "130", + "0", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984363", + "984363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113120", + "1483113120", + "1483113156", + "1483113120", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984365", + "984365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113123", + "1483113123", + "1483113158", + "1483113123", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984367", + "984367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113131", + "1483113131", + "1483113178", + "1483113131", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984379", + "984379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113179", + "1483113179", + "1483113227", + "1483113179", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984381", + "984381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113183", + "1483113183", + "1483113228", + "1483113183", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984385", + "984385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113199", + "1483113199", + "1483113233", + "1483113199", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984387", + "984387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113213", + "1483113213", + "1483113244", + "1483113213", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984435", + "984435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113370", + "1483113370", + "1483113405", + "1483113370", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984440", + "984440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113371", + "1483113371", + "1483113406", + "1483113371", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984442", + "984442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113379", + "1483113379", + "1483113417", + "1483113379", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984444", + "984444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113394", + "1483113394", + "1483113441", + "1483113394", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984448", + "984448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113407", + "1483113407", + "1483113451", + "1483113407", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984470", + "984470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113486", + "1483113486", + "1483113554", + "1483113486", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984480", + "984480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113560", + "1483113560", + "1483113814", + "1483113560", + "1", + "8", + "0", + "-1", + "254", + "0", + "2032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984486", + "984486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113624", + "1483113624", + "1483113772", + "1483113624", + "1", + "8", + "0", + "-1", + "148", + "0", + "1184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984492", + "984492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113644", + "1483113644", + "1483113725", + "1483113644", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984500", + "984500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113732", + "1483113732", + "1483113769", + "1483113732", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984506", + "984506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113770", + "1483113770", + "1483113817", + "1483113770", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984534", + "984534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113839", + "1483113839", + "1483113883", + "1483113839", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984540", + "984540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113856", + "1483113856", + "1483113894", + "1483113856", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984558", + "984558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113918", + "1483113918", + "1483113958", + "1483113918", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984562", + "984562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113930", + "1483113930", + "1483113980", + "1483113930", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984568", + "984568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113959", + "1483113959", + "1483113992", + "1483113959", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984572", + "984572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113980", + "1483113980", + "1483114019", + "1483113980", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984578", + "984578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113993", + "1483113993", + "1483114032", + "1483113993", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984580", + "984580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113997", + "1483113997", + "1483114047", + "1483113997", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984584", + "984584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114007", + "1483114007", + "1483114045", + "1483114007", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984586", + "984586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114012", + "1483114012", + "1483114047", + "1483114012", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984590", + "984590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114020", + "1483114020", + "1483114067", + "1483114020", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984652", + "984652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114203", + "1483114203", + "1483114243", + "1483114203", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984660", + "984660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114221", + "1483114221", + "1483114286", + "1483114221", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984666", + "984666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114244", + "1483114244", + "1483114278", + "1483114244", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984698", + "984698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114335", + "1483114335", + "1483114365", + "1483114335", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984700", + "984700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114348", + "1483114348", + "1483114469", + "1483114348", + "1", + "8", + "0", + "-1", + "121", + "0", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984704", + "984704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114354", + "1483114354", + "1483114417", + "1483114354", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984710", + "984710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114361", + "1483114361", + "1483114403", + "1483114361", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984712", + "984712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114366", + "1483114366", + "1483114398", + "1483114366", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984718", + "984718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114399", + "1483114399", + "1483114440", + "1483114399", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984752", + "984752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114502", + "1483114502", + "1483114554", + "1483114502", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984756", + "984756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114520", + "1483114520", + "1483114560", + "1483114520", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984781", + "984781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114592", + "1483114592", + "1483114632", + "1483114592", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984793", + "984793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114642", + "1483114642", + "1483114687", + "1483114642", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984801", + "984801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114663", + "1483114663", + "1483114799", + "1483114663", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984803", + "984803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114674", + "1483114674", + "1483114728", + "1483114674", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984807", + "984807", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114688", + "1483114688", + "1483114745", + "1483114688", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984809", + "984809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114691", + "1483114691", + "1483114731", + "1483114691", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984811", + "984811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114705", + "1483114705", + "1483114739", + "1483114705", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984815", + "984815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114725", + "1483114725", + "1483114772", + "1483114725", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984823", + "984823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114740", + "1483114740", + "1483114775", + "1483114740", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984825", + "984825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114746", + "1483114746", + "1483114808", + "1483114746", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984851", + "984851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114826", + "1483114826", + "1483114860", + "1483114826", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984853", + "984853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114835", + "1483114835", + "1483114895", + "1483114835", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984877", + "984877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114928", + "1483114928", + "1483114962", + "1483114928", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984881", + "984881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114946", + "1483114946", + "1483115029", + "1483114946", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984885", + "984885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114955", + "1483114955", + "1483115129", + "1483114955", + "1", + "8", + "0", + "-1", + "174", + "0", + "1392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984889", + "984889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115001", + "1483115001", + "1483115091", + "1483115001", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984891", + "984891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115012", + "1483115012", + "1483115063", + "1483115012", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984897", + "984897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115047", + "1483115047", + "1483115081", + "1483115047", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984899", + "984899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115054", + "1483115054", + "1483115092", + "1483115054", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984903", + "984903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115063", + "1483115063", + "1483115112", + "1483115063", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984907", + "984907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115077", + "1483115077", + "1483115107", + "1483115077", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984909", + "984909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115082", + "1483115082", + "1483115154", + "1483115082", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984911", + "984911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115092", + "1483115092", + "1483115148", + "1483115092", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984913", + "984913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115092", + "1483115092", + "1483115123", + "1483115092", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984915", + "984915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115108", + "1483115108", + "1483115154", + "1483115108", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984921", + "984921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115130", + "1483115130", + "1483115166", + "1483115130", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984933", + "984933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115155", + "1483115155", + "1483115189", + "1483115155", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984953", + "984953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115213", + "1483115213", + "1483115244", + "1483115213", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984963", + "984963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115245", + "1483115245", + "1483115294", + "1483115245", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984979", + "984979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115295", + "1483115295", + "1483115347", + "1483115295", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984985", + "984985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115303", + "1483115303", + "1483115390", + "1483115303", + "1", + "8", + "0", + "-1", + "87", + "0", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984989", + "984989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115318", + "1483115318", + "1483115381", + "1483115318", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984991", + "984991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115326", + "1483115326", + "1483115369", + "1483115326", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985005", + "985005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115391", + "1483115391", + "1483115437", + "1483115391", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985007", + "985007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115408", + "1483115408", + "1483115453", + "1483115408", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985009", + "985009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115421", + "1483115421", + "1483115507", + "1483115421", + "1", + "8", + "0", + "-1", + "86", + "0", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985011", + "985011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115429", + "1483115429", + "1483115587", + "1483115429", + "1", + "8", + "0", + "-1", + "158", + "0", + "1264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985015", + "985015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115438", + "1483115438", + "1483115496", + "1483115438", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985017", + "985017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115454", + "1483115454", + "1483115510", + "1483115454", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985023", + "985023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115497", + "1483115497", + "1483115569", + "1483115497", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985027", + "985027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115508", + "1483115508", + "1483115577", + "1483115508", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985038", + "985038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115531", + "1483115531", + "1483115563", + "1483115531", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985044", + "985044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115544", + "1483115544", + "1483115591", + "1483115544", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985084", + "985084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115661", + "1483115661", + "1483115721", + "1483115661", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985086", + "985086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115665", + "1483115665", + "1483115791", + "1483115665", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985090", + "985090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115666", + "1483115666", + "1483115715", + "1483115666", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985108", + "985108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115734", + "1483115734", + "1483115769", + "1483115734", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985112", + "985112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115754", + "1483115754", + "1483115797", + "1483115754", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985114", + "985114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115760", + "1483115760", + "1483115802", + "1483115760", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985124", + "985124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115791", + "1483115791", + "1483115823", + "1483115791", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985136", + "985136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115813", + "1483115813", + "1483115877", + "1483115813", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985142", + "985142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115835", + "1483115835", + "1483115871", + "1483115835", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985146", + "985146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115855", + "1483115855", + "1483115898", + "1483115855", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985152", + "985152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115872", + "1483115872", + "1483115907", + "1483115872", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985174", + "985174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115949", + "1483115949", + "1483116011", + "1483115949", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985176", + "985176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115949", + "1483115949", + "1483116009", + "1483115949", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985178", + "985178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115950", + "1483115950", + "1483116072", + "1483115950", + "1", + "8", + "0", + "-1", + "122", + "0", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985217", + "985217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116070", + "1483116070", + "1483116101", + "1483116070", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985225", + "985225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116088", + "1483116088", + "1483116128", + "1483116088", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985253", + "985253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116167", + "1483116167", + "1483116204", + "1483116167", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985263", + "985263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116199", + "1483116199", + "1483116247", + "1483116199", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985265", + "985265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116199", + "1483116199", + "1483116239", + "1483116199", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985267", + "985267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116204", + "1483116204", + "1483116238", + "1483116204", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985297", + "985297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116296", + "1483116296", + "1483116334", + "1483116296", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985318", + "985318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116320", + "1483116320", + "1483116358", + "1483116320", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168478", + "168478", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061291", + "1483061291", + "1483061330", + "1483061291", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168529", + "168529", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061641", + "1483061641", + "1483061685", + "1483061641", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168572", + "168572", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061921", + "1483061921", + "1483061952", + "1483061921", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168991", + "168991", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064965", + "1483064965", + "1483065003", + "1483064965", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169291", + "169291", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067148", + "1483067148", + "1483067192", + "1483067148", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169520", + "169520", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068645", + "1483068645", + "1483068686", + "1483068645", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170128", + "170128", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072002", + "1483072002", + "1483072041", + "1483072002", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170232", + "170232", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072642", + "1483072642", + "1483072674", + "1483072642", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170392", + "170392", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073663", + "1483073663", + "1483073710", + "1483073663", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170434", + "170434", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073949", + "1483073949", + "1483073982", + "1483073949", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170631", + "170631", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075162", + "1483075162", + "1483075229", + "1483075162", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170980", + "170980", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077809", + "1483077809", + "1483077849", + "1483077809", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171330", + "171330", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080392", + "1483080392", + "1483080467", + "1483080392", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171798", + "171798", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083351", + "1483083351", + "1483083386", + "1483083351", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172319", + "172319", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085978", + "1483085978", + "1483086058", + "1483085978", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172503", + "172503", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086896", + "1483086896", + "1483086926", + "1483086896", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173145", + "173145", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090877", + "1483090877", + "1483090907", + "1483090877", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173677", + "173677", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094252", + "1483094252", + "1483094293", + "1483094252", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173780", + "173780", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094975", + "1483094975", + "1483095014", + "1483094975", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174372", + "174372", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099413", + "1483099413", + "1483099459", + "1483099413", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174535", + "174535", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101072", + "1483101072", + "1483101177", + "1483101072", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174793", + "174793", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102731", + "1483102731", + "1483102800", + "1483102731", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175025", + "175025", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104426", + "1483104426", + "1483104461", + "1483104426", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175125", + "175125", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105301", + "1483105301", + "1483105337", + "1483105301", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175226", + "175226", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106141", + "1483106141", + "1483106172", + "1483106141", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175326", + "175326", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107006", + "1483107006", + "1483107055", + "1483107006", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175771", + "175771", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110308", + "1483110308", + "1483110357", + "1483110308", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176081", + "176081", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112898", + "1483112898", + "1483112941", + "1483112898", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176450", + "176450", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115510", + "1483115510", + "1483115589", + "1483115510", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "1004944", + "1004944", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483065756", + "1483065756", + "1483065962", + "1483065756", + "1", + "8", + "0", + "-1", + "206", + "0", + "1648", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005038", + "1005038", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067447", + "1483067447", + "1483067519", + "1483067447", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005699", + "1005699", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483076101", + "1483076101", + "1483076427", + "1483076101", + "1", + "8", + "0", + "-1", + "326", + "0", + "2608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006110", + "1006110", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483081510", + "1483081510", + "1483081599", + "1483081510", + "1", + "8", + "0", + "-1", + "89", + "0", + "712", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006907", + "1006907", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483092688", + "1483092688", + "1483092798", + "1483092688", + "1", + "8", + "0", + "-1", + "110", + "0", + "880", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006918", + "1006918", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483092808", + "1483092808", + "1483092945", + "1483092808", + "1", + "8", + "0", + "-1", + "137", + "0", + "1096", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007208", + "1007208", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483096654", + "1483096654", + "1483096909", + "1483096654", + "1", + "8", + "0", + "-1", + "255", + "0", + "2040", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007502", + "1007502", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483100500", + "1483100500", + "1483100543", + "1483100500", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008100", + "1008100", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483109276", + "1483109276", + "1483109405", + "1483109276", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009303", + "1009303", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483122737", + "1483122737", + "1483122867", + "1483122737", + "1", + "8", + "0", + "-1", + "130", + "0", + "1040", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010169", + "1010169", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483134032", + "1483134032", + "1483134398", + "1483134032", + "1", + "8", + "0", + "-1", + "366", + "0", + "2928", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010262", + "1010262", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483135353", + "1483135353", + "1483135568", + "1483135353", + "1", + "8", + "0", + "-1", + "215", + "0", + "1720", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006529", + "1006529", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483087348", + "1483087348", + "1483088088", + "1483087348", + "1", + "8", + "0", + "-1", + "740", + "0", + "5920", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007217", + "1007217", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483096750", + "1483096750", + "1483097475", + "1483096750", + "1", + "8", + "0", + "-1", + "725", + "0", + "5800", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007259", + "1007259", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483097215", + "1483097215", + "1483097965", + "1483097215", + "1", + "8", + "0", + "-1", + "750", + "0", + "6000", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007271", + "1007271", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483097336", + "1483097336", + "1483097492", + "1483097336", + "1", + "8", + "0", + "-1", + "156", + "0", + "1248", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007307", + "1007307", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483097894", + "1483097894", + "1483098427", + "1483097894", + "1", + "8", + "0", + "-1", + "533", + "0", + "4264", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008041", + "1008041", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483108434", + "1483108434", + "1483109513", + "1483108434", + "1", + "8", + "0", + "-1", + "1079", + "0", + "8632", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008170", + "1008170", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483110307", + "1483110307", + "1483110913", + "1483110307", + "1", + "8", + "0", + "-1", + "606", + "0", + "4848", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008240", + "1008240", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483111266", + "1483111266", + "1483112030", + "1483111266", + "1", + "8", + "0", + "-1", + "764", + "0", + "6112", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008270", + "1008270", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483111758", + "1483111758", + "1483112977", + "1483111758", + "1", + "8", + "0", + "-1", + "1219", + "0", + "9752", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008725", + "1008725", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483117278", + "1483117278", + "1483117654", + "1483117278", + "1", + "8", + "0", + "-1", + "376", + "0", + "3008", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009192", + "1009192", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483121725", + "1483121725", + "1483122653", + "1483121725", + "1", + "8", + "0", + "-1", + "928", + "0", + "7424", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009293", + "1009293", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483122659", + "1483122659", + "1483124416", + "1483122659", + "1", + "8", + "0", + "-1", + "1757", + "0", + "14056", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009322", + "1009322", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483123043", + "1483123043", + "1483123912", + "1483123043", + "1", + "8", + "0", + "-1", + "869", + "0", + "6952", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009335", + "1009335", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483123153", + "1483123153", + "1483123605", + "1483123153", + "1", + "8", + "0", + "-1", + "452", + "0", + "3616", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009418", + "1009418", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483124223", + "1483124223", + "1483125229", + "1483124223", + "1", + "8", + "0", + "-1", + "1006", + "0", + "8048", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006431", + "1006431", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483085916", + "1483085916", + "1483086069", + "1483085916", + "1", + "8", + "0", + "-1", + "153", + "0", + "1224", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006565", + "1006565", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483087982", + "1483087982", + "1483089311", + "1483087982", + "1", + "8", + "0", + "-1", + "1329", + "0", + "10632", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006572", + "1006572", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483088066", + "1483088066", + "1483089805", + "1483088066", + "1", + "8", + "0", + "-1", + "1739", + "0", + "13912", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006898", + "1006898", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483092552", + "1483092552", + "1483093812", + "1483092552", + "1", + "8", + "0", + "-1", + "1260", + "0", + "10080", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007148", + "1007148", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483095876", + "1483095876", + "1483096148", + "1483095876", + "1", + "8", + "0", + "-1", + "272", + "0", + "2176", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007328", + "1007328", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483098229", + "1483098229", + "1483098809", + "1483098229", + "1", + "8", + "0", + "-1", + "580", + "0", + "4640", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007525", + "1007525", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483100778", + "1483100778", + "1483101457", + "1483100778", + "1", + "8", + "0", + "-1", + "679", + "0", + "5432", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008311", + "1008311", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483112316", + "1483112316", + "1483113071", + "1483112316", + "1", + "8", + "0", + "-1", + "755", + "0", + "6040", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008748", + "1008748", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483117476", + "1483117476", + "1483118804", + "1483117476", + "1", + "8", + "0", + "-1", + "1328", + "0", + "10624", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008900", + "1008900", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483118951", + "1483118951", + "1483119568", + "1483118951", + "1", + "8", + "0", + "-1", + "617", + "0", + "4936", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "2275568", + "2275568", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054500", + "1483054500", + "1483056044", + "1483054500", + "1", + "12", + "0", + "-1", + "1544", + "0", + "18528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275570", + "2275570", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054513", + "1483054513", + "1483056156", + "1483054513", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275573", + "2275573", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054551", + "1483054551", + "1483056328", + "1483054551", + "1", + "12", + "0", + "-1", + "1777", + "0", + "21324", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275575", + "2275575", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054560", + "1483054560", + "1483056345", + "1483054560", + "1", + "12", + "0", + "-1", + "1785", + "0", + "21420", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275582", + "2275582", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054594", + "1483054594", + "1483056306", + "1483054594", + "1", + "12", + "0", + "-1", + "1712", + "0", + "20544", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275627", + "2275627", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054881", + "1483054881", + "1483056285", + "1483054881", + "1", + "12", + "0", + "-1", + "1404", + "0", + "16848", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275636", + "2275636", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054954", + "1483054954", + "1483056730", + "1483054954", + "1", + "12", + "0", + "-1", + "1776", + "0", + "21312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275643", + "2275643", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055005", + "1483055005", + "1483056342", + "1483055005", + "1", + "12", + "0", + "-1", + "1337", + "0", + "16044", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275649", + "2275649", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055041", + "1483055041", + "1483056413", + "1483055041", + "1", + "12", + "0", + "-1", + "1372", + "0", + "16464", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275653", + "2275653", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055070", + "1483055070", + "1483056682", + "1483055070", + "1", + "12", + "0", + "-1", + "1612", + "0", + "19344", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275688", + "2275688", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055733", + "1483055733", + "1483057524", + "1483055733", + "1", + "12", + "0", + "-1", + "1791", + "0", + "21492", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275690", + "2275690", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055737", + "1483055737", + "1483057202", + "1483055737", + "1", + "12", + "0", + "-1", + "1465", + "0", + "17580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275693", + "2275693", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055850", + "1483055850", + "1483057279", + "1483055850", + "1", + "12", + "0", + "-1", + "1429", + "0", + "17148", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275724", + "2275724", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056191", + "1483056191", + "1483057730", + "1483056191", + "1", + "12", + "0", + "-1", + "1539", + "0", + "18468", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275730", + "2275730", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056214", + "1483056214", + "1483057658", + "1483056214", + "1", + "12", + "0", + "-1", + "1444", + "0", + "17328", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275758", + "2275758", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056530", + "1483056530", + "1483057738", + "1483056530", + "1", + "12", + "0", + "-1", + "1208", + "0", + "14496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275798", + "2275798", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056910", + "1483056910", + "1483058553", + "1483056910", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275800", + "2275800", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056914", + "1483056914", + "1483058291", + "1483056914", + "1", + "12", + "0", + "-1", + "1377", + "0", + "16524", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275808", + "2275808", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057056", + "1483057056", + "1483058586", + "1483057056", + "1", + "12", + "0", + "-1", + "1530", + "0", + "18360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275836", + "2275836", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057288", + "1483057288", + "1483059051", + "1483057288", + "1", + "12", + "0", + "-1", + "1763", + "0", + "21156", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275864", + "2275864", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057642", + "1483057642", + "1483059124", + "1483057642", + "1", + "12", + "0", + "-1", + "1482", + "0", + "17784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275885", + "2275885", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057968", + "1483057968", + "1483059600", + "1483057968", + "1", + "12", + "0", + "-1", + "1632", + "0", + "19584", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275894", + "2275894", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058049", + "1483058049", + "1483059775", + "1483058049", + "1", + "12", + "0", + "-1", + "1726", + "0", + "20712", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275901", + "2275901", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058164", + "1483058164", + "1483059959", + "1483058164", + "1", + "12", + "0", + "-1", + "1795", + "0", + "21540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275915", + "2275915", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058249", + "1483058249", + "1483059810", + "1483058249", + "1", + "12", + "0", + "-1", + "1561", + "0", + "18732", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275921", + "2275921", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058361", + "1483058361", + "1483060029", + "1483058361", + "1", + "12", + "0", + "-1", + "1668", + "0", + "20016", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275971", + "2275971", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058952", + "1483058952", + "1483060313", + "1483058952", + "1", + "12", + "0", + "-1", + "1361", + "0", + "16332", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275975", + "2275975", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059011", + "1483059011", + "1483060797", + "1483059011", + "1", + "12", + "0", + "-1", + "1786", + "0", + "21432", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275980", + "2275980", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059072", + "1483059072", + "1483060741", + "1483059072", + "1", + "12", + "0", + "-1", + "1669", + "0", + "20028", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275986", + "2275986", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059144", + "1483059144", + "1483060753", + "1483059144", + "1", + "12", + "0", + "-1", + "1609", + "0", + "19308", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275988", + "2275988", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059148", + "1483059148", + "1483060864", + "1483059148", + "1", + "12", + "0", + "-1", + "1716", + "0", + "20592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275994", + "2275994", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059222", + "1483059222", + "1483060874", + "1483059222", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276006", + "2276006", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059313", + "1483059313", + "1483060878", + "1483059313", + "1", + "12", + "0", + "-1", + "1565", + "0", + "18780", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276052", + "2276052", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059841", + "1483059841", + "1483061409", + "1483059841", + "1", + "12", + "0", + "-1", + "1568", + "0", + "18816", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276054", + "2276054", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059850", + "1483059850", + "1483061471", + "1483059850", + "1", + "12", + "0", + "-1", + "1621", + "0", + "19452", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276056", + "2276056", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059856", + "1483059856", + "1483061486", + "1483059856", + "1", + "12", + "0", + "-1", + "1630", + "0", + "19560", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276058", + "2276058", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059883", + "1483059883", + "1483061463", + "1483059883", + "1", + "12", + "0", + "-1", + "1580", + "0", + "18960", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276060", + "2276060", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059912", + "1483059912", + "1483061535", + "1483059912", + "1", + "12", + "0", + "-1", + "1623", + "0", + "19476", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276062", + "2276062", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059926", + "1483059926", + "1483061546", + "1483059926", + "1", + "12", + "0", + "-1", + "1620", + "0", + "19440", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276077", + "2276077", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060105", + "1483060105", + "1483061660", + "1483060105", + "1", + "12", + "0", + "-1", + "1555", + "0", + "18660", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276079", + "2276079", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060178", + "1483060178", + "1483061828", + "1483060178", + "1", + "12", + "0", + "-1", + "1650", + "0", + "19800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276109", + "2276109", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060563", + "1483060563", + "1483062122", + "1483060563", + "1", + "12", + "0", + "-1", + "1559", + "0", + "18708", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276111", + "2276111", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060588", + "1483060588", + "1483062274", + "1483060588", + "1", + "12", + "0", + "-1", + "1686", + "0", + "20232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276114", + "2276114", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060659", + "1483060659", + "1483062174", + "1483060659", + "1", + "12", + "0", + "-1", + "1515", + "0", + "18180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276116", + "2276116", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060673", + "1483060673", + "1483061859", + "1483060673", + "1", + "12", + "0", + "-1", + "1186", + "0", + "14232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276118", + "2276118", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060684", + "1483060684", + "1483062343", + "1483060684", + "1", + "12", + "0", + "-1", + "1659", + "0", + "19908", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276138", + "2276138", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060802", + "1483060802", + "1483062431", + "1483060802", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276152", + "2276152", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060930", + "1483060930", + "1483062475", + "1483060930", + "1", + "12", + "0", + "-1", + "1545", + "0", + "18540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276159", + "2276159", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061006", + "1483061006", + "1483062326", + "1483061006", + "1", + "12", + "0", + "-1", + "1320", + "0", + "15840", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276161", + "2276161", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061041", + "1483061041", + "1483062700", + "1483061041", + "1", + "12", + "0", + "-1", + "1659", + "0", + "19908", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276167", + "2276167", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061108", + "1483061108", + "1483062738", + "1483061108", + "1", + "12", + "0", + "-1", + "1630", + "0", + "19560", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276170", + "2276170", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061163", + "1483061163", + "1483062818", + "1483061163", + "1", + "12", + "0", + "-1", + "1655", + "0", + "19860", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276175", + "2276175", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061305", + "1483061305", + "1483062891", + "1483061305", + "1", + "12", + "0", + "-1", + "1586", + "0", + "19032", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276177", + "2276177", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061332", + "1483061332", + "1483062969", + "1483061332", + "1", + "12", + "0", + "-1", + "1637", + "0", + "19644", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276203", + "2276203", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061546", + "1483061546", + "1483063297", + "1483061546", + "1", + "12", + "0", + "-1", + "1751", + "0", + "21012", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276205", + "2276205", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061551", + "1483061551", + "1483062988", + "1483061551", + "1", + "12", + "0", + "-1", + "1437", + "0", + "17244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276210", + "2276210", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061605", + "1483061605", + "1483063290", + "1483061605", + "1", + "12", + "0", + "-1", + "1685", + "0", + "20220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276218", + "2276218", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061714", + "1483061714", + "1483063194", + "1483061714", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276221", + "2276221", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061753", + "1483061753", + "1483063170", + "1483061753", + "1", + "12", + "0", + "-1", + "1417", + "0", + "17004", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276227", + "2276227", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061796", + "1483061796", + "1483063479", + "1483061796", + "1", + "12", + "0", + "-1", + "1683", + "0", + "20196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276229", + "2276229", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061805", + "1483061805", + "1483063457", + "1483061805", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276235", + "2276235", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061857", + "1483061857", + "1483063312", + "1483061857", + "1", + "12", + "0", + "-1", + "1455", + "0", + "17460", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276241", + "2276241", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061890", + "1483061890", + "1483063525", + "1483061890", + "1", + "12", + "0", + "-1", + "1635", + "0", + "19620", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276256", + "2276256", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062178", + "1483062178", + "1483063421", + "1483062178", + "1", + "12", + "0", + "-1", + "1243", + "0", + "14916", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276268", + "2276268", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062348", + "1483062348", + "1483063721", + "1483062348", + "1", + "12", + "0", + "-1", + "1373", + "0", + "16476", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276270", + "2276270", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062370", + "1483062370", + "1483064045", + "1483062370", + "1", + "12", + "0", + "-1", + "1675", + "0", + "20100", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276272", + "2276272", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062377", + "1483062377", + "1483063984", + "1483062377", + "1", + "12", + "0", + "-1", + "1607", + "0", + "19284", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276276", + "2276276", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062439", + "1483062439", + "1483064151", + "1483062439", + "1", + "12", + "0", + "-1", + "1712", + "0", + "20544", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276282", + "2276282", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062466", + "1483062466", + "1483063999", + "1483062466", + "1", + "12", + "0", + "-1", + "1533", + "0", + "18396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276286", + "2276286", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062480", + "1483062480", + "1483064063", + "1483062480", + "1", + "12", + "0", + "-1", + "1583", + "0", + "18996", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276289", + "2276289", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062533", + "1483062533", + "1483063987", + "1483062533", + "1", + "12", + "0", + "-1", + "1454", + "0", + "17448", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276294", + "2276294", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062641", + "1483062641", + "1483064326", + "1483062641", + "1", + "12", + "0", + "-1", + "1685", + "0", + "20220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276308", + "2276308", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062775", + "1483062775", + "1483064451", + "1483062775", + "1", + "12", + "0", + "-1", + "1676", + "0", + "20112", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276330", + "2276330", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062900", + "1483062900", + "1483064225", + "1483062900", + "1", + "12", + "0", + "-1", + "1325", + "0", + "15900", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276336", + "2276336", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062938", + "1483062938", + "1483064486", + "1483062938", + "1", + "12", + "0", + "-1", + "1548", + "0", + "18576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276340", + "2276340", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062978", + "1483062978", + "1483064580", + "1483062978", + "1", + "12", + "0", + "-1", + "1602", + "0", + "19224", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276344", + "2276344", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062994", + "1483062994", + "1483064305", + "1483062994", + "1", + "12", + "0", + "-1", + "1311", + "0", + "15732", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276346", + "2276346", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063014", + "1483063014", + "1483064701", + "1483063014", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276353", + "2276353", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063095", + "1483063095", + "1483064730", + "1483063095", + "1", + "12", + "0", + "-1", + "1635", + "0", + "19620", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276361", + "2276361", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063175", + "1483063175", + "1483064643", + "1483063175", + "1", + "12", + "0", + "-1", + "1468", + "0", + "17616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276378", + "2276378", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063300", + "1483063300", + "1483065094", + "1483063300", + "1", + "12", + "0", + "-1", + "1794", + "0", + "21528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276396", + "2276396", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063425", + "1483063425", + "1483065031", + "1483063425", + "1", + "12", + "0", + "-1", + "1606", + "0", + "19272", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276402", + "2276402", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063469", + "1483063469", + "1483064819", + "1483063469", + "1", + "12", + "0", + "-1", + "1350", + "0", + "16200", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276408", + "2276408", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063503", + "1483063503", + "1483065195", + "1483063503", + "1", + "12", + "0", + "-1", + "1692", + "0", + "20304", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276412", + "2276412", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063512", + "1483063512", + "1483065260", + "1483063512", + "1", + "12", + "0", + "-1", + "1748", + "0", + "20976", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276414", + "2276414", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063530", + "1483063530", + "1483065041", + "1483063530", + "1", + "12", + "0", + "-1", + "1511", + "0", + "18132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276416", + "2276416", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063561", + "1483063561", + "1483065217", + "1483063561", + "1", + "12", + "0", + "-1", + "1656", + "0", + "19872", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276428", + "2276428", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063707", + "1483063707", + "1483065407", + "1483063707", + "1", + "12", + "0", + "-1", + "1700", + "0", + "20400", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276430", + "2276430", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063746", + "1483063746", + "1483065183", + "1483063746", + "1", + "12", + "0", + "-1", + "1437", + "0", + "17244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276432", + "2276432", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063753", + "1483063753", + "1483065290", + "1483063753", + "1", + "12", + "0", + "-1", + "1537", + "0", + "18444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276434", + "2276434", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063762", + "1483063762", + "1483065391", + "1483063762", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276454", + "2276454", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064048", + "1483064048", + "1483065728", + "1483064048", + "1", + "12", + "0", + "-1", + "1680", + "0", + "20160", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276458", + "2276458", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064067", + "1483064067", + "1483065539", + "1483064067", + "1", + "12", + "0", + "-1", + "1472", + "0", + "17664", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276460", + "2276460", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064115", + "1483064115", + "1483065620", + "1483064115", + "1", + "12", + "0", + "-1", + "1505", + "0", + "18060", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276466", + "2276466", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064177", + "1483064177", + "1483065701", + "1483064177", + "1", + "12", + "0", + "-1", + "1524", + "0", + "18288", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276470", + "2276470", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064226", + "1483064226", + "1483065862", + "1483064226", + "1", + "12", + "0", + "-1", + "1636", + "0", + "19632", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276472", + "2276472", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064230", + "1483064230", + "1483065710", + "1483064230", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276474", + "2276474", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064242", + "1483064242", + "1483065880", + "1483064242", + "1", + "12", + "0", + "-1", + "1638", + "0", + "19656", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276476", + "2276476", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064246", + "1483064246", + "1483065857", + "1483064246", + "1", + "12", + "0", + "-1", + "1611", + "0", + "19332", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276478", + "2276478", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064251", + "1483064251", + "1483065725", + "1483064251", + "1", + "12", + "0", + "-1", + "1474", + "0", + "17688", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276480", + "2276480", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064308", + "1483064308", + "1483065892", + "1483064308", + "1", + "12", + "0", + "-1", + "1584", + "0", + "19008", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276482", + "2276482", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064315", + "1483064315", + "1483066028", + "1483064315", + "1", + "12", + "0", + "-1", + "1713", + "0", + "20556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276484", + "2276484", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064330", + "1483064330", + "1483065873", + "1483064330", + "1", + "12", + "0", + "-1", + "1543", + "0", + "18516", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276508", + "2276508", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064586", + "1483064586", + "1483066104", + "1483064586", + "1", + "12", + "0", + "-1", + "1518", + "0", + "18216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276511", + "2276511", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064647", + "1483064647", + "1483066385", + "1483064647", + "1", + "12", + "0", + "-1", + "1738", + "0", + "20856", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276515", + "2276515", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064658", + "1483064658", + "1483066214", + "1483064658", + "1", + "12", + "0", + "-1", + "1556", + "0", + "18672", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276517", + "2276517", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064672", + "1483064672", + "1483065998", + "1483064672", + "1", + "12", + "0", + "-1", + "1326", + "0", + "15912", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276565", + "2276565", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065065", + "1483065065", + "1483066488", + "1483065065", + "1", + "12", + "0", + "-1", + "1423", + "0", + "17076", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276572", + "2276572", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065141", + "1483065141", + "1483066513", + "1483065141", + "1", + "12", + "0", + "-1", + "1372", + "0", + "16464", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276575", + "2276575", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065189", + "1483065189", + "1483066700", + "1483065189", + "1", + "12", + "0", + "-1", + "1511", + "0", + "18132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276581", + "2276581", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065221", + "1483065221", + "1483066551", + "1483065221", + "1", + "12", + "0", + "-1", + "1330", + "0", + "15960", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276592", + "2276592", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065301", + "1483065301", + "1483066916", + "1483065301", + "1", + "12", + "0", + "-1", + "1615", + "0", + "19380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276616", + "2276616", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065544", + "1483065544", + "1483066918", + "1483065544", + "1", + "12", + "0", + "-1", + "1374", + "0", + "16488", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276642", + "2276642", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065849", + "1483065849", + "1483067444", + "1483065849", + "1", + "12", + "0", + "-1", + "1595", + "0", + "19140", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276650", + "2276650", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065879", + "1483065879", + "1483067566", + "1483065879", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276654", + "2276654", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065893", + "1483065893", + "1483067517", + "1483065893", + "1", + "12", + "0", + "-1", + "1624", + "0", + "19488", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276661", + "2276661", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065947", + "1483065947", + "1483067613", + "1483065947", + "1", + "12", + "0", + "-1", + "1666", + "0", + "19992", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276665", + "2276665", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065967", + "1483065967", + "1483067561", + "1483065967", + "1", + "12", + "0", + "-1", + "1594", + "0", + "19128", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276667", + "2276667", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065982", + "1483065982", + "1483067778", + "1483065982", + "1", + "12", + "0", + "-1", + "1796", + "0", + "21552", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276671", + "2276671", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066002", + "1483066002", + "1483067778", + "1483066002", + "1", + "12", + "0", + "-1", + "1776", + "0", + "21312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276673", + "2276673", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066007", + "1483066007", + "1483067655", + "1483066007", + "1", + "12", + "0", + "-1", + "1648", + "0", + "19776", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276675", + "2276675", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066031", + "1483066031", + "1483067444", + "1483066031", + "1", + "12", + "0", + "-1", + "1413", + "0", + "16956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276680", + "2276680", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066060", + "1483066060", + "1483067444", + "1483066060", + "1", + "12", + "0", + "-1", + "1384", + "0", + "16608", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276683", + "2276683", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066071", + "1483066071", + "1483067836", + "1483066071", + "1", + "12", + "0", + "-1", + "1765", + "0", + "21180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276690", + "2276690", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066133", + "1483066133", + "1483067670", + "1483066133", + "1", + "12", + "0", + "-1", + "1537", + "0", + "18444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276713", + "2276713", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066502", + "1483066502", + "1483067915", + "1483066502", + "1", + "12", + "0", + "-1", + "1413", + "0", + "16956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276722", + "2276722", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066579", + "1483066579", + "1483067959", + "1483066579", + "1", + "12", + "0", + "-1", + "1380", + "0", + "16560", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276730", + "2276730", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066666", + "1483066666", + "1483068207", + "1483066666", + "1", + "12", + "0", + "-1", + "1541", + "0", + "18492", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276741", + "2276741", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066779", + "1483066779", + "1483067994", + "1483066779", + "1", + "12", + "0", + "-1", + "1215", + "0", + "14580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276752", + "2276752", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067007", + "1483067007", + "1483068748", + "1483067007", + "1", + "12", + "0", + "-1", + "1741", + "0", + "20892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276754", + "2276754", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067069", + "1483067069", + "1483068620", + "1483067069", + "1", + "12", + "0", + "-1", + "1551", + "0", + "18612", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276770", + "2276770", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067397", + "1483067397", + "1483068598", + "1483067397", + "1", + "12", + "0", + "-1", + "1201", + "0", + "14412", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276780", + "2276780", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067517", + "1483067517", + "1483069053", + "1483067517", + "1", + "12", + "0", + "-1", + "1536", + "0", + "18432", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276784", + "2276784", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067556", + "1483067556", + "1483069246", + "1483067556", + "1", + "12", + "0", + "-1", + "1690", + "0", + "20280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276808", + "2276808", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067712", + "1483067712", + "1483069428", + "1483067712", + "1", + "12", + "0", + "-1", + "1716", + "0", + "20592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276869", + "2276869", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067932", + "1483067932", + "1483069395", + "1483067932", + "1", + "12", + "0", + "-1", + "1463", + "0", + "17556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276884", + "2276884", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068032", + "1483068032", + "1483069076", + "1483068032", + "1", + "12", + "0", + "-1", + "1044", + "0", + "12528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276889", + "2276889", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068084", + "1483068084", + "1483069566", + "1483068084", + "1", + "12", + "0", + "-1", + "1482", + "0", + "17784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276891", + "2276891", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068097", + "1483068097", + "1483069479", + "1483068097", + "1", + "12", + "0", + "-1", + "1382", + "0", + "16584", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276893", + "2276893", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068126", + "1483068126", + "1483069615", + "1483068126", + "1", + "12", + "0", + "-1", + "1489", + "0", + "17868", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276899", + "2276899", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068214", + "1483068214", + "1483069957", + "1483068214", + "1", + "12", + "0", + "-1", + "1743", + "0", + "20916", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276915", + "2276915", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068521", + "1483068521", + "1483069783", + "1483068521", + "1", + "12", + "0", + "-1", + "1262", + "0", + "15144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276919", + "2276919", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068601", + "1483068601", + "1483070393", + "1483068601", + "1", + "12", + "0", + "-1", + "1792", + "0", + "21504", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276925", + "2276925", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068625", + "1483068625", + "1483070230", + "1483068625", + "1", + "12", + "0", + "-1", + "1605", + "0", + "19260", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276931", + "2276931", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068790", + "1483068790", + "1483070286", + "1483068790", + "1", + "12", + "0", + "-1", + "1496", + "0", + "17952", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276939", + "2276939", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068984", + "1483068984", + "1483070260", + "1483068984", + "1", + "12", + "0", + "-1", + "1276", + "0", + "15312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276941", + "2276941", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068995", + "1483068995", + "1483070705", + "1483068995", + "1", + "12", + "0", + "-1", + "1710", + "0", + "20520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276947", + "2276947", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069081", + "1483069081", + "1483070766", + "1483069081", + "1", + "12", + "0", + "-1", + "1685", + "0", + "20220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276961", + "2276961", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069249", + "1483069249", + "1483070924", + "1483069249", + "1", + "12", + "0", + "-1", + "1675", + "0", + "20100", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276967", + "2276967", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069311", + "1483069311", + "1483070916", + "1483069311", + "1", + "12", + "0", + "-1", + "1605", + "0", + "19260", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276971", + "2276971", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069320", + "1483069320", + "1483071027", + "1483069320", + "1", + "12", + "0", + "-1", + "1707", + "0", + "20484", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276973", + "2276973", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069333", + "1483069333", + "1483071034", + "1483069333", + "1", + "12", + "0", + "-1", + "1701", + "0", + "20412", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276978", + "2276978", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069347", + "1483069347", + "1483070989", + "1483069347", + "1", + "12", + "0", + "-1", + "1642", + "0", + "19704", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276990", + "2276990", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069427", + "1483069427", + "1483071092", + "1483069427", + "1", + "12", + "0", + "-1", + "1665", + "0", + "19980", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276992", + "2276992", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069431", + "1483069431", + "1483071158", + "1483069431", + "1", + "12", + "0", + "-1", + "1727", + "0", + "20724", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276996", + "2276996", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069450", + "1483069450", + "1483070684", + "1483069450", + "1", + "12", + "0", + "-1", + "1234", + "0", + "14808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276998", + "2276998", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069454", + "1483069454", + "1483071024", + "1483069454", + "1", + "12", + "0", + "-1", + "1570", + "0", + "18840", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277032", + "2277032", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069660", + "1483069660", + "1483071007", + "1483069660", + "1", + "12", + "0", + "-1", + "1347", + "0", + "16164", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277035", + "2277035", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069716", + "1483069716", + "1483071245", + "1483069716", + "1", + "12", + "0", + "-1", + "1529", + "0", + "18348", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277049", + "2277049", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069789", + "1483069789", + "1483071258", + "1483069789", + "1", + "12", + "0", + "-1", + "1469", + "0", + "17628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277053", + "2277053", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069810", + "1483069810", + "1483071322", + "1483069810", + "1", + "12", + "0", + "-1", + "1512", + "0", + "18144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277055", + "2277055", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069817", + "1483069817", + "1483071397", + "1483069817", + "1", + "12", + "0", + "-1", + "1580", + "0", + "18960", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277062", + "2277062", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069920", + "1483069920", + "1483071450", + "1483069920", + "1", + "12", + "0", + "-1", + "1530", + "0", + "18360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277064", + "2277064", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069924", + "1483069924", + "1483071131", + "1483069924", + "1", + "12", + "0", + "-1", + "1207", + "0", + "14484", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277066", + "2277066", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069971", + "1483069971", + "1483071519", + "1483069971", + "1", + "12", + "0", + "-1", + "1548", + "0", + "18576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277117", + "2277117", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070269", + "1483070269", + "1483071830", + "1483070269", + "1", + "12", + "0", + "-1", + "1561", + "0", + "18732", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277162", + "2277162", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070845", + "1483070845", + "1483072287", + "1483070845", + "1", + "12", + "0", + "-1", + "1442", + "0", + "17304", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277178", + "2277178", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071012", + "1483071012", + "1483072601", + "1483071012", + "1", + "12", + "0", + "-1", + "1589", + "0", + "19068", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277184", + "2277184", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071027", + "1483071027", + "1483072137", + "1483071027", + "1", + "12", + "0", + "-1", + "1110", + "0", + "13320", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277186", + "2277186", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071032", + "1483071032", + "1483072308", + "1483071032", + "1", + "12", + "0", + "-1", + "1276", + "0", + "15312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277188", + "2277188", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071036", + "1483071036", + "1483072201", + "1483071036", + "1", + "12", + "0", + "-1", + "1165", + "0", + "13980", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277190", + "2277190", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071040", + "1483071040", + "1483072308", + "1483071040", + "1", + "12", + "0", + "-1", + "1268", + "0", + "15216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277195", + "2277195", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071096", + "1483071096", + "1483072863", + "1483071096", + "1", + "12", + "0", + "-1", + "1767", + "0", + "21204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277203", + "2277203", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071162", + "1483071162", + "1483072707", + "1483071162", + "1", + "12", + "0", + "-1", + "1545", + "0", + "18540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277205", + "2277205", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071176", + "1483071176", + "1483072674", + "1483071176", + "1", + "12", + "0", + "-1", + "1498", + "0", + "17976", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277207", + "2277207", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071180", + "1483071180", + "1483072823", + "1483071180", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277211", + "2277211", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071250", + "1483071250", + "1483072903", + "1483071250", + "1", + "12", + "0", + "-1", + "1653", + "0", + "19836", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277225", + "2277225", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071311", + "1483071311", + "1483073027", + "1483071311", + "1", + "12", + "0", + "-1", + "1716", + "0", + "20592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277240", + "2277240", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071452", + "1483071452", + "1483073067", + "1483071452", + "1", + "12", + "0", + "-1", + "1615", + "0", + "19380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277247", + "2277247", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071523", + "1483071523", + "1483073223", + "1483071523", + "1", + "12", + "0", + "-1", + "1700", + "0", + "20400", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277260", + "2277260", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071626", + "1483071626", + "1483072943", + "1483071626", + "1", + "12", + "0", + "-1", + "1317", + "0", + "15804", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277267", + "2277267", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071729", + "1483071729", + "1483073516", + "1483071729", + "1", + "12", + "0", + "-1", + "1787", + "0", + "21444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277273", + "2277273", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071824", + "1483071824", + "1483073534", + "1483071824", + "1", + "12", + "0", + "-1", + "1710", + "0", + "20520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277309", + "2277309", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072165", + "1483072165", + "1483073630", + "1483072165", + "1", + "12", + "0", + "-1", + "1465", + "0", + "17580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277325", + "2277325", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072232", + "1483072232", + "1483074020", + "1483072232", + "1", + "12", + "0", + "-1", + "1788", + "0", + "21456", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277327", + "2277327", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072243", + "1483072243", + "1483073726", + "1483072243", + "1", + "12", + "0", + "-1", + "1483", + "0", + "17796", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277333", + "2277333", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072290", + "1483072290", + "1483073793", + "1483072290", + "1", + "12", + "0", + "-1", + "1503", + "0", + "18036", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277358", + "2277358", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072530", + "1483072530", + "1483074147", + "1483072530", + "1", + "12", + "0", + "-1", + "1617", + "0", + "19404", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277367", + "2277367", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072615", + "1483072615", + "1483074356", + "1483072615", + "1", + "12", + "0", + "-1", + "1741", + "0", + "20892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277384", + "2277384", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072879", + "1483072879", + "1483074592", + "1483072879", + "1", + "12", + "0", + "-1", + "1713", + "0", + "20556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277395", + "2277395", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073020", + "1483073020", + "1483074478", + "1483073020", + "1", + "12", + "0", + "-1", + "1458", + "0", + "17496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277397", + "2277397", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073024", + "1483073024", + "1483074557", + "1483073024", + "1", + "12", + "0", + "-1", + "1533", + "0", + "18396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277406", + "2277406", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073059", + "1483073059", + "1483074775", + "1483073059", + "1", + "12", + "0", + "-1", + "1716", + "0", + "20592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277411", + "2277411", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073075", + "1483073075", + "1483074593", + "1483073075", + "1", + "12", + "0", + "-1", + "1518", + "0", + "18216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277428", + "2277428", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073222", + "1483073222", + "1483074975", + "1483073222", + "1", + "12", + "0", + "-1", + "1753", + "0", + "21036", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277436", + "2277436", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073250", + "1483073250", + "1483074908", + "1483073250", + "1", + "12", + "0", + "-1", + "1658", + "0", + "19896", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277457", + "2277457", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073540", + "1483073540", + "1483074973", + "1483073540", + "1", + "12", + "0", + "-1", + "1433", + "0", + "17196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277459", + "2277459", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073545", + "1483073545", + "1483075230", + "1483073545", + "1", + "12", + "0", + "-1", + "1685", + "0", + "20220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277476", + "2277476", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073710", + "1483073710", + "1483075478", + "1483073710", + "1", + "12", + "0", + "-1", + "1768", + "0", + "21216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277524", + "2277524", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074076", + "1483074076", + "1483075621", + "1483074076", + "1", + "12", + "0", + "-1", + "1545", + "0", + "18540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277526", + "2277526", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074081", + "1483074081", + "1483075862", + "1483074081", + "1", + "12", + "0", + "-1", + "1781", + "0", + "21372", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277528", + "2277528", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074096", + "1483074096", + "1483075668", + "1483074096", + "1", + "12", + "0", + "-1", + "1572", + "0", + "18864", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277586", + "2277586", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074712", + "1483074712", + "1483076204", + "1483074712", + "1", + "12", + "0", + "-1", + "1492", + "0", + "17904", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277601", + "2277601", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074908", + "1483074908", + "1483076315", + "1483074908", + "1", + "12", + "0", + "-1", + "1407", + "0", + "16884", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277603", + "2277603", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074913", + "1483074913", + "1483076585", + "1483074913", + "1", + "12", + "0", + "-1", + "1672", + "0", + "20064", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277605", + "2277605", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074942", + "1483074942", + "1483076390", + "1483074942", + "1", + "12", + "0", + "-1", + "1448", + "0", + "17376", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277610", + "2277610", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074977", + "1483074977", + "1483076627", + "1483074977", + "1", + "12", + "0", + "-1", + "1650", + "0", + "19800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277619", + "2277619", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075034", + "1483075034", + "1483076675", + "1483075034", + "1", + "12", + "0", + "-1", + "1641", + "0", + "19692", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277653", + "2277653", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075336", + "1483075336", + "1483076985", + "1483075336", + "1", + "12", + "0", + "-1", + "1649", + "0", + "19788", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277665", + "2277665", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075481", + "1483075481", + "1483076950", + "1483075481", + "1", + "12", + "0", + "-1", + "1469", + "0", + "17628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277672", + "2277672", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075523", + "1483075523", + "1483077097", + "1483075523", + "1", + "12", + "0", + "-1", + "1574", + "0", + "18888", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277677", + "2277677", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075541", + "1483075541", + "1483077055", + "1483075541", + "1", + "12", + "0", + "-1", + "1514", + "0", + "18168", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277681", + "2277681", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075595", + "1483075595", + "1483077308", + "1483075595", + "1", + "12", + "0", + "-1", + "1713", + "0", + "20556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277745", + "2277745", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076325", + "1483076325", + "1483078104", + "1483076325", + "1", + "12", + "0", + "-1", + "1779", + "0", + "21348", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277755", + "2277755", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076400", + "1483076400", + "1483078090", + "1483076400", + "1", + "12", + "0", + "-1", + "1690", + "0", + "20280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277764", + "2277764", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076494", + "1483076494", + "1483078183", + "1483076494", + "1", + "12", + "0", + "-1", + "1689", + "0", + "20268", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277796", + "2277796", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076841", + "1483076841", + "1483078263", + "1483076841", + "1", + "12", + "0", + "-1", + "1422", + "0", + "17064", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277798", + "2277798", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076856", + "1483076856", + "1483078530", + "1483076856", + "1", + "12", + "0", + "-1", + "1674", + "0", + "20088", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277800", + "2277800", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076886", + "1483076886", + "1483078498", + "1483076886", + "1", + "12", + "0", + "-1", + "1612", + "0", + "19344", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277840", + "2277840", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077132", + "1483077132", + "1483078835", + "1483077132", + "1", + "12", + "0", + "-1", + "1703", + "0", + "20436", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277870", + "2277870", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077482", + "1483077482", + "1483079221", + "1483077482", + "1", + "12", + "0", + "-1", + "1739", + "0", + "20868", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277893", + "2277893", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077814", + "1483077814", + "1483079476", + "1483077814", + "1", + "12", + "0", + "-1", + "1662", + "0", + "19944", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277901", + "2277901", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077849", + "1483077849", + "1483079147", + "1483077849", + "1", + "12", + "0", + "-1", + "1298", + "0", + "15576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277903", + "2277903", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077853", + "1483077853", + "1483079288", + "1483077853", + "1", + "12", + "0", + "-1", + "1435", + "0", + "17220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277906", + "2277906", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077871", + "1483077871", + "1483079423", + "1483077871", + "1", + "12", + "0", + "-1", + "1552", + "0", + "18624", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277913", + "2277913", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077904", + "1483077904", + "1483079384", + "1483077904", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277919", + "2277919", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078045", + "1483078045", + "1483079634", + "1483078045", + "1", + "12", + "0", + "-1", + "1589", + "0", + "19068", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277928", + "2277928", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078137", + "1483078137", + "1483079597", + "1483078137", + "1", + "12", + "0", + "-1", + "1460", + "0", + "17520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277938", + "2277938", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078188", + "1483078188", + "1483079813", + "1483078188", + "1", + "12", + "0", + "-1", + "1625", + "0", + "19500", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277942", + "2277942", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078223", + "1483078223", + "1483079978", + "1483078223", + "1", + "12", + "0", + "-1", + "1755", + "0", + "21060", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277976", + "2277976", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078509", + "1483078509", + "1483080257", + "1483078509", + "1", + "12", + "0", + "-1", + "1748", + "0", + "20976", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277990", + "2277990", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078601", + "1483078601", + "1483080253", + "1483078601", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277992", + "2277992", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078622", + "1483078622", + "1483080062", + "1483078622", + "1", + "12", + "0", + "-1", + "1440", + "0", + "17280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278040", + "2278040", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079031", + "1483079031", + "1483080786", + "1483079031", + "1", + "12", + "0", + "-1", + "1755", + "0", + "21060", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278065", + "2278065", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079153", + "1483079153", + "1483080907", + "1483079153", + "1", + "12", + "0", + "-1", + "1754", + "0", + "21048", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278076", + "2278076", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079226", + "1483079226", + "1483080934", + "1483079226", + "1", + "12", + "0", + "-1", + "1708", + "0", + "20496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278082", + "2278082", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079243", + "1483079243", + "1483080799", + "1483079243", + "1", + "12", + "0", + "-1", + "1556", + "0", + "18672", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278090", + "2278090", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079341", + "1483079341", + "1483080883", + "1483079341", + "1", + "12", + "0", + "-1", + "1542", + "0", + "18504", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278093", + "2278093", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079388", + "1483079388", + "1483080716", + "1483079388", + "1", + "12", + "0", + "-1", + "1328", + "0", + "15936", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278095", + "2278095", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079393", + "1483079393", + "1483080630", + "1483079393", + "1", + "12", + "0", + "-1", + "1237", + "0", + "14844", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278097", + "2278097", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079397", + "1483079397", + "1483081040", + "1483079397", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278113", + "2278113", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079605", + "1483079605", + "1483080831", + "1483079605", + "1", + "12", + "0", + "-1", + "1226", + "0", + "14712", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278117", + "2278117", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079638", + "1483079638", + "1483081118", + "1483079638", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278120", + "2278120", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079680", + "1483079680", + "1483080801", + "1483079680", + "1", + "12", + "0", + "-1", + "1121", + "0", + "13452", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278129", + "2278129", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079976", + "1483079976", + "1483081626", + "1483079976", + "1", + "12", + "0", + "-1", + "1650", + "0", + "19800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278131", + "2278131", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079980", + "1483079980", + "1483081318", + "1483079980", + "1", + "12", + "0", + "-1", + "1338", + "0", + "16056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278138", + "2278138", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080067", + "1483080067", + "1483081445", + "1483080067", + "1", + "12", + "0", + "-1", + "1378", + "0", + "16536", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278140", + "2278140", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080091", + "1483080091", + "1483081860", + "1483080091", + "1", + "12", + "0", + "-1", + "1769", + "0", + "21228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278179", + "2278179", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080524", + "1483080524", + "1483082282", + "1483080524", + "1", + "12", + "0", + "-1", + "1758", + "0", + "21096", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278181", + "2278181", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080531", + "1483080531", + "1483082068", + "1483080531", + "1", + "12", + "0", + "-1", + "1537", + "0", + "18444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278185", + "2278185", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080539", + "1483080539", + "1483082047", + "1483080539", + "1", + "12", + "0", + "-1", + "1508", + "0", + "18096", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278190", + "2278190", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080590", + "1483080590", + "1483082308", + "1483080590", + "1", + "12", + "0", + "-1", + "1718", + "0", + "20616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278192", + "2278192", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080595", + "1483080595", + "1483082081", + "1483080595", + "1", + "12", + "0", + "-1", + "1486", + "0", + "17832", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278206", + "2278206", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080654", + "1483080654", + "1483082429", + "1483080654", + "1", + "12", + "0", + "-1", + "1775", + "0", + "21300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278211", + "2278211", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080676", + "1483080676", + "1483082371", + "1483080676", + "1", + "12", + "0", + "-1", + "1695", + "0", + "20340", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278255", + "2278255", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080961", + "1483080961", + "1483082676", + "1483080961", + "1", + "12", + "0", + "-1", + "1715", + "0", + "20580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278263", + "2278263", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081003", + "1483081003", + "1483082505", + "1483081003", + "1", + "12", + "0", + "-1", + "1502", + "0", + "18024", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278265", + "2278265", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081010", + "1483081010", + "1483082786", + "1483081010", + "1", + "12", + "0", + "-1", + "1776", + "0", + "21312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278274", + "2278274", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081103", + "1483081103", + "1483082807", + "1483081103", + "1", + "12", + "0", + "-1", + "1704", + "0", + "20448", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278283", + "2278283", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081163", + "1483081163", + "1483082815", + "1483081163", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278285", + "2278285", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081167", + "1483081167", + "1483082917", + "1483081167", + "1", + "12", + "0", + "-1", + "1750", + "0", + "21000", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278302", + "2278302", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081316", + "1483081316", + "1483083085", + "1483081316", + "1", + "12", + "0", + "-1", + "1769", + "0", + "21228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278321", + "2278321", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081502", + "1483081502", + "1483082938", + "1483081502", + "1", + "12", + "0", + "-1", + "1436", + "0", + "17232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278333", + "2278333", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081823", + "1483081823", + "1483083028", + "1483081823", + "1", + "12", + "0", + "-1", + "1205", + "0", + "14460", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278337", + "2278337", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081867", + "1483081867", + "1483083608", + "1483081867", + "1", + "12", + "0", + "-1", + "1741", + "0", + "20892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278339", + "2278339", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081879", + "1483081879", + "1483083349", + "1483081879", + "1", + "12", + "0", + "-1", + "1470", + "0", + "17640", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278341", + "2278341", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081887", + "1483081887", + "1483083318", + "1483081887", + "1", + "12", + "0", + "-1", + "1431", + "0", + "17172", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278349", + "2278349", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082082", + "1483082082", + "1483083213", + "1483082082", + "1", + "12", + "0", + "-1", + "1131", + "0", + "13572", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278374", + "2278374", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082430", + "1483082430", + "1483083591", + "1483082430", + "1", + "12", + "0", + "-1", + "1161", + "0", + "13932", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278376", + "2278376", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082435", + "1483082435", + "1483083523", + "1483082435", + "1", + "12", + "0", + "-1", + "1088", + "0", + "13056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278403", + "2278403", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082557", + "1483082557", + "1483084288", + "1483082557", + "1", + "12", + "0", + "-1", + "1731", + "0", + "20772", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278433", + "2278433", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082791", + "1483082791", + "1483084506", + "1483082791", + "1", + "12", + "0", + "-1", + "1715", + "0", + "20580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278435", + "2278435", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082806", + "1483082806", + "1483084599", + "1483082806", + "1", + "12", + "0", + "-1", + "1793", + "0", + "21516", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278480", + "2278480", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082996", + "1483082996", + "1483084662", + "1483082996", + "1", + "12", + "0", + "-1", + "1666", + "0", + "19992", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278491", + "2278491", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083090", + "1483083090", + "1483084623", + "1483083090", + "1", + "12", + "0", + "-1", + "1533", + "0", + "18396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278521", + "2278521", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083342", + "1483083342", + "1483085133", + "1483083342", + "1", + "12", + "0", + "-1", + "1791", + "0", + "21492", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278534", + "2278534", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083526", + "1483083526", + "1483084877", + "1483083526", + "1", + "12", + "0", + "-1", + "1351", + "0", + "16212", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278536", + "2278536", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083542", + "1483083542", + "1483085093", + "1483083542", + "1", + "12", + "0", + "-1", + "1551", + "0", + "18612", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278538", + "2278538", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083551", + "1483083551", + "1483085180", + "1483083551", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278542", + "2278542", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083595", + "1483083595", + "1483085161", + "1483083595", + "1", + "12", + "0", + "-1", + "1566", + "0", + "18792", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278544", + "2278544", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083611", + "1483083611", + "1483085376", + "1483083611", + "1", + "12", + "0", + "-1", + "1765", + "0", + "21180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278546", + "2278546", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083615", + "1483083615", + "1483085269", + "1483083615", + "1", + "12", + "0", + "-1", + "1654", + "0", + "19848", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278566", + "2278566", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084066", + "1483084066", + "1483085762", + "1483084066", + "1", + "12", + "0", + "-1", + "1696", + "0", + "20352", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278568", + "2278568", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084103", + "1483084103", + "1483085691", + "1483084103", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278575", + "2278575", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084209", + "1483084209", + "1483085776", + "1483084209", + "1", + "12", + "0", + "-1", + "1567", + "0", + "18804", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278613", + "2278613", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084571", + "1483084571", + "1483086161", + "1483084571", + "1", + "12", + "0", + "-1", + "1590", + "0", + "19080", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278645", + "2278645", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084761", + "1483084761", + "1483086343", + "1483084761", + "1", + "12", + "0", + "-1", + "1582", + "0", + "18984", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278659", + "2278659", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084852", + "1483084852", + "1483086474", + "1483084852", + "1", + "12", + "0", + "-1", + "1622", + "0", + "19464", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278665", + "2278665", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084874", + "1483084874", + "1483086448", + "1483084874", + "1", + "12", + "0", + "-1", + "1574", + "0", + "18888", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278671", + "2278671", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084892", + "1483084892", + "1483086578", + "1483084892", + "1", + "12", + "0", + "-1", + "1686", + "0", + "20232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278675", + "2278675", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084901", + "1483084901", + "1483086566", + "1483084901", + "1", + "12", + "0", + "-1", + "1665", + "0", + "19980", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278679", + "2278679", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084910", + "1483084910", + "1483086704", + "1483084910", + "1", + "12", + "0", + "-1", + "1794", + "0", + "21528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278703", + "2278703", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085137", + "1483085137", + "1483086913", + "1483085137", + "1", + "12", + "0", + "-1", + "1776", + "0", + "21312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278711", + "2278711", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085247", + "1483085247", + "1483087000", + "1483085247", + "1", + "12", + "0", + "-1", + "1753", + "0", + "21036", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278719", + "2278719", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085276", + "1483085276", + "1483086986", + "1483085276", + "1", + "12", + "0", + "-1", + "1710", + "0", + "20520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278735", + "2278735", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085380", + "1483085380", + "1483087034", + "1483085380", + "1", + "12", + "0", + "-1", + "1654", + "0", + "19848", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278740", + "2278740", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085447", + "1483085447", + "1483087170", + "1483085447", + "1", + "12", + "0", + "-1", + "1723", + "0", + "20676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278780", + "2278780", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086058", + "1483086058", + "1483087848", + "1483086058", + "1", + "12", + "0", + "-1", + "1790", + "0", + "21480", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278795", + "2278795", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086379", + "1483086379", + "1483087918", + "1483086379", + "1", + "12", + "0", + "-1", + "1539", + "0", + "18468", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278809", + "2278809", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086541", + "1483086541", + "1483088131", + "1483086541", + "1", + "12", + "0", + "-1", + "1590", + "0", + "19080", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278811", + "2278811", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086552", + "1483086552", + "1483088070", + "1483086552", + "1", + "12", + "0", + "-1", + "1518", + "0", + "18216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278813", + "2278813", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086556", + "1483086556", + "1483087809", + "1483086556", + "1", + "12", + "0", + "-1", + "1253", + "0", + "15036", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278817", + "2278817", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086572", + "1483086572", + "1483088196", + "1483086572", + "1", + "12", + "0", + "-1", + "1624", + "0", + "19488", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278819", + "2278819", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086576", + "1483086576", + "1483088185", + "1483086576", + "1", + "12", + "0", + "-1", + "1609", + "0", + "19308", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278823", + "2278823", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086585", + "1483086585", + "1483087970", + "1483086585", + "1", + "12", + "0", + "-1", + "1385", + "0", + "16620", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278825", + "2278825", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086627", + "1483086627", + "1483088242", + "1483086627", + "1", + "12", + "0", + "-1", + "1615", + "0", + "19380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278838", + "2278838", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086721", + "1483086721", + "1483088423", + "1483086721", + "1", + "12", + "0", + "-1", + "1702", + "0", + "20424", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278845", + "2278845", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086761", + "1483086761", + "1483088434", + "1483086761", + "1", + "12", + "0", + "-1", + "1673", + "0", + "20076", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278851", + "2278851", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086774", + "1483086774", + "1483088407", + "1483086774", + "1", + "12", + "0", + "-1", + "1633", + "0", + "19596", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278853", + "2278853", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086783", + "1483086783", + "1483088352", + "1483086783", + "1", + "12", + "0", + "-1", + "1569", + "0", + "18828", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278855", + "2278855", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086788", + "1483086788", + "1483088533", + "1483086788", + "1", + "12", + "0", + "-1", + "1745", + "0", + "20940", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278857", + "2278857", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086808", + "1483086808", + "1483088583", + "1483086808", + "1", + "12", + "0", + "-1", + "1775", + "0", + "21300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278861", + "2278861", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086828", + "1483086828", + "1483088596", + "1483086828", + "1", + "12", + "0", + "-1", + "1768", + "0", + "21216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278865", + "2278865", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086844", + "1483086844", + "1483088587", + "1483086844", + "1", + "12", + "0", + "-1", + "1743", + "0", + "20916", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278870", + "2278870", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086896", + "1483086896", + "1483088391", + "1483086896", + "1", + "12", + "0", + "-1", + "1495", + "0", + "17940", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278874", + "2278874", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086930", + "1483086930", + "1483088713", + "1483086930", + "1", + "12", + "0", + "-1", + "1783", + "0", + "21396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278876", + "2278876", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086960", + "1483086960", + "1483088571", + "1483086960", + "1", + "12", + "0", + "-1", + "1611", + "0", + "19332", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278893", + "2278893", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087009", + "1483087009", + "1483088621", + "1483087009", + "1", + "12", + "0", + "-1", + "1612", + "0", + "19344", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278902", + "2278902", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087037", + "1483087037", + "1483088788", + "1483087037", + "1", + "12", + "0", + "-1", + "1751", + "0", + "21012", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278907", + "2278907", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087061", + "1483087061", + "1483088743", + "1483087061", + "1", + "12", + "0", + "-1", + "1682", + "0", + "20184", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278931", + "2278931", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087248", + "1483087248", + "1483088813", + "1483087248", + "1", + "12", + "0", + "-1", + "1565", + "0", + "18780", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278933", + "2278933", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087270", + "1483087270", + "1483088884", + "1483087270", + "1", + "12", + "0", + "-1", + "1614", + "0", + "19368", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278935", + "2278935", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087275", + "1483087275", + "1483089057", + "1483087275", + "1", + "12", + "0", + "-1", + "1782", + "0", + "21384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278937", + "2278937", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087286", + "1483087286", + "1483089033", + "1483087286", + "1", + "12", + "0", + "-1", + "1747", + "0", + "20964", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278939", + "2278939", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087305", + "1483087305", + "1483088407", + "1483087305", + "1", + "12", + "0", + "-1", + "1102", + "0", + "13224", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278941", + "2278941", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087310", + "1483087310", + "1483088661", + "1483087310", + "1", + "12", + "0", + "-1", + "1351", + "0", + "16212", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278946", + "2278946", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087351", + "1483087351", + "1483088927", + "1483087351", + "1", + "12", + "0", + "-1", + "1576", + "0", + "18912", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278954", + "2278954", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087421", + "1483087421", + "1483088719", + "1483087421", + "1", + "12", + "0", + "-1", + "1298", + "0", + "15576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279023", + "2279023", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088362", + "1483088362", + "1483090019", + "1483088362", + "1", + "12", + "0", + "-1", + "1657", + "0", + "19884", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279044", + "2279044", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088453", + "1483088453", + "1483090021", + "1483088453", + "1", + "12", + "0", + "-1", + "1568", + "0", + "18816", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279046", + "2279046", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088464", + "1483088464", + "1483090185", + "1483088464", + "1", + "12", + "0", + "-1", + "1721", + "0", + "20652", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279055", + "2279055", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088538", + "1483088538", + "1483090049", + "1483088538", + "1", + "12", + "0", + "-1", + "1511", + "0", + "18132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279062", + "2279062", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088592", + "1483088592", + "1483090352", + "1483088592", + "1", + "12", + "0", + "-1", + "1760", + "0", + "21120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279070", + "2279070", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088624", + "1483088624", + "1483089973", + "1483088624", + "1", + "12", + "0", + "-1", + "1349", + "0", + "16188", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279072", + "2279072", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088635", + "1483088635", + "1483090212", + "1483088635", + "1", + "12", + "0", + "-1", + "1577", + "0", + "18924", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279079", + "2279079", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088685", + "1483088685", + "1483090038", + "1483088685", + "1", + "12", + "0", + "-1", + "1353", + "0", + "16236", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279082", + "2279082", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088708", + "1483088708", + "1483090341", + "1483088708", + "1", + "12", + "0", + "-1", + "1633", + "0", + "19596", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279121", + "2279121", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089002", + "1483089002", + "1483090489", + "1483089002", + "1", + "12", + "0", + "-1", + "1487", + "0", + "17844", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279125", + "2279125", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089016", + "1483089016", + "1483090613", + "1483089016", + "1", + "12", + "0", + "-1", + "1597", + "0", + "19164", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279127", + "2279127", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089037", + "1483089037", + "1483090807", + "1483089037", + "1", + "12", + "0", + "-1", + "1770", + "0", + "21240", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279132", + "2279132", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089071", + "1483089071", + "1483090787", + "1483089071", + "1", + "12", + "0", + "-1", + "1716", + "0", + "20592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279136", + "2279136", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089113", + "1483089113", + "1483090891", + "1483089113", + "1", + "12", + "0", + "-1", + "1778", + "0", + "21336", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279145", + "2279145", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089272", + "1483089272", + "1483090978", + "1483089272", + "1", + "12", + "0", + "-1", + "1706", + "0", + "20472", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279169", + "2279169", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089603", + "1483089603", + "1483091384", + "1483089603", + "1", + "12", + "0", + "-1", + "1781", + "0", + "21372", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279175", + "2279175", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089662", + "1483089662", + "1483090760", + "1483089662", + "1", + "12", + "0", + "-1", + "1098", + "0", + "13176", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279181", + "2279181", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089757", + "1483089757", + "1483091235", + "1483089757", + "1", + "12", + "0", + "-1", + "1478", + "0", + "17736", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279183", + "2279183", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089775", + "1483089775", + "1483091459", + "1483089775", + "1", + "12", + "0", + "-1", + "1684", + "0", + "20208", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279185", + "2279185", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089798", + "1483089798", + "1483091478", + "1483089798", + "1", + "12", + "0", + "-1", + "1680", + "0", + "20160", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279197", + "2279197", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089952", + "1483089952", + "1483091214", + "1483089952", + "1", + "12", + "0", + "-1", + "1262", + "0", + "15144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279199", + "2279199", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089963", + "1483089963", + "1483091625", + "1483089963", + "1", + "12", + "0", + "-1", + "1662", + "0", + "19944", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279205", + "2279205", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090009", + "1483090009", + "1483091218", + "1483090009", + "1", + "12", + "0", + "-1", + "1209", + "0", + "14508", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279258", + "2279258", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090346", + "1483090346", + "1483092105", + "1483090346", + "1", + "12", + "0", + "-1", + "1759", + "0", + "21108", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279267", + "2279267", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090477", + "1483090477", + "1483092188", + "1483090477", + "1", + "12", + "0", + "-1", + "1711", + "0", + "20532", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279272", + "2279272", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090503", + "1483090503", + "1483092175", + "1483090503", + "1", + "12", + "0", + "-1", + "1672", + "0", + "20064", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279274", + "2279274", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090507", + "1483090507", + "1483092138", + "1483090507", + "1", + "12", + "0", + "-1", + "1631", + "0", + "19572", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279311", + "2279311", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090775", + "1483090775", + "1483092450", + "1483090775", + "1", + "12", + "0", + "-1", + "1675", + "0", + "20100", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279324", + "2279324", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090910", + "1483090910", + "1483092656", + "1483090910", + "1", + "12", + "0", + "-1", + "1746", + "0", + "20952", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279336", + "2279336", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091059", + "1483091059", + "1483092685", + "1483091059", + "1", + "12", + "0", + "-1", + "1626", + "0", + "19512", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279355", + "2279355", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091324", + "1483091324", + "1483093000", + "1483091324", + "1", + "12", + "0", + "-1", + "1676", + "0", + "20112", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279358", + "2279358", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091367", + "1483091367", + "1483093053", + "1483091367", + "1", + "12", + "0", + "-1", + "1686", + "0", + "20232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279366", + "2279366", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091387", + "1483091387", + "1483092950", + "1483091387", + "1", + "12", + "0", + "-1", + "1563", + "0", + "18756", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279387", + "2279387", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091518", + "1483091518", + "1483093173", + "1483091518", + "1", + "12", + "0", + "-1", + "1655", + "0", + "19860", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279402", + "2279402", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091634", + "1483091634", + "1483093281", + "1483091634", + "1", + "12", + "0", + "-1", + "1647", + "0", + "19764", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279405", + "2279405", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091764", + "1483091764", + "1483093429", + "1483091764", + "1", + "12", + "0", + "-1", + "1665", + "0", + "19980", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279429", + "2279429", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092104", + "1483092104", + "1483093654", + "1483092104", + "1", + "12", + "0", + "-1", + "1550", + "0", + "18600", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279435", + "2279435", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092125", + "1483092125", + "1483093521", + "1483092125", + "1", + "12", + "0", + "-1", + "1396", + "0", + "16752", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279445", + "2279445", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092177", + "1483092177", + "1483093961", + "1483092177", + "1", + "12", + "0", + "-1", + "1784", + "0", + "21408", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279448", + "2279448", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092189", + "1483092189", + "1483093867", + "1483092189", + "1", + "12", + "0", + "-1", + "1678", + "0", + "20136", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279454", + "2279454", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092241", + "1483092241", + "1483093469", + "1483092241", + "1", + "12", + "0", + "-1", + "1228", + "0", + "14736", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279464", + "2279464", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092352", + "1483092352", + "1483093944", + "1483092352", + "1", + "12", + "0", + "-1", + "1592", + "0", + "19104", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279467", + "2279467", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092406", + "1483092406", + "1483093996", + "1483092406", + "1", + "12", + "0", + "-1", + "1590", + "0", + "19080", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279469", + "2279469", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092413", + "1483092413", + "1483093960", + "1483092413", + "1", + "12", + "0", + "-1", + "1547", + "0", + "18564", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279496", + "2279496", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092643", + "1483092643", + "1483094092", + "1483092643", + "1", + "12", + "0", + "-1", + "1449", + "0", + "17388", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279501", + "2279501", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092665", + "1483092665", + "1483094068", + "1483092665", + "1", + "12", + "0", + "-1", + "1403", + "0", + "16836", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279513", + "2279513", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092741", + "1483092741", + "1483094407", + "1483092741", + "1", + "12", + "0", + "-1", + "1666", + "0", + "19992", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279522", + "2279522", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092796", + "1483092796", + "1483094563", + "1483092796", + "1", + "12", + "0", + "-1", + "1767", + "0", + "21204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279563", + "2279563", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093165", + "1483093165", + "1483094849", + "1483093165", + "1", + "12", + "0", + "-1", + "1684", + "0", + "20208", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279592", + "2279592", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093431", + "1483093431", + "1483095078", + "1483093431", + "1", + "12", + "0", + "-1", + "1647", + "0", + "19764", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279594", + "2279594", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093456", + "1483093456", + "1483095219", + "1483093456", + "1", + "12", + "0", + "-1", + "1763", + "0", + "21156", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279604", + "2279604", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093544", + "1483093544", + "1483095132", + "1483093544", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279626", + "2279626", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093877", + "1483093877", + "1483095295", + "1483093877", + "1", + "12", + "0", + "-1", + "1418", + "0", + "17016", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279632", + "2279632", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093948", + "1483093948", + "1483095527", + "1483093948", + "1", + "12", + "0", + "-1", + "1579", + "0", + "18948", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279647", + "2279647", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094058", + "1483094058", + "1483095783", + "1483094058", + "1", + "12", + "0", + "-1", + "1725", + "0", + "20700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279649", + "2279649", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094069", + "1483094069", + "1483095866", + "1483094069", + "1", + "12", + "0", + "-1", + "1797", + "0", + "21564", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279681", + "2279681", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094416", + "1483094416", + "1483096062", + "1483094416", + "1", + "12", + "0", + "-1", + "1646", + "0", + "19752", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279683", + "2279683", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094434", + "1483094434", + "1483096136", + "1483094434", + "1", + "12", + "0", + "-1", + "1702", + "0", + "20424", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279707", + "2279707", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094653", + "1483094653", + "1483096381", + "1483094653", + "1", + "12", + "0", + "-1", + "1728", + "0", + "20736", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279711", + "2279711", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094687", + "1483094687", + "1483096365", + "1483094687", + "1", + "12", + "0", + "-1", + "1678", + "0", + "20136", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279713", + "2279713", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094714", + "1483094714", + "1483096381", + "1483094714", + "1", + "12", + "0", + "-1", + "1667", + "0", + "20004", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279715", + "2279715", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094730", + "1483094730", + "1483096351", + "1483094730", + "1", + "12", + "0", + "-1", + "1621", + "0", + "19452", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279726", + "2279726", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094823", + "1483094823", + "1483096475", + "1483094823", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279744", + "2279744", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094925", + "1483094925", + "1483096111", + "1483094925", + "1", + "12", + "0", + "-1", + "1186", + "0", + "14232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279755", + "2279755", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095028", + "1483095028", + "1483096730", + "1483095028", + "1", + "12", + "0", + "-1", + "1702", + "0", + "20424", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279757", + "2279757", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095032", + "1483095032", + "1483096800", + "1483095032", + "1", + "12", + "0", + "-1", + "1768", + "0", + "21216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279776", + "2279776", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095136", + "1483095136", + "1483096770", + "1483095136", + "1", + "12", + "0", + "-1", + "1634", + "0", + "19608", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279778", + "2279778", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095141", + "1483095141", + "1483096617", + "1483095141", + "1", + "12", + "0", + "-1", + "1476", + "0", + "17712", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279781", + "2279781", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095201", + "1483095201", + "1483096911", + "1483095201", + "1", + "12", + "0", + "-1", + "1710", + "0", + "20520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279850", + "2279850", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095966", + "1483095966", + "1483097706", + "1483095966", + "1", + "12", + "0", + "-1", + "1740", + "0", + "20880", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279852", + "2279852", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095982", + "1483095982", + "1483097503", + "1483095982", + "1", + "12", + "0", + "-1", + "1521", + "0", + "18252", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279863", + "2279863", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096116", + "1483096116", + "1483097887", + "1483096116", + "1", + "12", + "0", + "-1", + "1771", + "0", + "21252", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279870", + "2279870", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096162", + "1483096162", + "1483097842", + "1483096162", + "1", + "12", + "0", + "-1", + "1680", + "0", + "20160", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279881", + "2279881", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096290", + "1483096290", + "1483098040", + "1483096290", + "1", + "12", + "0", + "-1", + "1750", + "0", + "21000", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279883", + "2279883", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096304", + "1483096304", + "1483098071", + "1483096304", + "1", + "12", + "0", + "-1", + "1767", + "0", + "21204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279887", + "2279887", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096326", + "1483096326", + "1483097816", + "1483096326", + "1", + "12", + "0", + "-1", + "1490", + "0", + "17880", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279915", + "2279915", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096552", + "1483096552", + "1483098029", + "1483096552", + "1", + "12", + "0", + "-1", + "1477", + "0", + "17724", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279949", + "2279949", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096766", + "1483096766", + "1483098160", + "1483096766", + "1", + "12", + "0", + "-1", + "1394", + "0", + "16728", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279951", + "2279951", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096773", + "1483096773", + "1483098468", + "1483096773", + "1", + "12", + "0", + "-1", + "1695", + "0", + "20340", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279954", + "2279954", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096809", + "1483096809", + "1483098571", + "1483096809", + "1", + "12", + "0", + "-1", + "1762", + "0", + "21144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279968", + "2279968", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096941", + "1483096941", + "1483098452", + "1483096941", + "1", + "12", + "0", + "-1", + "1511", + "0", + "18132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279982", + "2279982", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097030", + "1483097030", + "1483098725", + "1483097030", + "1", + "12", + "0", + "-1", + "1695", + "0", + "20340", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279986", + "2279986", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097074", + "1483097074", + "1483098747", + "1483097074", + "1", + "12", + "0", + "-1", + "1673", + "0", + "20076", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279994", + "2279994", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097112", + "1483097112", + "1483098470", + "1483097112", + "1", + "12", + "0", + "-1", + "1358", + "0", + "16296", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280011", + "2280011", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097509", + "1483097509", + "1483099245", + "1483097509", + "1", + "12", + "0", + "-1", + "1736", + "0", + "20832", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280017", + "2280017", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097711", + "1483097711", + "1483099319", + "1483097711", + "1", + "12", + "0", + "-1", + "1608", + "0", + "19296", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280021", + "2280021", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097756", + "1483097756", + "1483099468", + "1483097756", + "1", + "12", + "0", + "-1", + "1712", + "0", + "20544", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280023", + "2280023", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097765", + "1483097765", + "1483099408", + "1483097765", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280025", + "2280025", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097806", + "1483097806", + "1483099549", + "1483097806", + "1", + "12", + "0", + "-1", + "1743", + "0", + "20916", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280033", + "2280033", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097867", + "1483097867", + "1483099530", + "1483097867", + "1", + "12", + "0", + "-1", + "1663", + "0", + "19956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280038", + "2280038", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097897", + "1483097897", + "1483099549", + "1483097897", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280042", + "2280042", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097924", + "1483097924", + "1483099603", + "1483097924", + "1", + "12", + "0", + "-1", + "1679", + "0", + "20148", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280073", + "2280073", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098192", + "1483098192", + "1483099927", + "1483098192", + "1", + "12", + "0", + "-1", + "1735", + "0", + "20820", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280092", + "2280092", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098274", + "1483098274", + "1483099797", + "1483098274", + "1", + "12", + "0", + "-1", + "1523", + "0", + "18276", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280100", + "2280100", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098296", + "1483098296", + "1483100034", + "1483098296", + "1", + "12", + "0", + "-1", + "1738", + "0", + "20856", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280115", + "2280115", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098376", + "1483098376", + "1483100132", + "1483098376", + "1", + "12", + "0", + "-1", + "1756", + "0", + "21072", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280144", + "2280144", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098656", + "1483098656", + "1483100138", + "1483098656", + "1", + "12", + "0", + "-1", + "1482", + "0", + "17784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280151", + "2280151", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098756", + "1483098756", + "1483100150", + "1483098756", + "1", + "12", + "0", + "-1", + "1394", + "0", + "16728", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280153", + "2280153", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098786", + "1483098786", + "1483100272", + "1483098786", + "1", + "12", + "0", + "-1", + "1486", + "0", + "17832", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280159", + "2280159", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098823", + "1483098823", + "1483100360", + "1483098823", + "1", + "12", + "0", + "-1", + "1537", + "0", + "18444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280162", + "2280162", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098894", + "1483098894", + "1483100391", + "1483098894", + "1", + "12", + "0", + "-1", + "1497", + "0", + "17964", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280165", + "2280165", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098926", + "1483098926", + "1483100635", + "1483098926", + "1", + "12", + "0", + "-1", + "1709", + "0", + "20508", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280169", + "2280169", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098975", + "1483098975", + "1483100663", + "1483098975", + "1", + "12", + "0", + "-1", + "1688", + "0", + "20256", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280177", + "2280177", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099010", + "1483099010", + "1483100375", + "1483099010", + "1", + "12", + "0", + "-1", + "1365", + "0", + "16380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280179", + "2280179", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099015", + "1483099015", + "1483100504", + "1483099015", + "1", + "12", + "0", + "-1", + "1489", + "0", + "17868", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280182", + "2280182", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099060", + "1483099060", + "1483100824", + "1483099060", + "1", + "12", + "0", + "-1", + "1764", + "0", + "21168", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280219", + "2280219", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099558", + "1483099558", + "1483101248", + "1483099558", + "1", + "12", + "0", + "-1", + "1690", + "0", + "20280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280257", + "2280257", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099860", + "1483099860", + "1483101342", + "1483099860", + "1", + "12", + "0", + "-1", + "1482", + "0", + "17784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280269", + "2280269", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099990", + "1483099990", + "1483101475", + "1483099990", + "1", + "12", + "0", + "-1", + "1485", + "0", + "17820", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280274", + "2280274", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100038", + "1483100038", + "1483101829", + "1483100038", + "1", + "12", + "0", + "-1", + "1791", + "0", + "21492", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280276", + "2280276", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100043", + "1483100043", + "1483101677", + "1483100043", + "1", + "12", + "0", + "-1", + "1634", + "0", + "19608", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280285", + "2280285", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100091", + "1483100091", + "1483101862", + "1483100091", + "1", + "12", + "0", + "-1", + "1771", + "0", + "21252", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280298", + "2280298", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100154", + "1483100154", + "1483101580", + "1483100154", + "1", + "12", + "0", + "-1", + "1426", + "0", + "17112", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280302", + "2280302", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100180", + "1483100180", + "1483101884", + "1483100180", + "1", + "12", + "0", + "-1", + "1704", + "0", + "20448", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280316", + "2280316", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100278", + "1483100278", + "1483102009", + "1483100278", + "1", + "12", + "0", + "-1", + "1731", + "0", + "20772", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280318", + "2280318", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100294", + "1483100294", + "1483102061", + "1483100294", + "1", + "12", + "0", + "-1", + "1767", + "0", + "21204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280320", + "2280320", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100299", + "1483100299", + "1483101903", + "1483100299", + "1", + "12", + "0", + "-1", + "1604", + "0", + "19248", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280326", + "2280326", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100327", + "1483100327", + "1483101882", + "1483100327", + "1", + "12", + "0", + "-1", + "1555", + "0", + "18660", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280330", + "2280330", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100345", + "1483100345", + "1483101943", + "1483100345", + "1", + "12", + "0", + "-1", + "1598", + "0", + "19176", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280350", + "2280350", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100494", + "1483100494", + "1483102173", + "1483100494", + "1", + "12", + "0", + "-1", + "1679", + "0", + "20148", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280426", + "2280426", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101453", + "1483101453", + "1483103079", + "1483101453", + "1", + "12", + "0", + "-1", + "1626", + "0", + "19512", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280430", + "2280430", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101478", + "1483101478", + "1483103167", + "1483101478", + "1", + "12", + "0", + "-1", + "1689", + "0", + "20268", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280442", + "2280442", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101567", + "1483101567", + "1483103255", + "1483101567", + "1", + "12", + "0", + "-1", + "1688", + "0", + "20256", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280445", + "2280445", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101585", + "1483101585", + "1483103350", + "1483101585", + "1", + "12", + "0", + "-1", + "1765", + "0", + "21180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280447", + "2280447", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101589", + "1483101589", + "1483103272", + "1483101589", + "1", + "12", + "0", + "-1", + "1683", + "0", + "20196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280452", + "2280452", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101645", + "1483101645", + "1483103332", + "1483101645", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280497", + "2280497", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101981", + "1483101981", + "1483103760", + "1483101981", + "1", + "12", + "0", + "-1", + "1779", + "0", + "21348", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280499", + "2280499", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102013", + "1483102013", + "1483103724", + "1483102013", + "1", + "12", + "0", + "-1", + "1711", + "0", + "20532", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280505", + "2280505", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102029", + "1483102029", + "1483103636", + "1483102029", + "1", + "12", + "0", + "-1", + "1607", + "0", + "19284", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280509", + "2280509", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102045", + "1483102045", + "1483103455", + "1483102045", + "1", + "12", + "0", + "-1", + "1410", + "0", + "16920", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280511", + "2280511", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102049", + "1483102049", + "1483103287", + "1483102049", + "1", + "12", + "0", + "-1", + "1238", + "0", + "14856", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280513", + "2280513", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102054", + "1483102054", + "1483103584", + "1483102054", + "1", + "12", + "0", + "-1", + "1530", + "0", + "18360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280517", + "2280517", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102072", + "1483102072", + "1483103690", + "1483102072", + "1", + "12", + "0", + "-1", + "1618", + "0", + "19416", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280519", + "2280519", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102095", + "1483102095", + "1483103722", + "1483102095", + "1", + "12", + "0", + "-1", + "1627", + "0", + "19524", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280521", + "2280521", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102099", + "1483102099", + "1483103318", + "1483102099", + "1", + "12", + "0", + "-1", + "1219", + "0", + "14628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280523", + "2280523", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102104", + "1483102104", + "1483103497", + "1483102104", + "1", + "12", + "0", + "-1", + "1393", + "0", + "16716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280526", + "2280526", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102123", + "1483102123", + "1483103511", + "1483102123", + "1", + "12", + "0", + "-1", + "1388", + "0", + "16656", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280533", + "2280533", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102177", + "1483102177", + "1483103799", + "1483102177", + "1", + "12", + "0", + "-1", + "1622", + "0", + "19464", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280537", + "2280537", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102204", + "1483102204", + "1483103436", + "1483102204", + "1", + "12", + "0", + "-1", + "1232", + "0", + "14784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280592", + "2280592", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102847", + "1483102847", + "1483104588", + "1483102847", + "1", + "12", + "0", + "-1", + "1741", + "0", + "20892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280596", + "2280596", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102893", + "1483102893", + "1483104480", + "1483102893", + "1", + "12", + "0", + "-1", + "1587", + "0", + "19044", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280611", + "2280611", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103093", + "1483103093", + "1483104762", + "1483103093", + "1", + "12", + "0", + "-1", + "1669", + "0", + "20028", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280648", + "2280648", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103350", + "1483103350", + "1483104925", + "1483103350", + "1", + "12", + "0", + "-1", + "1575", + "0", + "18900", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280658", + "2280658", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103458", + "1483103458", + "1483105101", + "1483103458", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280712", + "2280712", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104062", + "1483104062", + "1483105681", + "1483104062", + "1", + "12", + "0", + "-1", + "1619", + "0", + "19428", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280721", + "2280721", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104133", + "1483104133", + "1483105697", + "1483104133", + "1", + "12", + "0", + "-1", + "1564", + "0", + "18768", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280726", + "2280726", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104167", + "1483104167", + "1483105936", + "1483104167", + "1", + "12", + "0", + "-1", + "1769", + "0", + "21228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280744", + "2280744", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104356", + "1483104356", + "1483106100", + "1483104356", + "1", + "12", + "0", + "-1", + "1744", + "0", + "20928", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280756", + "2280756", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104528", + "1483104528", + "1483106323", + "1483104528", + "1", + "12", + "0", + "-1", + "1795", + "0", + "21540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280764", + "2280764", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104688", + "1483104688", + "1483106333", + "1483104688", + "1", + "12", + "0", + "-1", + "1645", + "0", + "19740", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280769", + "2280769", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104757", + "1483104757", + "1483106319", + "1483104757", + "1", + "12", + "0", + "-1", + "1562", + "0", + "18744", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280780", + "2280780", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104791", + "1483104791", + "1483106572", + "1483104791", + "1", + "12", + "0", + "-1", + "1781", + "0", + "21372", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280783", + "2280783", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104800", + "1483104800", + "1483106439", + "1483104800", + "1", + "12", + "0", + "-1", + "1639", + "0", + "19668", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280814", + "2280814", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105057", + "1483105057", + "1483106592", + "1483105057", + "1", + "12", + "0", + "-1", + "1535", + "0", + "18420", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280816", + "2280816", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105061", + "1483105061", + "1483106593", + "1483105061", + "1", + "12", + "0", + "-1", + "1532", + "0", + "18384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280819", + "2280819", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105106", + "1483105106", + "1483106869", + "1483105106", + "1", + "12", + "0", + "-1", + "1763", + "0", + "21156", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280821", + "2280821", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105110", + "1483105110", + "1483106763", + "1483105110", + "1", + "12", + "0", + "-1", + "1653", + "0", + "19836", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280823", + "2280823", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105115", + "1483105115", + "1483106298", + "1483105115", + "1", + "12", + "0", + "-1", + "1183", + "0", + "14196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280837", + "2280837", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105236", + "1483105236", + "1483106760", + "1483105236", + "1", + "12", + "0", + "-1", + "1524", + "0", + "18288", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280839", + "2280839", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105245", + "1483105245", + "1483107024", + "1483105245", + "1", + "12", + "0", + "-1", + "1779", + "0", + "21348", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280841", + "2280841", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105255", + "1483105255", + "1483106813", + "1483105255", + "1", + "12", + "0", + "-1", + "1558", + "0", + "18696", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280844", + "2280844", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105376", + "1483105376", + "1483106965", + "1483105376", + "1", + "12", + "0", + "-1", + "1589", + "0", + "19068", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280846", + "2280846", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105389", + "1483105389", + "1483106850", + "1483105389", + "1", + "12", + "0", + "-1", + "1461", + "0", + "17532", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280848", + "2280848", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105401", + "1483105401", + "1483107086", + "1483105401", + "1", + "12", + "0", + "-1", + "1685", + "0", + "20220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280851", + "2280851", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105417", + "1483105417", + "1483106599", + "1483105417", + "1", + "12", + "0", + "-1", + "1182", + "0", + "14184", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280907", + "2280907", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106026", + "1483106026", + "1483107751", + "1483106026", + "1", + "12", + "0", + "-1", + "1725", + "0", + "20700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280909", + "2280909", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106042", + "1483106042", + "1483107768", + "1483106042", + "1", + "12", + "0", + "-1", + "1726", + "0", + "20712", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280947", + "2280947", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106349", + "1483106349", + "1483107942", + "1483106349", + "1", + "12", + "0", + "-1", + "1593", + "0", + "19116", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280956", + "2280956", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106451", + "1483106451", + "1483108210", + "1483106451", + "1", + "12", + "0", + "-1", + "1759", + "0", + "21108", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280968", + "2280968", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106548", + "1483106548", + "1483108290", + "1483106548", + "1", + "12", + "0", + "-1", + "1742", + "0", + "20904", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280972", + "2280972", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106587", + "1483106587", + "1483108110", + "1483106587", + "1", + "12", + "0", + "-1", + "1523", + "0", + "18276", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280976", + "2280976", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106600", + "1483106600", + "1483108334", + "1483106600", + "1", + "12", + "0", + "-1", + "1734", + "0", + "20808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280978", + "2280978", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106605", + "1483106605", + "1483108149", + "1483106605", + "1", + "12", + "0", + "-1", + "1544", + "0", + "18528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281011", + "2281011", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106784", + "1483106784", + "1483108271", + "1483106784", + "1", + "12", + "0", + "-1", + "1487", + "0", + "17844", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281027", + "2281027", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106954", + "1483106954", + "1483108679", + "1483106954", + "1", + "12", + "0", + "-1", + "1725", + "0", + "20700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281031", + "2281031", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106984", + "1483106984", + "1483108702", + "1483106984", + "1", + "12", + "0", + "-1", + "1718", + "0", + "20616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281033", + "2281033", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107008", + "1483107008", + "1483108684", + "1483107008", + "1", + "12", + "0", + "-1", + "1676", + "0", + "20112", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281035", + "2281035", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107044", + "1483107044", + "1483108518", + "1483107044", + "1", + "12", + "0", + "-1", + "1474", + "0", + "17688", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281059", + "2281059", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107458", + "1483107458", + "1483109060", + "1483107458", + "1", + "12", + "0", + "-1", + "1602", + "0", + "19224", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281066", + "2281066", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107506", + "1483107506", + "1483109012", + "1483107506", + "1", + "12", + "0", + "-1", + "1506", + "0", + "18072", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281073", + "2281073", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107583", + "1483107583", + "1483109108", + "1483107583", + "1", + "12", + "0", + "-1", + "1525", + "0", + "18300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281087", + "2281087", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107793", + "1483107793", + "1483109385", + "1483107793", + "1", + "12", + "0", + "-1", + "1592", + "0", + "19104", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281089", + "2281089", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107811", + "1483107811", + "1483109380", + "1483107811", + "1", + "12", + "0", + "-1", + "1569", + "0", + "18828", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281094", + "2281094", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107893", + "1483107893", + "1483109675", + "1483107893", + "1", + "12", + "0", + "-1", + "1782", + "0", + "21384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281133", + "2281133", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108208", + "1483108208", + "1483110006", + "1483108208", + "1", + "12", + "0", + "-1", + "1798", + "0", + "21576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281135", + "2281135", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108212", + "1483108212", + "1483109709", + "1483108212", + "1", + "12", + "0", + "-1", + "1497", + "0", + "17964", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281139", + "2281139", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108230", + "1483108230", + "1483109682", + "1483108230", + "1", + "12", + "0", + "-1", + "1452", + "0", + "17424", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281146", + "2281146", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108285", + "1483108285", + "1483109945", + "1483108285", + "1", + "12", + "0", + "-1", + "1660", + "0", + "19920", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281148", + "2281148", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108294", + "1483108294", + "1483109826", + "1483108294", + "1", + "12", + "0", + "-1", + "1532", + "0", + "18384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281150", + "2281150", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108301", + "1483108301", + "1483109992", + "1483108301", + "1", + "12", + "0", + "-1", + "1691", + "0", + "20292", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281152", + "2281152", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108308", + "1483108308", + "1483109798", + "1483108308", + "1", + "12", + "0", + "-1", + "1490", + "0", + "17880", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281154", + "2281154", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108321", + "1483108321", + "1483109551", + "1483108321", + "1", + "12", + "0", + "-1", + "1230", + "0", + "14760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281158", + "2281158", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108369", + "1483108369", + "1483109868", + "1483108369", + "1", + "12", + "0", + "-1", + "1499", + "0", + "17988", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281164", + "2281164", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108407", + "1483108407", + "1483110058", + "1483108407", + "1", + "12", + "0", + "-1", + "1651", + "0", + "19812", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281168", + "2281168", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108463", + "1483108463", + "1483109784", + "1483108463", + "1", + "12", + "0", + "-1", + "1321", + "0", + "15852", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281173", + "2281173", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108500", + "1483108500", + "1483109804", + "1483108500", + "1", + "12", + "0", + "-1", + "1304", + "0", + "15648", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281187", + "2281187", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108620", + "1483108620", + "1483110003", + "1483108620", + "1", + "12", + "0", + "-1", + "1383", + "0", + "16596", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281192", + "2281192", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108650", + "1483108650", + "1483110348", + "1483108650", + "1", + "12", + "0", + "-1", + "1698", + "0", + "20376", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281224", + "2281224", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108863", + "1483108863", + "1483110398", + "1483108863", + "1", + "12", + "0", + "-1", + "1535", + "0", + "18420", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281227", + "2281227", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108895", + "1483108895", + "1483110415", + "1483108895", + "1", + "12", + "0", + "-1", + "1520", + "0", + "18240", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281231", + "2281231", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108904", + "1483108904", + "1483110521", + "1483108904", + "1", + "12", + "0", + "-1", + "1617", + "0", + "19404", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281238", + "2281238", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109016", + "1483109016", + "1483110647", + "1483109016", + "1", + "12", + "0", + "-1", + "1631", + "0", + "19572", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281288", + "2281288", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109546", + "1483109546", + "1483111200", + "1483109546", + "1", + "12", + "0", + "-1", + "1654", + "0", + "19848", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281346", + "2281346", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109952", + "1483109952", + "1483111401", + "1483109952", + "1", + "12", + "0", + "-1", + "1449", + "0", + "17388", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281354", + "2281354", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109997", + "1483109997", + "1483111795", + "1483109997", + "1", + "12", + "0", + "-1", + "1798", + "0", + "21576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281362", + "2281362", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110057", + "1483110057", + "1483111673", + "1483110057", + "1", + "12", + "0", + "-1", + "1616", + "0", + "19392", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281364", + "2281364", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110062", + "1483110062", + "1483111757", + "1483110062", + "1", + "12", + "0", + "-1", + "1695", + "0", + "20340", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281400", + "2281400", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110526", + "1483110526", + "1483112314", + "1483110526", + "1", + "12", + "0", + "-1", + "1788", + "0", + "21456", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281403", + "2281403", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110564", + "1483110564", + "1483112085", + "1483110564", + "1", + "12", + "0", + "-1", + "1521", + "0", + "18252", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281409", + "2281409", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110656", + "1483110656", + "1483112230", + "1483110656", + "1", + "12", + "0", + "-1", + "1574", + "0", + "18888", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281417", + "2281417", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110710", + "1483110710", + "1483112462", + "1483110710", + "1", + "12", + "0", + "-1", + "1752", + "0", + "21024", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281423", + "2281423", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110743", + "1483110743", + "1483112357", + "1483110743", + "1", + "12", + "0", + "-1", + "1614", + "0", + "19368", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281426", + "2281426", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110752", + "1483110752", + "1483112544", + "1483110752", + "1", + "12", + "0", + "-1", + "1792", + "0", + "21504", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281431", + "2281431", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110793", + "1483110793", + "1483112347", + "1483110793", + "1", + "12", + "0", + "-1", + "1554", + "0", + "18648", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281433", + "2281433", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110817", + "1483110817", + "1483112410", + "1483110817", + "1", + "12", + "0", + "-1", + "1593", + "0", + "19116", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281435", + "2281435", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110823", + "1483110823", + "1483112519", + "1483110823", + "1", + "12", + "0", + "-1", + "1696", + "0", + "20352", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281438", + "2281438", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110836", + "1483110836", + "1483112536", + "1483110836", + "1", + "12", + "0", + "-1", + "1700", + "0", + "20400", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281451", + "2281451", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111086", + "1483111086", + "1483112733", + "1483111086", + "1", + "12", + "0", + "-1", + "1647", + "0", + "19764", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281456", + "2281456", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111146", + "1483111146", + "1483112562", + "1483111146", + "1", + "12", + "0", + "-1", + "1416", + "0", + "16992", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281472", + "2281472", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111288", + "1483111288", + "1483113049", + "1483111288", + "1", + "12", + "0", + "-1", + "1761", + "0", + "21132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281478", + "2281478", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111387", + "1483111387", + "1483113167", + "1483111387", + "1", + "12", + "0", + "-1", + "1780", + "0", + "21360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281480", + "2281480", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111396", + "1483111396", + "1483112968", + "1483111396", + "1", + "12", + "0", + "-1", + "1572", + "0", + "18864", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281482", + "2281482", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111414", + "1483111414", + "1483113096", + "1483111414", + "1", + "12", + "0", + "-1", + "1682", + "0", + "20184", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281489", + "2281489", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111577", + "1483111577", + "1483113183", + "1483111577", + "1", + "12", + "0", + "-1", + "1606", + "0", + "19272", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281501", + "2281501", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111687", + "1483111687", + "1483113421", + "1483111687", + "1", + "12", + "0", + "-1", + "1734", + "0", + "20808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281506", + "2281506", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111713", + "1483111713", + "1483113436", + "1483111713", + "1", + "12", + "0", + "-1", + "1723", + "0", + "20676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281514", + "2281514", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111756", + "1483111756", + "1483113266", + "1483111756", + "1", + "12", + "0", + "-1", + "1510", + "0", + "18120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281524", + "2281524", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111799", + "1483111799", + "1483113443", + "1483111799", + "1", + "12", + "0", + "-1", + "1644", + "0", + "19728", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281538", + "2281538", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111923", + "1483111923", + "1483113615", + "1483111923", + "1", + "12", + "0", + "-1", + "1692", + "0", + "20304", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281548", + "2281548", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112005", + "1483112005", + "1483113522", + "1483112005", + "1", + "12", + "0", + "-1", + "1517", + "0", + "18204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281550", + "2281550", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112012", + "1483112012", + "1483113773", + "1483112012", + "1", + "12", + "0", + "-1", + "1761", + "0", + "21132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281599", + "2281599", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112372", + "1483112372", + "1483114090", + "1483112372", + "1", + "12", + "0", + "-1", + "1718", + "0", + "20616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281602", + "2281602", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112415", + "1483112415", + "1483114203", + "1483112415", + "1", + "12", + "0", + "-1", + "1788", + "0", + "21456", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281620", + "2281620", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112549", + "1483112549", + "1483114110", + "1483112549", + "1", + "12", + "0", + "-1", + "1561", + "0", + "18732", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281622", + "2281622", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112566", + "1483112566", + "1483114360", + "1483112566", + "1", + "12", + "0", + "-1", + "1794", + "0", + "21528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281659", + "2281659", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112872", + "1483112872", + "1483114668", + "1483112872", + "1", + "12", + "0", + "-1", + "1796", + "0", + "21552", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281668", + "2281668", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113072", + "1483113072", + "1483114638", + "1483113072", + "1", + "12", + "0", + "-1", + "1566", + "0", + "18792", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281692", + "2281692", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113411", + "1483113411", + "1483115011", + "1483113411", + "1", + "12", + "0", + "-1", + "1600", + "0", + "19200", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281696", + "2281696", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113429", + "1483113429", + "1483115210", + "1483113429", + "1", + "12", + "0", + "-1", + "1781", + "0", + "21372", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281714", + "2281714", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113566", + "1483113566", + "1483115338", + "1483113566", + "1", + "12", + "0", + "-1", + "1772", + "0", + "21264", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281717", + "2281717", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113582", + "1483113582", + "1483115327", + "1483113582", + "1", + "12", + "0", + "-1", + "1745", + "0", + "20940", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281728", + "2281728", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113665", + "1483113665", + "1483115040", + "1483113665", + "1", + "12", + "0", + "-1", + "1375", + "0", + "16500", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281730", + "2281730", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113670", + "1483113670", + "1483115279", + "1483113670", + "1", + "12", + "0", + "-1", + "1609", + "0", + "19308", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281732", + "2281732", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113681", + "1483113681", + "1483115277", + "1483113681", + "1", + "12", + "0", + "-1", + "1596", + "0", + "19152", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281736", + "2281736", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113689", + "1483113689", + "1483115248", + "1483113689", + "1", + "12", + "0", + "-1", + "1559", + "0", + "18708", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281740", + "2281740", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113698", + "1483113698", + "1483115343", + "1483113698", + "1", + "12", + "0", + "-1", + "1645", + "0", + "19740", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281748", + "2281748", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113776", + "1483113776", + "1483115267", + "1483113776", + "1", + "12", + "0", + "-1", + "1491", + "0", + "17892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281750", + "2281750", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113783", + "1483113783", + "1483115050", + "1483113783", + "1", + "12", + "0", + "-1", + "1267", + "0", + "15204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281752", + "2281752", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113816", + "1483113816", + "1483115562", + "1483113816", + "1", + "12", + "0", + "-1", + "1746", + "0", + "20952", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281754", + "2281754", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113822", + "1483113822", + "1483115480", + "1483113822", + "1", + "12", + "0", + "-1", + "1658", + "0", + "19896", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281760", + "2281760", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113867", + "1483113867", + "1483115606", + "1483113867", + "1", + "12", + "0", + "-1", + "1739", + "0", + "20868", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281777", + "2281777", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114065", + "1483114065", + "1483115842", + "1483114065", + "1", + "12", + "0", + "-1", + "1777", + "0", + "21324", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281791", + "2281791", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114126", + "1483114126", + "1483115645", + "1483114126", + "1", + "12", + "0", + "-1", + "1519", + "0", + "18228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281794", + "2281794", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114206", + "1483114206", + "1483115463", + "1483114206", + "1", + "12", + "0", + "-1", + "1257", + "0", + "15084", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281806", + "2281806", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114289", + "1483114289", + "1483116031", + "1483114289", + "1", + "12", + "0", + "-1", + "1742", + "0", + "20904", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281812", + "2281812", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114368", + "1483114368", + "1483115896", + "1483114368", + "1", + "12", + "0", + "-1", + "1528", + "0", + "18336", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281824", + "2281824", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114434", + "1483114434", + "1483116121", + "1483114434", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281826", + "2281826", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114438", + "1483114438", + "1483115972", + "1483114438", + "1", + "12", + "0", + "-1", + "1534", + "0", + "18408", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281844", + "2281844", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114636", + "1483114636", + "1483116229", + "1483114636", + "1", + "12", + "0", + "-1", + "1593", + "0", + "19116", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281861", + "2281861", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114721", + "1483114721", + "1483116487", + "1483114721", + "1", + "12", + "0", + "-1", + "1766", + "0", + "21192", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281875", + "2281875", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114939", + "1483114939", + "1483116641", + "1483114939", + "1", + "12", + "0", + "-1", + "1702", + "0", + "20424", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281883", + "2281883", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115045", + "1483115045", + "1483116764", + "1483115045", + "1", + "12", + "0", + "-1", + "1719", + "0", + "20628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281885", + "2281885", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115053", + "1483115053", + "1483116641", + "1483115053", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281887", + "2281887", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115062", + "1483115062", + "1483116537", + "1483115062", + "1", + "12", + "0", + "-1", + "1475", + "0", + "17700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281890", + "2281890", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115090", + "1483115090", + "1483116641", + "1483115090", + "1", + "12", + "0", + "-1", + "1551", + "0", + "18612", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281892", + "2281892", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115094", + "1483115094", + "1483116811", + "1483115094", + "1", + "12", + "0", + "-1", + "1717", + "0", + "20604", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281895", + "2281895", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115132", + "1483115132", + "1483116616", + "1483115132", + "1", + "12", + "0", + "-1", + "1484", + "0", + "17808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281899", + "2281899", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115144", + "1483115144", + "1483116857", + "1483115144", + "1", + "12", + "0", + "-1", + "1713", + "0", + "20556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281916", + "2281916", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115280", + "1483115280", + "1483116864", + "1483115280", + "1", + "12", + "0", + "-1", + "1584", + "0", + "19008", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281927", + "2281927", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115347", + "1483115347", + "1483116766", + "1483115347", + "1", + "12", + "0", + "-1", + "1419", + "0", + "17028", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281930", + "2281930", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115399", + "1483115399", + "1483116876", + "1483115399", + "1", + "12", + "0", + "-1", + "1477", + "0", + "17724", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281934", + "2281934", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115417", + "1483115417", + "1483116907", + "1483115417", + "1", + "12", + "0", + "-1", + "1490", + "0", + "17880", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281941", + "2281941", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115520", + "1483115520", + "1483117081", + "1483115520", + "1", + "12", + "0", + "-1", + "1561", + "0", + "18732", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281943", + "2281943", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115529", + "1483115529", + "1483116907", + "1483115529", + "1", + "12", + "0", + "-1", + "1378", + "0", + "16536", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281947", + "2281947", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115538", + "1483115538", + "1483117105", + "1483115538", + "1", + "12", + "0", + "-1", + "1567", + "0", + "18804", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281949", + "2281949", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115567", + "1483115567", + "1483116907", + "1483115567", + "1", + "12", + "0", + "-1", + "1340", + "0", + "16080", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281953", + "2281953", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115599", + "1483115599", + "1483117025", + "1483115599", + "1", + "12", + "0", + "-1", + "1426", + "0", + "17112", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281956", + "2281956", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115626", + "1483115626", + "1483116953", + "1483115626", + "1", + "12", + "0", + "-1", + "1327", + "0", + "15924", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281958", + "2281958", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115635", + "1483115635", + "1483117219", + "1483115635", + "1", + "12", + "0", + "-1", + "1584", + "0", + "19008", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281960", + "2281960", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115646", + "1483115646", + "1483117319", + "1483115646", + "1", + "12", + "0", + "-1", + "1673", + "0", + "20076", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281962", + "2281962", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115651", + "1483115651", + "1483117353", + "1483115651", + "1", + "12", + "0", + "-1", + "1702", + "0", + "20424", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281964", + "2281964", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115655", + "1483115655", + "1483117025", + "1483115655", + "1", + "12", + "0", + "-1", + "1370", + "0", + "16440", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281968", + "2281968", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115675", + "1483115675", + "1483117025", + "1483115675", + "1", + "12", + "0", + "-1", + "1350", + "0", + "16200", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281972", + "2281972", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115711", + "1483115711", + "1483117025", + "1483115711", + "1", + "12", + "0", + "-1", + "1314", + "0", + "15768", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281982", + "2281982", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115815", + "1483115815", + "1483117025", + "1483115815", + "1", + "12", + "0", + "-1", + "1210", + "0", + "14520", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281992", + "2281992", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115997", + "1483115997", + "1483117262", + "1483115997", + "1", + "12", + "0", + "-1", + "1265", + "0", + "15180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281996", + "2281996", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116006", + "1483116006", + "1483117025", + "1483116006", + "1", + "12", + "0", + "-1", + "1019", + "0", + "12228", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282018", + "2282018", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116087", + "1483116087", + "1483117807", + "1483116087", + "1", + "12", + "0", + "-1", + "1720", + "0", + "20640", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282024", + "2282024", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116131", + "1483116131", + "1483117895", + "1483116131", + "1", + "12", + "0", + "-1", + "1764", + "0", + "21168", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282036", + "2282036", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116176", + "1483116176", + "1483117942", + "1483116176", + "1", + "12", + "0", + "-1", + "1766", + "0", + "21192", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282039", + "2282039", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116210", + "1483116210", + "1483117839", + "1483116210", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282043", + "2282043", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116228", + "1483116228", + "1483117874", + "1483116228", + "1", + "12", + "0", + "-1", + "1646", + "0", + "19752", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282045", + "2282045", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116232", + "1483116232", + "1483118015", + "1483116232", + "1", + "12", + "0", + "-1", + "1783", + "0", + "21396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282057", + "2282057", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116328", + "1483116328", + "1483118121", + "1483116328", + "1", + "12", + "0", + "-1", + "1793", + "0", + "21516", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282062", + "2282062", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116346", + "1483116346", + "1483117825", + "1483116346", + "1", + "12", + "0", + "-1", + "1479", + "0", + "17748", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282075", + "2282075", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116432", + "1483116432", + "1483117905", + "1483116432", + "1", + "12", + "0", + "-1", + "1473", + "0", + "17676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282088", + "2282088", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116514", + "1483116514", + "1483117841", + "1483116514", + "1", + "12", + "0", + "-1", + "1327", + "0", + "15924", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282101", + "2282101", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116633", + "1483116633", + "1483118163", + "1483116633", + "1", + "12", + "0", + "-1", + "1530", + "0", + "18360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282112", + "2282112", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116697", + "1483116697", + "1483118301", + "1483116697", + "1", + "12", + "0", + "-1", + "1604", + "0", + "19248", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282125", + "2282125", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116815", + "1483116815", + "1483118427", + "1483116815", + "1", + "12", + "0", + "-1", + "1612", + "0", + "19344", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282161", + "2282161", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116998", + "1483116998", + "1483118246", + "1483116998", + "1", + "12", + "0", + "-1", + "1248", + "0", + "14976", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282182", + "2282182", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117107", + "1483117107", + "1483118904", + "1483117107", + "1", + "12", + "0", + "-1", + "1797", + "0", + "21564", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282197", + "2282197", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117266", + "1483117266", + "1483118706", + "1483117266", + "1", + "12", + "0", + "-1", + "1440", + "0", + "17280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282202", + "2282202", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117323", + "1483117323", + "1483118711", + "1483117323", + "1", + "12", + "0", + "-1", + "1388", + "0", + "16656", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282205", + "2282205", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117356", + "1483117356", + "1483118980", + "1483117356", + "1", + "12", + "0", + "-1", + "1624", + "0", + "19488", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282227", + "2282227", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117695", + "1483117695", + "1483119190", + "1483117695", + "1", + "12", + "0", + "-1", + "1495", + "0", + "17940", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282234", + "2282234", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117811", + "1483117811", + "1483119577", + "1483117811", + "1", + "12", + "0", + "-1", + "1766", + "0", + "21192", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282236", + "2282236", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117826", + "1483117826", + "1483119299", + "1483117826", + "1", + "12", + "0", + "-1", + "1473", + "0", + "17676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282238", + "2282238", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117830", + "1483117830", + "1483119606", + "1483117830", + "1", + "12", + "0", + "-1", + "1776", + "0", + "21312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282243", + "2282243", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117849", + "1483117849", + "1483119437", + "1483117849", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282251", + "2282251", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117903", + "1483117903", + "1483119261", + "1483117903", + "1", + "12", + "0", + "-1", + "1358", + "0", + "16296", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282253", + "2282253", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117910", + "1483117910", + "1483119523", + "1483117910", + "1", + "12", + "0", + "-1", + "1613", + "0", + "19356", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282256", + "2282256", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117941", + "1483117941", + "1483119611", + "1483117941", + "1", + "12", + "0", + "-1", + "1670", + "0", + "20040", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282261", + "2282261", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117966", + "1483117966", + "1483119446", + "1483117966", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282263", + "2282263", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117978", + "1483117978", + "1483119758", + "1483117978", + "1", + "12", + "0", + "-1", + "1780", + "0", + "21360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282270", + "2282270", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118019", + "1483118019", + "1483119679", + "1483118019", + "1", + "12", + "0", + "-1", + "1660", + "0", + "19920", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282295", + "2282295", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118143", + "1483118143", + "1483119913", + "1483118143", + "1", + "12", + "0", + "-1", + "1770", + "0", + "21240", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282324", + "2282324", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118285", + "1483118285", + "1483120021", + "1483118285", + "1", + "12", + "0", + "-1", + "1736", + "0", + "20832", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282331", + "2282331", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118310", + "1483118310", + "1483119776", + "1483118310", + "1", + "12", + "0", + "-1", + "1466", + "0", + "17592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282337", + "2282337", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118367", + "1483118367", + "1483120152", + "1483118367", + "1", + "12", + "0", + "-1", + "1785", + "0", + "21420", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282344", + "2282344", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118418", + "1483118418", + "1483119853", + "1483118418", + "1", + "12", + "0", + "-1", + "1435", + "0", + "17220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282346", + "2282346", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118431", + "1483118431", + "1483120064", + "1483118431", + "1", + "12", + "0", + "-1", + "1633", + "0", + "19596", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282396", + "2282396", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118910", + "1483118910", + "1483120628", + "1483118910", + "1", + "12", + "0", + "-1", + "1718", + "0", + "20616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282405", + "2282405", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118945", + "1483118945", + "1483120651", + "1483118945", + "1", + "12", + "0", + "-1", + "1706", + "0", + "20472", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282409", + "2282409", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118974", + "1483118974", + "1483120432", + "1483118974", + "1", + "12", + "0", + "-1", + "1458", + "0", + "17496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282470", + "2282470", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119569", + "1483119569", + "1483121223", + "1483119569", + "1", + "12", + "0", + "-1", + "1654", + "0", + "19848", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282479", + "2282479", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119611", + "1483119611", + "1483121212", + "1483119611", + "1", + "12", + "0", + "-1", + "1601", + "0", + "19212", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282481", + "2282481", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119616", + "1483119616", + "1483121141", + "1483119616", + "1", + "12", + "0", + "-1", + "1525", + "0", + "18300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282486", + "2282486", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119629", + "1483119629", + "1483120924", + "1483119629", + "1", + "12", + "0", + "-1", + "1295", + "0", + "15540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282490", + "2282490", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119680", + "1483119680", + "1483120972", + "1483119680", + "1", + "12", + "0", + "-1", + "1292", + "0", + "15504", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282496", + "2282496", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119712", + "1483119712", + "1483121446", + "1483119712", + "1", + "12", + "0", + "-1", + "1734", + "0", + "20808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282498", + "2282498", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119716", + "1483119716", + "1483121309", + "1483119716", + "1", + "12", + "0", + "-1", + "1593", + "0", + "19116", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282501", + "2282501", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119759", + "1483119759", + "1483121217", + "1483119759", + "1", + "12", + "0", + "-1", + "1458", + "0", + "17496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282503", + "2282503", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119763", + "1483119763", + "1483121399", + "1483119763", + "1", + "12", + "0", + "-1", + "1636", + "0", + "19632", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282506", + "2282506", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119780", + "1483119780", + "1483121371", + "1483119780", + "1", + "12", + "0", + "-1", + "1591", + "0", + "19092", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282508", + "2282508", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119787", + "1483119787", + "1483121172", + "1483119787", + "1", + "12", + "0", + "-1", + "1385", + "0", + "16620", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282518", + "2282518", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119866", + "1483119866", + "1483121279", + "1483119866", + "1", + "12", + "0", + "-1", + "1413", + "0", + "16956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282531", + "2282531", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119917", + "1483119917", + "1483121401", + "1483119917", + "1", + "12", + "0", + "-1", + "1484", + "0", + "17808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282542", + "2282542", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120005", + "1483120005", + "1483121634", + "1483120005", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282544", + "2282544", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120025", + "1483120025", + "1483121611", + "1483120025", + "1", + "12", + "0", + "-1", + "1586", + "0", + "19032", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282548", + "2282548", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120068", + "1483120068", + "1483121850", + "1483120068", + "1", + "12", + "0", + "-1", + "1782", + "0", + "21384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282553", + "2282553", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120122", + "1483120122", + "1483121575", + "1483120122", + "1", + "12", + "0", + "-1", + "1453", + "0", + "17436", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282557", + "2282557", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120178", + "1483120178", + "1483121965", + "1483120178", + "1", + "12", + "0", + "-1", + "1787", + "0", + "21444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282580", + "2282580", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120343", + "1483120343", + "1483122118", + "1483120343", + "1", + "12", + "0", + "-1", + "1775", + "0", + "21300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282587", + "2282587", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120414", + "1483120414", + "1483121889", + "1483120414", + "1", + "12", + "0", + "-1", + "1475", + "0", + "17700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282597", + "2282597", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120553", + "1483120553", + "1483122288", + "1483120553", + "1", + "12", + "0", + "-1", + "1735", + "0", + "20820", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282641", + "2282641", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120953", + "1483120953", + "1483122629", + "1483120953", + "1", + "12", + "0", + "-1", + "1676", + "0", + "20112", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282675", + "2282675", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121176", + "1483121176", + "1483122971", + "1483121176", + "1", + "12", + "0", + "-1", + "1795", + "0", + "21540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282707", + "2282707", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121373", + "1483121373", + "1483123002", + "1483121373", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282711", + "2282711", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121404", + "1483121404", + "1483123127", + "1483121404", + "1", + "12", + "0", + "-1", + "1723", + "0", + "20676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282717", + "2282717", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121429", + "1483121429", + "1483123133", + "1483121429", + "1", + "12", + "0", + "-1", + "1704", + "0", + "20448", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282721", + "2282721", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121450", + "1483121450", + "1483123082", + "1483121450", + "1", + "12", + "0", + "-1", + "1632", + "0", + "19584", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282725", + "2282725", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121462", + "1483121462", + "1483122827", + "1483121462", + "1", + "12", + "0", + "-1", + "1365", + "0", + "16380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282737", + "2282737", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121592", + "1483121592", + "1483123267", + "1483121592", + "1", + "12", + "0", + "-1", + "1675", + "0", + "20100", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282761", + "2282761", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121892", + "1483121892", + "1483123598", + "1483121892", + "1", + "12", + "0", + "-1", + "1706", + "0", + "20472", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282787", + "2282787", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122232", + "1483122232", + "1483123953", + "1483122232", + "1", + "12", + "0", + "-1", + "1721", + "0", + "20652", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282833", + "2282833", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122632", + "1483122632", + "1483124318", + "1483122632", + "1", + "12", + "0", + "-1", + "1686", + "0", + "20232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282843", + "2282843", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122686", + "1483122686", + "1483124427", + "1483122686", + "1", + "12", + "0", + "-1", + "1741", + "0", + "20892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282862", + "2282862", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122887", + "1483122887", + "1483124612", + "1483122887", + "1", + "12", + "0", + "-1", + "1725", + "0", + "20700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282869", + "2282869", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122942", + "1483122942", + "1483124601", + "1483122942", + "1", + "12", + "0", + "-1", + "1659", + "0", + "19908", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282900", + "2282900", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123209", + "1483123209", + "1483124960", + "1483123209", + "1", + "12", + "0", + "-1", + "1751", + "0", + "21012", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282917", + "2282917", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123313", + "1483123313", + "1483124891", + "1483123313", + "1", + "12", + "0", + "-1", + "1578", + "0", + "18936", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282926", + "2282926", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123374", + "1483123374", + "1483124708", + "1483123374", + "1", + "12", + "0", + "-1", + "1334", + "0", + "16008", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282930", + "2282930", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123383", + "1483123383", + "1483124816", + "1483123383", + "1", + "12", + "0", + "-1", + "1433", + "0", + "17196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282932", + "2282932", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123387", + "1483123387", + "1483125023", + "1483123387", + "1", + "12", + "0", + "-1", + "1636", + "0", + "19632", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282934", + "2282934", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123392", + "1483123392", + "1483125117", + "1483123392", + "1", + "12", + "0", + "-1", + "1725", + "0", + "20700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282936", + "2282936", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123396", + "1483123396", + "1483125156", + "1483123396", + "1", + "12", + "0", + "-1", + "1760", + "0", + "21120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282940", + "2282940", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123436", + "1483123436", + "1483125191", + "1483123436", + "1", + "12", + "0", + "-1", + "1755", + "0", + "21060", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282943", + "2282943", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123473", + "1483123473", + "1483125270", + "1483123473", + "1", + "12", + "0", + "-1", + "1797", + "0", + "21564", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282965", + "2282965", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123710", + "1483123710", + "1483125429", + "1483123710", + "1", + "12", + "0", + "-1", + "1719", + "0", + "20628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282980", + "2282980", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123957", + "1483123957", + "1483125422", + "1483123957", + "1", + "12", + "0", + "-1", + "1465", + "0", + "17580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283004", + "2283004", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124329", + "1483124329", + "1483126074", + "1483124329", + "1", + "12", + "0", + "-1", + "1745", + "0", + "20940", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283006", + "2283006", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124340", + "1483124340", + "1483125891", + "1483124340", + "1", + "12", + "0", + "-1", + "1551", + "0", + "18612", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283013", + "2283013", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124408", + "1483124408", + "1483126166", + "1483124408", + "1", + "12", + "0", + "-1", + "1758", + "0", + "21096", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283026", + "2283026", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124576", + "1483124576", + "1483126053", + "1483124576", + "1", + "12", + "0", + "-1", + "1477", + "0", + "17724", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283028", + "2283028", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124605", + "1483124605", + "1483126261", + "1483124605", + "1", + "12", + "0", + "-1", + "1656", + "0", + "19872", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283035", + "2283035", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124640", + "1483124640", + "1483126300", + "1483124640", + "1", + "12", + "0", + "-1", + "1660", + "0", + "19920", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283041", + "2283041", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124704", + "1483124704", + "1483126138", + "1483124704", + "1", + "12", + "0", + "-1", + "1434", + "0", + "17208", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283045", + "2283045", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124713", + "1483124713", + "1483126182", + "1483124713", + "1", + "12", + "0", + "-1", + "1469", + "0", + "17628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283047", + "2283047", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124718", + "1483124718", + "1483126405", + "1483124718", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283051", + "2283051", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124738", + "1483124738", + "1483126326", + "1483124738", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283069", + "2283069", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124885", + "1483124885", + "1483126410", + "1483124885", + "1", + "12", + "0", + "-1", + "1525", + "0", + "18300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283091", + "2283091", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125027", + "1483125027", + "1483126419", + "1483125027", + "1", + "12", + "0", + "-1", + "1392", + "0", + "16704", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283095", + "2283095", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125111", + "1483125111", + "1483126725", + "1483125111", + "1", + "12", + "0", + "-1", + "1614", + "0", + "19368", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283097", + "2283097", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125120", + "1483125120", + "1483126389", + "1483125120", + "1", + "12", + "0", + "-1", + "1269", + "0", + "15228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283099", + "2283099", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125125", + "1483125125", + "1483126778", + "1483125125", + "1", + "12", + "0", + "-1", + "1653", + "0", + "19836", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283101", + "2283101", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125150", + "1483125150", + "1483126720", + "1483125150", + "1", + "12", + "0", + "-1", + "1570", + "0", + "18840", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283104", + "2283104", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125159", + "1483125159", + "1483126614", + "1483125159", + "1", + "12", + "0", + "-1", + "1455", + "0", + "17460", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283110", + "2283110", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125196", + "1483125196", + "1483126903", + "1483125196", + "1", + "12", + "0", + "-1", + "1707", + "0", + "20484", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283114", + "2283114", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125210", + "1483125210", + "1483126796", + "1483125210", + "1", + "12", + "0", + "-1", + "1586", + "0", + "19032", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283116", + "2283116", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125230", + "1483125230", + "1483126814", + "1483125230", + "1", + "12", + "0", + "-1", + "1584", + "0", + "19008", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283118", + "2283118", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125235", + "1483125235", + "1483126968", + "1483125235", + "1", + "12", + "0", + "-1", + "1733", + "0", + "20796", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283120", + "2283120", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125242", + "1483125242", + "1483126822", + "1483125242", + "1", + "12", + "0", + "-1", + "1580", + "0", + "18960", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283122", + "2283122", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125264", + "1483125264", + "1483126736", + "1483125264", + "1", + "12", + "0", + "-1", + "1472", + "0", + "17664", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283124", + "2283124", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125269", + "1483125269", + "1483126959", + "1483125269", + "1", + "12", + "0", + "-1", + "1690", + "0", + "20280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283127", + "2283127", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125278", + "1483125278", + "1483126468", + "1483125278", + "1", + "12", + "0", + "-1", + "1190", + "0", + "14280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283129", + "2283129", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125284", + "1483125284", + "1483126855", + "1483125284", + "1", + "12", + "0", + "-1", + "1571", + "0", + "18852", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283131", + "2283131", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125321", + "1483125321", + "1483126875", + "1483125321", + "1", + "12", + "0", + "-1", + "1554", + "0", + "18648", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283137", + "2283137", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125366", + "1483125366", + "1483126878", + "1483125366", + "1", + "12", + "0", + "-1", + "1512", + "0", + "18144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283151", + "2283151", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125473", + "1483125473", + "1483126800", + "1483125473", + "1", + "12", + "0", + "-1", + "1327", + "0", + "15924", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283155", + "2283155", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125525", + "1483125525", + "1483127007", + "1483125525", + "1", + "12", + "0", + "-1", + "1482", + "0", + "17784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283167", + "2283167", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125851", + "1483125851", + "1483127057", + "1483125851", + "1", + "12", + "0", + "-1", + "1206", + "0", + "14472", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283169", + "2283169", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125858", + "1483125858", + "1483127466", + "1483125858", + "1", + "12", + "0", + "-1", + "1608", + "0", + "19296", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283171", + "2283171", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125873", + "1483125873", + "1483127432", + "1483125873", + "1", + "12", + "0", + "-1", + "1559", + "0", + "18708", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283174", + "2283174", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125896", + "1483125896", + "1483127240", + "1483125896", + "1", + "12", + "0", + "-1", + "1344", + "0", + "16128", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283176", + "2283176", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125925", + "1483125925", + "1483127341", + "1483125925", + "1", + "12", + "0", + "-1", + "1416", + "0", + "16992", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283178", + "2283178", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125932", + "1483125932", + "1483127512", + "1483125932", + "1", + "12", + "0", + "-1", + "1580", + "0", + "18960", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283180", + "2283180", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125939", + "1483125939", + "1483127396", + "1483125939", + "1", + "12", + "0", + "-1", + "1457", + "0", + "17484", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283182", + "2283182", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125997", + "1483125997", + "1483127330", + "1483125997", + "1", + "12", + "0", + "-1", + "1333", + "0", + "15996", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283184", + "2283184", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126022", + "1483126022", + "1483127193", + "1483126022", + "1", + "12", + "0", + "-1", + "1171", + "0", + "14052", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283192", + "2283192", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126077", + "1483126077", + "1483127667", + "1483126077", + "1", + "12", + "0", + "-1", + "1590", + "0", + "19080", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283208", + "2283208", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126185", + "1483126185", + "1483127872", + "1483126185", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283215", + "2283215", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126251", + "1483126251", + "1483127860", + "1483126251", + "1", + "12", + "0", + "-1", + "1609", + "0", + "19308", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283219", + "2283219", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126271", + "1483126271", + "1483127989", + "1483126271", + "1", + "12", + "0", + "-1", + "1718", + "0", + "20616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283221", + "2283221", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126282", + "1483126282", + "1483127745", + "1483126282", + "1", + "12", + "0", + "-1", + "1463", + "0", + "17556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283246", + "2283246", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126470", + "1483126470", + "1483128097", + "1483126470", + "1", + "12", + "0", + "-1", + "1627", + "0", + "19524", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283255", + "2283255", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126565", + "1483126565", + "1483128194", + "1483126565", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283265", + "2283265", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126625", + "1483126625", + "1483128387", + "1483126625", + "1", + "12", + "0", + "-1", + "1762", + "0", + "21144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283314", + "2283314", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126956", + "1483126956", + "1483128607", + "1483126956", + "1", + "12", + "0", + "-1", + "1651", + "0", + "19812", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283365", + "2283365", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127350", + "1483127350", + "1483129129", + "1483127350", + "1", + "12", + "0", + "-1", + "1779", + "0", + "21348", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283394", + "2283394", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127672", + "1483127672", + "1483129145", + "1483127672", + "1", + "12", + "0", + "-1", + "1473", + "0", + "17676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283449", + "2283449", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128478", + "1483128478", + "1483130141", + "1483128478", + "1", + "12", + "0", + "-1", + "1663", + "0", + "19956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283454", + "2283454", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128501", + "1483128501", + "1483130287", + "1483128501", + "1", + "12", + "0", + "-1", + "1786", + "0", + "21432", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283460", + "2283460", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128528", + "1483128528", + "1483130222", + "1483128528", + "1", + "12", + "0", + "-1", + "1694", + "0", + "20328", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283486", + "2283486", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128743", + "1483128743", + "1483130425", + "1483128743", + "1", + "12", + "0", + "-1", + "1682", + "0", + "20184", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283496", + "2283496", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128807", + "1483128807", + "1483130515", + "1483128807", + "1", + "12", + "0", + "-1", + "1708", + "0", + "20496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283508", + "2283508", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128901", + "1483128901", + "1483130596", + "1483128901", + "1", + "12", + "0", + "-1", + "1695", + "0", + "20340", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283522", + "2283522", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128969", + "1483128969", + "1483130675", + "1483128969", + "1", + "12", + "0", + "-1", + "1706", + "0", + "20472", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283549", + "2283549", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129245", + "1483129245", + "1483130928", + "1483129245", + "1", + "12", + "0", + "-1", + "1683", + "0", + "20196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283561", + "2283561", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129403", + "1483129403", + "1483131046", + "1483129403", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283572", + "2283572", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129642", + "1483129642", + "1483131200", + "1483129642", + "1", + "12", + "0", + "-1", + "1558", + "0", + "18696", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283578", + "2283578", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129669", + "1483129669", + "1483131409", + "1483129669", + "1", + "12", + "0", + "-1", + "1740", + "0", + "20880", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283580", + "2283580", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129684", + "1483129684", + "1483131358", + "1483129684", + "1", + "12", + "0", + "-1", + "1674", + "0", + "20088", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283613", + "2283613", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130097", + "1483130097", + "1483131727", + "1483130097", + "1", + "12", + "0", + "-1", + "1630", + "0", + "19560", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283617", + "2283617", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130106", + "1483130106", + "1483131683", + "1483130106", + "1", + "12", + "0", + "-1", + "1577", + "0", + "18924", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283635", + "2283635", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130315", + "1483130315", + "1483132105", + "1483130315", + "1", + "12", + "0", + "-1", + "1790", + "0", + "21480", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283673", + "2283673", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130599", + "1483130599", + "1483132223", + "1483130599", + "1", + "12", + "0", + "-1", + "1624", + "0", + "19488", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283677", + "2283677", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130608", + "1483130608", + "1483132170", + "1483130608", + "1", + "12", + "0", + "-1", + "1562", + "0", + "18744", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283691", + "2283691", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130700", + "1483130700", + "1483132044", + "1483130700", + "1", + "12", + "0", + "-1", + "1344", + "0", + "16128", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283703", + "2283703", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130796", + "1483130796", + "1483132336", + "1483130796", + "1", + "12", + "0", + "-1", + "1540", + "0", + "18480", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283712", + "2283712", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130907", + "1483130907", + "1483132399", + "1483130907", + "1", + "12", + "0", + "-1", + "1492", + "0", + "17904", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283714", + "2283714", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130929", + "1483130929", + "1483132529", + "1483130929", + "1", + "12", + "0", + "-1", + "1600", + "0", + "19200", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283717", + "2283717", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130965", + "1483130965", + "1483132471", + "1483130965", + "1", + "12", + "0", + "-1", + "1506", + "0", + "18072", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283719", + "2283719", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130969", + "1483130969", + "1483132326", + "1483130969", + "1", + "12", + "0", + "-1", + "1357", + "0", + "16284", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283731", + "2283731", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131086", + "1483131086", + "1483132720", + "1483131086", + "1", + "12", + "0", + "-1", + "1634", + "0", + "19608", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283735", + "2283735", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131153", + "1483131153", + "1483132834", + "1483131153", + "1", + "12", + "0", + "-1", + "1681", + "0", + "20172", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283743", + "2283743", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131216", + "1483131216", + "1483132758", + "1483131216", + "1", + "12", + "0", + "-1", + "1542", + "0", + "18504", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283750", + "2283750", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131263", + "1483131263", + "1483132663", + "1483131263", + "1", + "12", + "0", + "-1", + "1400", + "0", + "16800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283752", + "2283752", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131270", + "1483131270", + "1483132788", + "1483131270", + "1", + "12", + "0", + "-1", + "1518", + "0", + "18216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283754", + "2283754", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131274", + "1483131274", + "1483132889", + "1483131274", + "1", + "12", + "0", + "-1", + "1615", + "0", + "19380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283759", + "2283759", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131288", + "1483131288", + "1483132835", + "1483131288", + "1", + "12", + "0", + "-1", + "1547", + "0", + "18564", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283762", + "2283762", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131311", + "1483131311", + "1483132805", + "1483131311", + "1", + "12", + "0", + "-1", + "1494", + "0", + "17928", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283764", + "2283764", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131331", + "1483131331", + "1483132701", + "1483131331", + "1", + "12", + "0", + "-1", + "1370", + "0", + "16440", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283770", + "2283770", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131415", + "1483131415", + "1483133195", + "1483131415", + "1", + "12", + "0", + "-1", + "1780", + "0", + "21360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283774", + "2283774", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131473", + "1483131473", + "1483133152", + "1483131473", + "1", + "12", + "0", + "-1", + "1679", + "0", + "20148", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283776", + "2283776", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131486", + "1483131486", + "1483133156", + "1483131486", + "1", + "12", + "0", + "-1", + "1670", + "0", + "20040", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283798", + "2283798", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131848", + "1483131848", + "1483133194", + "1483131848", + "1", + "12", + "0", + "-1", + "1346", + "0", + "16152", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283802", + "2283802", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131957", + "1483131957", + "1483133600", + "1483131957", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283806", + "2283806", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131986", + "1483131986", + "1483133513", + "1483131986", + "1", + "12", + "0", + "-1", + "1527", + "0", + "18324", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283829", + "2283829", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132109", + "1483132109", + "1483133891", + "1483132109", + "1", + "12", + "0", + "-1", + "1782", + "0", + "21384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283860", + "2283860", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132429", + "1483132429", + "1483134098", + "1483132429", + "1", + "12", + "0", + "-1", + "1669", + "0", + "20028", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283867", + "2283867", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132476", + "1483132476", + "1483133987", + "1483132476", + "1", + "12", + "0", + "-1", + "1511", + "0", + "18132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283878", + "2283878", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132534", + "1483132534", + "1483134026", + "1483132534", + "1", + "12", + "0", + "-1", + "1492", + "0", + "17904", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283882", + "2283882", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132555", + "1483132555", + "1483133968", + "1483132555", + "1", + "12", + "0", + "-1", + "1413", + "0", + "16956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283890", + "2283890", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132667", + "1483132667", + "1483134205", + "1483132667", + "1", + "12", + "0", + "-1", + "1538", + "0", + "18456", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283892", + "2283892", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132688", + "1483132688", + "1483134343", + "1483132688", + "1", + "12", + "0", + "-1", + "1655", + "0", + "19860", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283902", + "2283902", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132716", + "1483132716", + "1483134389", + "1483132716", + "1", + "12", + "0", + "-1", + "1673", + "0", + "20076", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283904", + "2283904", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132725", + "1483132725", + "1483134206", + "1483132725", + "1", + "12", + "0", + "-1", + "1481", + "0", + "17772", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283908", + "2283908", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132742", + "1483132742", + "1483134205", + "1483132742", + "1", + "12", + "0", + "-1", + "1463", + "0", + "17556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283912", + "2283912", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132763", + "1483132763", + "1483134259", + "1483132763", + "1", + "12", + "0", + "-1", + "1496", + "0", + "17952", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283915", + "2283915", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132793", + "1483132793", + "1483134190", + "1483132793", + "1", + "12", + "0", + "-1", + "1397", + "0", + "16764", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283941", + "2283941", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133159", + "1483133159", + "1483134679", + "1483133159", + "1", + "12", + "0", + "-1", + "1520", + "0", + "18240", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283947", + "2283947", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133198", + "1483133198", + "1483134555", + "1483133198", + "1", + "12", + "0", + "-1", + "1357", + "0", + "16284", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283949", + "2283949", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133202", + "1483133202", + "1483134351", + "1483133202", + "1", + "12", + "0", + "-1", + "1149", + "0", + "13788", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283951", + "2283951", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133206", + "1483133206", + "1483134637", + "1483133206", + "1", + "12", + "0", + "-1", + "1431", + "0", + "17172", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283956", + "2283956", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133238", + "1483133238", + "1483134563", + "1483133238", + "1", + "12", + "0", + "-1", + "1325", + "0", + "15900", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283964", + "2283964", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133355", + "1483133355", + "1483134481", + "1483133355", + "1", + "12", + "0", + "-1", + "1126", + "0", + "13512", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283968", + "2283968", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133364", + "1483133364", + "1483134684", + "1483133364", + "1", + "12", + "0", + "-1", + "1320", + "0", + "15840", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283975", + "2283975", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133462", + "1483133462", + "1483135149", + "1483133462", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283999", + "2283999", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133758", + "1483133758", + "1483135484", + "1483133758", + "1", + "12", + "0", + "-1", + "1726", + "0", + "20712", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284014", + "2284014", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133944", + "1483133944", + "1483135463", + "1483133944", + "1", + "12", + "0", + "-1", + "1519", + "0", + "18228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284016", + "2284016", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133949", + "1483133949", + "1483135736", + "1483133949", + "1", + "12", + "0", + "-1", + "1787", + "0", + "21444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284033", + "2284033", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134030", + "1483134030", + "1483135826", + "1483134030", + "1", + "12", + "0", + "-1", + "1796", + "0", + "21552", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284087", + "2284087", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134410", + "1483134410", + "1483136124", + "1483134410", + "1", + "12", + "0", + "-1", + "1714", + "0", + "20568", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284095", + "2284095", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134484", + "1483134484", + "1483136060", + "1483134484", + "1", + "12", + "0", + "-1", + "1576", + "0", + "18912", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284101", + "2284101", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134558", + "1483134558", + "1483136127", + "1483134558", + "1", + "12", + "0", + "-1", + "1569", + "0", + "18828", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284105", + "2284105", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134571", + "1483134571", + "1483136221", + "1483134571", + "1", + "12", + "0", + "-1", + "1650", + "0", + "19800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284132", + "2284132", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134777", + "1483134777", + "1483136565", + "1483134777", + "1", + "12", + "0", + "-1", + "1788", + "0", + "21456", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284134", + "2284134", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134802", + "1483134802", + "1483136495", + "1483134802", + "1", + "12", + "0", + "-1", + "1693", + "0", + "20316", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284141", + "2284141", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134887", + "1483134887", + "1483136483", + "1483134887", + "1", + "12", + "0", + "-1", + "1596", + "0", + "19152", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284203", + "2284203", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135744", + "1483135744", + "1483137452", + "1483135744", + "1", + "12", + "0", + "-1", + "1708", + "0", + "20496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284208", + "2284208", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135817", + "1483135817", + "1483137572", + "1483135817", + "1", + "12", + "0", + "-1", + "1755", + "0", + "21060", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284215", + "2284215", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135902", + "1483135902", + "1483137478", + "1483135902", + "1", + "12", + "0", + "-1", + "1576", + "0", + "18912", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284261", + "2284261", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483136211", + "1483136211", + "1483137947", + "1483136211", + "1", + "12", + "0", + "-1", + "1736", + "0", + "20832", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284280", + "2284280", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483136370", + "1483136370", + "1483137799", + "1483136370", + "1", + "12", + "0", + "-1", + "1429", + "0", + "17148", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284282", + "2284282", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483136388", + "1483136388", + "1483137959", + "1483136388", + "1", + "12", + "0", + "-1", + "1571", + "0", + "18852", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284295", + "2284295", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483136498", + "1483136498", + "1483138048", + "1483136498", + "1", + "12", + "0", + "-1", + "1550", + "0", + "18600", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284345", + "2284345", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137049", + "1483137049", + "1483138706", + "1483137049", + "1", + "12", + "0", + "-1", + "1657", + "0", + "19884", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284347", + "2284347", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137056", + "1483137056", + "1483138736", + "1483137056", + "1", + "12", + "0", + "-1", + "1680", + "0", + "20160", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284351", + "2284351", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137072", + "1483137072", + "1483138847", + "1483137072", + "1", + "12", + "0", + "-1", + "1775", + "0", + "21300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284353", + "2284353", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137097", + "1483137097", + "1483138685", + "1483137097", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284378", + "2284378", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137346", + "1483137346", + "1483138830", + "1483137346", + "1", + "12", + "0", + "-1", + "1484", + "0", + "17808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284386", + "2284386", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137483", + "1483137483", + "1483138777", + "1483137483", + "1", + "12", + "0", + "-1", + "1294", + "0", + "15528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284393", + "2284393", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137578", + "1483137578", + "1483139012", + "1483137578", + "1", + "12", + "0", + "-1", + "1434", + "0", + "17208", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284407", + "2284407", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137720", + "1483137720", + "1483139040", + "1483137720", + "1", + "12", + "0", + "-1", + "1320", + "0", + "15840", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284412", + "2284412", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137797", + "1483137797", + "1483139454", + "1483137797", + "1", + "12", + "0", + "-1", + "1657", + "0", + "19884", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284416", + "2284416", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137813", + "1483137813", + "1483139452", + "1483137813", + "1", + "12", + "0", + "-1", + "1639", + "0", + "19668", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284428", + "2284428", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137959", + "1483137959", + "1483139609", + "1483137959", + "1", + "12", + "0", + "-1", + "1650", + "0", + "19800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284444", + "2284444", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138070", + "1483138070", + "1483139464", + "1483138070", + "1", + "12", + "0", + "-1", + "1394", + "0", + "16728", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284455", + "2284455", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138174", + "1483138174", + "1483139673", + "1483138174", + "1", + "12", + "0", + "-1", + "1499", + "0", + "17988", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284473", + "2284473", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138325", + "1483138325", + "1483139870", + "1483138325", + "1", + "12", + "0", + "-1", + "1545", + "0", + "18540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284477", + "2284477", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138378", + "1483138378", + "1483140113", + "1483138378", + "1", + "12", + "0", + "-1", + "1735", + "0", + "20820", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284479", + "2284479", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138411", + "1483138411", + "1483139970", + "1483138411", + "1", + "12", + "0", + "-1", + "1559", + "0", + "18708", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284499", + "2284499", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138559", + "1483138559", + "1483140184", + "1483138559", + "1", + "12", + "0", + "-1", + "1625", + "0", + "19500", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284519", + "2284519", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138691", + "1483138691", + "1483140191", + "1483138691", + "1", + "12", + "0", + "-1", + "1500", + "0", + "18000", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284531", + "2284531", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138775", + "1483138775", + "1483140539", + "1483138775", + "1", + "12", + "0", + "-1", + "1764", + "0", + "21168", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284533", + "2284533", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138779", + "1483138779", + "1483140236", + "1483138779", + "1", + "12", + "0", + "-1", + "1457", + "0", + "17484", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284552", + "2284552", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138889", + "1483138889", + "1483140484", + "1483138889", + "1", + "12", + "0", + "-1", + "1595", + "0", + "19140", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284563", + "2284563", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139044", + "1483139044", + "1483140410", + "1483139044", + "1", + "12", + "0", + "-1", + "1366", + "0", + "16392", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284581", + "2284581", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139253", + "1483139253", + "1483140706", + "1483139253", + "1", + "12", + "0", + "-1", + "1453", + "0", + "17436", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284587", + "2284587", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139313", + "1483139313", + "1483140790", + "1483139313", + "1", + "12", + "0", + "-1", + "1477", + "0", + "17724", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284590", + "2284590", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139369", + "1483139369", + "1483140917", + "1483139369", + "1", + "12", + "0", + "-1", + "1548", + "0", + "18576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284594", + "2284594", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139420", + "1483139420", + "1483140855", + "1483139420", + "1", + "12", + "0", + "-1", + "1435", + "0", + "17220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284601", + "2284601", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139468", + "1483139468", + "1483141004", + "1483139468", + "1", + "12", + "0", + "-1", + "1536", + "0", + "18432", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284603", + "2284603", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139473", + "1483139473", + "1483140853", + "1483139473", + "1", + "12", + "0", + "-1", + "1380", + "0", + "16560", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284606", + "2284606", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139516", + "1483139516", + "1483140881", + "1483139516", + "1", + "12", + "0", + "-1", + "1365", + "0", + "16380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284608", + "2284608", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139532", + "1483139532", + "1483141146", + "1483139532", + "1", + "12", + "0", + "-1", + "1614", + "0", + "19368", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284610", + "2284610", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139538", + "1483139538", + "1483141303", + "1483139538", + "1", + "12", + "0", + "-1", + "1765", + "0", + "21180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284612", + "2284612", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139543", + "1483139543", + "1483140985", + "1483139543", + "1", + "12", + "0", + "-1", + "1442", + "0", + "17304", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284614", + "2284614", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139570", + "1483139570", + "1483141082", + "1483139570", + "1", + "12", + "0", + "-1", + "1512", + "0", + "18144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284638", + "2284638", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139949", + "1483139949", + "1483141671", + "1483139949", + "1", + "12", + "0", + "-1", + "1722", + "0", + "20664", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284642", + "2284642", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139976", + "1483139976", + "1483141739", + "1483139976", + "1", + "12", + "0", + "-1", + "1763", + "0", + "21156", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284729", + "2284729", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140598", + "1483140598", + "1483142378", + "1483140598", + "1", + "12", + "0", + "-1", + "1780", + "0", + "21360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284739", + "2284739", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140695", + "1483140695", + "1483142175", + "1483140695", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284743", + "2284743", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140713", + "1483140713", + "1483142270", + "1483140713", + "1", + "12", + "0", + "-1", + "1557", + "0", + "18684", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284746", + "2284746", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140746", + "1483140746", + "1483142264", + "1483140746", + "1", + "12", + "0", + "-1", + "1518", + "0", + "18216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284752", + "2284752", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140806", + "1483140806", + "1483142339", + "1483140806", + "1", + "12", + "0", + "-1", + "1533", + "0", + "18396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284787", + "2284787", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141050", + "1483141050", + "1483142743", + "1483141050", + "1", + "12", + "0", + "-1", + "1693", + "0", + "20316", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284791", + "2284791", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141063", + "1483141063", + "1483142613", + "1483141063", + "1", + "12", + "0", + "-1", + "1550", + "0", + "18600", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284794", + "2284794", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141086", + "1483141086", + "1483142778", + "1483141086", + "1", + "12", + "0", + "-1", + "1692", + "0", + "20304", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284815", + "2284815", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141399", + "1483141399", + "1483142859", + "1483141399", + "1", + "12", + "0", + "-1", + "1460", + "0", + "17520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284820", + "2284820", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141433", + "1483141433", + "1483142861", + "1483141433", + "1", + "12", + "0", + "-1", + "1428", + "0", + "17136", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284841", + "2284841", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141813", + "1483141813", + "1483143480", + "1483141813", + "1", + "12", + "0", + "-1", + "1667", + "0", + "20004", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284849", + "2284849", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483142032", + "1483142032", + "1483143678", + "1483142032", + "1", + "12", + "0", + "-1", + "1646", + "0", + "19752", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284861", + "2284861", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483142150", + "1483142150", + "1483143931", + "1483142150", + "1", + "12", + "0", + "-1", + "1781", + "0", + "21372", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284869", + "2284869", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483142222", + "1483142222", + "1483143981", + "1483142222", + "1", + "12", + "0", + "-1", + "1759", + "0", + "21108", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6110882", + "6110882", + "Robertson", + "UTC", + "", + "Stint, Little", + "Screwdriver", + "green-grape", + "1483121066", + "1483121066", + "1483121375", + "1483121066", + "1", + "12", + "0", + "-1", + "309", + "0", + "3708", + "0", + "0:0", + "CANCELLED by 284980", + "12", + "2147486448Mn", + "3600", + "potbrood", + "Mathematical and Physical Sciences", + "Astronomical Sciences", + "Galactic Astronomy" + ], + [ + "6111541", + "6111541", + "Robertson", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "green-grape", + "1483129553", + "1483129553", + "1483131190", + "1483129553", + "1", + "12", + "0", + "-1", + "1637", + "0", + "19644", + "0", + "0:0", + "COMPLETED", + "12", + "2147486448Mn", + "3600", + "potbrood", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "6111777", + "6111777", + "Robertson", + "UTC", + "", + "Warbler, Sardinian", + "Screwdriver", + "green-grape", + "1483130935", + "1483130935", + "1483132386", + "1483130935", + "1", + "12", + "0", + "-1", + "1451", + "0", + "17412", + "0", + "0:0", + "COMPLETED", + "12", + "2147486448Mn", + "3600", + "potbrood", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "6108322", + "6108322", + "Robertson", + "UTC", + "", + "Partridge, Red-legged", + "Screwdriver", + "green-grape", + "1483056653", + "1483056653", + "1483056887", + "1483056653", + "1", + "16", + "0", + "-1", + "234", + "0", + "3744", + "0", + "0:0", + "COMPLETED", + "16", + "2147486448Mn", + "3600", + "potbrood", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Law and Social Sciences" + ], + [ + "6108327", + "6108327", + "Robertson", + "UTC", + "", + "Warbler, Golden-winged", + "Screwdriver", + "green-grape", + "1483057009", + "1483057009", + "1483057050", + "1483057009", + "2", + "24", + "0", + "-1", + "41", + "0", + "984", + "0", + "0:0", + "CANCELLED by 333296", + "24", + "2147486448Mn", + "3600", + "potbrood", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Economics" + ], + [ + "181610", + "181610", + "Phillips", + "UTC", + "", + "Swift, Alpine", + "Screwdriver", + "coconut-cream", + "1483133995", + "1483133995", + "1483134352", + "1483133995", + "4", + "32", + "0", + "-1", + "357", + "0", + "11424", + "0", + "0:0", + "COMPLETED", + "32", + "7000Mn", + "37800", + "crumpet", + "Mathematical and Physical Sciences", + "Chemistry", + "Organic and Macromolecular Chemistry" + ], + [ + "181778", + "181778", + "Phillips", + "UTC", + "", + "Swift, Alpine", + "Screwdriver", + "coconut-cream", + "1483135368", + "1483135368", + "1483135473", + "1483135368", + "8", + "64", + "0", + "-1", + "105", + "0", + "6720", + "0", + "0:0", + "COMPLETED", + "64", + "7000Mn", + "37800", + "crumpet", + "Mathematical and Physical Sciences", + "Chemistry", + "Organic and Macromolecular Chemistry" + ], + [ + "6110473", + "6110473", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118705", + "1483118707", + "1483118934", + "1483118705", + "1", + "1", + "0", + "-1", + "227", + "2", + "227", + "0", + "0:0", + "CANCELLED by 425535", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6110475", + "6110475", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118717", + "1483118724", + "1483119004", + "1483118717", + "1", + "1", + "0", + "-1", + "280", + "7", + "280", + "0", + "0:0", + "CANCELLED by 425535", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6108787", + "6108787", + "Robertson", + "UTC", + "", + "Moorhen", + "Screwdriver", + "curry", + "1483074101", + "1483074118", + "1483074878", + "1483074101", + "1", + "1", + "0", + "-1", + "760", + "17", + "760", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "19800", + "white", + "Computer and Information Science and Engineering", + "Microelectronic Information Processing Systems", + "Systems Prototyping and Fabrication" + ], + [ + "1009174", + "1009174", + "Posidriv", + "UTC", + "", + "Sparrow, Savannah", + "Screwdriver", + "banana-cream", + "1483121514", + "1483121536", + "1483121627", + "1483121514", + "1", + "1", + "0", + "-1", + "91", + "22", + "91", + "0", + "0:0", + "COMPLETED", + "1", + "40000Mn", + "86400", + "cornbread", + "Mathematical and Physical Sciences", + "Astronomical Sciences", + "Galactic Astronomy" + ], + [ + "1004599", + "1004599", + "Posidriv", + "UTC", + "", + "Sparrow, Savannah", + "Screwdriver", + "bavarian-cream", + "1483060706", + "1483060708", + "1483060780", + "1483060706", + "1", + "1", + "0", + "-1", + "72", + "2", + "72", + "0", + "0:0", + "COMPLETED", + "1", + "40000Mn", + "86400", + "cornbread", + "Mathematical and Physical Sciences", + "Astronomical Sciences", + "Galactic Astronomy" + ], + [ + "6109629[4]", + "6109629", + "Robertson", + "UTC", + "", + "Treecreeper, Short-toed", + "Screwdriver", + "green-grape", + "1483109925", + "1483109926", + "1483111176", + "1483109926", + "1", + "1", + "0", + "-1", + "1250", + "1", + "1250", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Biological Sciences", + "Molecular Biosciences", + "Cell Biology" + ], + [ + "6109629[1]", + "6109630", + "Robertson", + "UTC", + "", + "Treecreeper, Short-toed", + "Screwdriver", + "green-grape", + "1483109925", + "1483109926", + "1483110239", + "1483109926", + "1", + "1", + "0", + "-1", + "313", + "1", + "313", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Biological Sciences", + "Molecular Biosciences", + "Cell Biology" + ], + [ + "6109629[2]", + "6109631", + "Robertson", + "UTC", + "", + "Treecreeper, Short-toed", + "Screwdriver", + "green-grape", + "1483109925", + "1483109926", + "1483110554", + "1483109926", + "1", + "1", + "0", + "-1", + "628", + "1", + "628", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Biological Sciences", + "Molecular Biosciences", + "Cell Biology" + ], + [ + "6109629[3]", + "6109632", + "Robertson", + "UTC", + "", + "Treecreeper, Short-toed", + "Screwdriver", + "green-grape", + "1483109925", + "1483109926", + "1483110865", + "1483109926", + "1", + "1", + "0", + "-1", + "939", + "1", + "939", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Biological Sciences", + "Molecular Biosciences", + "Cell Biology" + ], + [ + "6109116", + "6109116", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483095768", + "1483095789", + "1483095843", + "1483095768", + "1", + "1", + "0", + "-1", + "54", + "21", + "54", + "0", + "0:0", + "COMPLETED", + "1", + "2000Mn", + "18000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110898[19]", + "6110911", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483121756", + "1483121757", + "1483123058", + "1483121756", + "1", + "1", + "0", + "-1", + "1301", + "1", + "1301", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6108553", + "6108553", + "Robertson", + "UTC", + "", + "Warbler, Golden-winged", + "Screwdriver", + "green-grape", + "1483064928", + "1483064930", + "1483065048", + "1483064928", + "1", + "1", + "0", + "-1", + "118", + "2", + "118", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "3600", + "potbrood", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Economics" + ], + [ + "968141", + "968141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055965", + "1483055966", + "1483056017", + "1483055965", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968149", + "968149", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055991", + "1483055992", + "1483056023", + "1483055991", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968155", + "968155", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056006", + "1483056007", + "1483056052", + "1483056006", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968157", + "968157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056008", + "1483056010", + "1483056051", + "1483056008", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968159", + "968159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056018", + "1483056019", + "1483056058", + "1483056018", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968165", + "968165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056025", + "1483056027", + "1483056077", + "1483056025", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968169", + "968169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056052", + "1483056055", + "1483056089", + "1483056052", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968173", + "968173", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056059", + "1483056061", + "1483056098", + "1483056059", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968175", + "968175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056071", + "1483056072", + "1483056108", + "1483056071", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968197", + "968197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056141", + "1483056142", + "1483056185", + "1483056141", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968214", + "968214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056186", + "1483056187", + "1483056229", + "1483056186", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968226", + "968226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056230", + "1483056231", + "1483056284", + "1483056230", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968230", + "968230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056235", + "1483056238", + "1483056292", + "1483056235", + "1", + "8", + "0", + "-1", + "54", + "3", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968236", + "968236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056261", + "1483056262", + "1483056300", + "1483056261", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968246", + "968246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056288", + "1483056291", + "1483056331", + "1483056288", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968248", + "968248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056293", + "1483056295", + "1483056365", + "1483056293", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968250", + "968250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056300", + "1483056301", + "1483056364", + "1483056300", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968256", + "968256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056309", + "1483056311", + "1483056345", + "1483056309", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968258", + "968258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056312", + "1483056314", + "1483056385", + "1483056312", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968264", + "968264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056345", + "1483056346", + "1483056379", + "1483056345", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968266", + "968266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056364", + "1483056365", + "1483056399", + "1483056364", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968270", + "968270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056366", + "1483056368", + "1483056410", + "1483056366", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968280", + "968280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056410", + "1483056411", + "1483056441", + "1483056410", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968288", + "968288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056440", + "1483056441", + "1483056485", + "1483056440", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968306", + "968306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056485", + "1483056486", + "1483056536", + "1483056485", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968320", + "968320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056537", + "1483056538", + "1483056592", + "1483056537", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968322", + "968322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056539", + "1483056541", + "1483056578", + "1483056539", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968324", + "968324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056542", + "1483056544", + "1483056589", + "1483056542", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968326", + "968326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056555", + "1483056556", + "1483056609", + "1483056555", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968330", + "968330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056557", + "1483056559", + "1483056598", + "1483056557", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968338", + "968338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056593", + "1483056595", + "1483056637", + "1483056593", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968340", + "968340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056599", + "1483056600", + "1483056661", + "1483056599", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968342", + "968342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056605", + "1483056606", + "1483056657", + "1483056605", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968344", + "968344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056610", + "1483056611", + "1483056752", + "1483056610", + "1", + "8", + "0", + "-1", + "141", + "1", + "1128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968346", + "968346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056616", + "1483056617", + "1483056655", + "1483056616", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968348", + "968348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056619", + "1483056620", + "1483056693", + "1483056619", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968350", + "968350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056637", + "1483056638", + "1483056683", + "1483056637", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968358", + "968358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056662", + "1483056663", + "1483056707", + "1483056662", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968364", + "968364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056683", + "1483056684", + "1483056732", + "1483056683", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968379", + "968379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056724", + "1483056725", + "1483056764", + "1483056724", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968385", + "968385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056734", + "1483056735", + "1483056779", + "1483056734", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968387", + "968387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056735", + "1483056736", + "1483056776", + "1483056735", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968393", + "968393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056757", + "1483056759", + "1483056827", + "1483056757", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968395", + "968395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056764", + "1483056765", + "1483056815", + "1483056764", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968403", + "968403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056801", + "1483056802", + "1483056835", + "1483056801", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968417", + "968417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056836", + "1483056838", + "1483056874", + "1483056836", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968433", + "968433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056875", + "1483056876", + "1483056907", + "1483056875", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968435", + "968435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056877", + "1483056878", + "1483056964", + "1483056877", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968441", + "968441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056883", + "1483056884", + "1483056944", + "1483056883", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968443", + "968443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056884", + "1483056887", + "1483056917", + "1483056884", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968454", + "968454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056914", + "1483056915", + "1483056972", + "1483056914", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968456", + "968456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056918", + "1483056919", + "1483056977", + "1483056918", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968469", + "968469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056956", + "1483056957", + "1483057004", + "1483056956", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968471", + "968471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056964", + "1483056965", + "1483057009", + "1483056964", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968473", + "968473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056968", + "1483056969", + "1483057001", + "1483056968", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968475", + "968475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056973", + "1483056974", + "1483057048", + "1483056973", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968477", + "968477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056975", + "1483056977", + "1483057049", + "1483056975", + "1", + "8", + "0", + "-1", + "72", + "2", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968479", + "968479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056978", + "1483056980", + "1483057127", + "1483056978", + "1", + "8", + "0", + "-1", + "147", + "2", + "1176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968483", + "968483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057001", + "1483057002", + "1483057078", + "1483057001", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968485", + "968485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057004", + "1483057005", + "1483057080", + "1483057004", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968487", + "968487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057009", + "1483057010", + "1483057047", + "1483057009", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968491", + "968491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057049", + "1483057050", + "1483057081", + "1483057049", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968493", + "968493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057050", + "1483057051", + "1483057083", + "1483057050", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968496", + "968496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057077", + "1483057078", + "1483057117", + "1483057077", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968498", + "968498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057079", + "1483057081", + "1483057115", + "1483057079", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968502", + "968502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057082", + "1483057084", + "1483057142", + "1483057082", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968520", + "968520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057144", + "1483057146", + "1483057185", + "1483057144", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968540", + "968540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057221", + "1483057222", + "1483057252", + "1483057221", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968556", + "968556", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057283", + "1483057284", + "1483057333", + "1483057283", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968562", + "968562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057298", + "1483057299", + "1483057345", + "1483057298", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968564", + "968564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057299", + "1483057300", + "1483057348", + "1483057299", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968566", + "968566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057303", + "1483057304", + "1483057345", + "1483057303", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968568", + "968568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057313", + "1483057315", + "1483057388", + "1483057313", + "1", + "8", + "0", + "-1", + "73", + "2", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968570", + "968570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057321", + "1483057322", + "1483057394", + "1483057321", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968574", + "968574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057333", + "1483057335", + "1483057374", + "1483057333", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968584", + "968584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057349", + "1483057350", + "1483057404", + "1483057349", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968592", + "968592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057377", + "1483057378", + "1483057415", + "1483057377", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968598", + "968598", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057395", + "1483057396", + "1483057438", + "1483057395", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968602", + "968602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057402", + "1483057403", + "1483057437", + "1483057402", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968604", + "968604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057404", + "1483057406", + "1483057439", + "1483057404", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968614", + "968614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057439", + "1483057441", + "1483057512", + "1483057439", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968616", + "968616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057443", + "1483057444", + "1483057515", + "1483057443", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968620", + "968620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057462", + "1483057463", + "1483057513", + "1483057462", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968622", + "968622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057476", + "1483057477", + "1483057554", + "1483057476", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968624", + "968624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057504", + "1483057505", + "1483057581", + "1483057504", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968628", + "968628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057513", + "1483057515", + "1483057575", + "1483057513", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968650", + "968650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057597", + "1483057600", + "1483057655", + "1483057597", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968656", + "968656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057631", + "1483057633", + "1483057686", + "1483057631", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968660", + "968660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057648", + "1483057649", + "1483057704", + "1483057648", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968662", + "968662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057655", + "1483057656", + "1483057719", + "1483057655", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968664", + "968664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057658", + "1483057659", + "1483057841", + "1483057658", + "1", + "8", + "0", + "-1", + "182", + "1", + "1456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968668", + "968668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057667", + "1483057669", + "1483057730", + "1483057667", + "1", + "8", + "0", + "-1", + "61", + "2", + "488", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968670", + "968670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057683", + "1483057684", + "1483057776", + "1483057683", + "1", + "8", + "0", + "-1", + "92", + "1", + "736", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968672", + "968672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057686", + "1483057687", + "1483057735", + "1483057686", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968674", + "968674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057704", + "1483057705", + "1483057742", + "1483057704", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968676", + "968676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057719", + "1483057720", + "1483057767", + "1483057719", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968684", + "968684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057755", + "1483057756", + "1483057793", + "1483057755", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968688", + "968688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057766", + "1483057767", + "1483057799", + "1483057766", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968690", + "968690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057768", + "1483057770", + "1483057822", + "1483057768", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968708", + "968708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057823", + "1483057825", + "1483057857", + "1483057823", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968710", + "968710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057828", + "1483057829", + "1483057903", + "1483057828", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968714", + "968714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057842", + "1483057843", + "1483057914", + "1483057842", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968720", + "968720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057857", + "1483057860", + "1483057890", + "1483057857", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968738", + "968738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057914", + "1483057915", + "1483057952", + "1483057914", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968746", + "968746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057929", + "1483057931", + "1483057970", + "1483057929", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968752", + "968752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057938", + "1483057939", + "1483057970", + "1483057938", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968754", + "968754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057941", + "1483057942", + "1483057972", + "1483057941", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968758", + "968758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057951", + "1483057952", + "1483057988", + "1483057951", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968760", + "968760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057953", + "1483057955", + "1483058024", + "1483057953", + "1", + "8", + "0", + "-1", + "69", + "2", + "552", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968762", + "968762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057970", + "1483057971", + "1483058028", + "1483057970", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968778", + "968778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058020", + "1483058023", + "1483058057", + "1483058020", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968802", + "968802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058069", + "1483058070", + "1483058191", + "1483058069", + "1", + "8", + "0", + "-1", + "121", + "1", + "968", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968804", + "968804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058081", + "1483058082", + "1483058115", + "1483058081", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968806", + "968806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058085", + "1483058086", + "1483058117", + "1483058085", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968808", + "968808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058093", + "1483058095", + "1483058133", + "1483058093", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968811", + "968811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058094", + "1483058095", + "1483058129", + "1483058094", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968813", + "968813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058097", + "1483058098", + "1483058134", + "1483058097", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968819", + "968819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058130", + "1483058131", + "1483058166", + "1483058130", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968821", + "968821", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058133", + "1483058134", + "1483058181", + "1483058133", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968831", + "968831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058166", + "1483058167", + "1483058208", + "1483058166", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968837", + "968837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058178", + "1483058180", + "1483058217", + "1483058178", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968839", + "968839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058181", + "1483058183", + "1483058218", + "1483058181", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968841", + "968841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058192", + "1483058193", + "1483058246", + "1483058192", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968845", + "968845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058199", + "1483058201", + "1483058261", + "1483058199", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968851", + "968851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058217", + "1483058218", + "1483058283", + "1483058217", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968853", + "968853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058219", + "1483058220", + "1483058282", + "1483058219", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968855", + "968855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058246", + "1483058247", + "1483058278", + "1483058246", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968866", + "968866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058284", + "1483058286", + "1483058334", + "1483058284", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968886", + "968886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058337", + "1483058338", + "1483058385", + "1483058337", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968892", + "968892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058360", + "1483058361", + "1483058489", + "1483058360", + "1", + "8", + "0", + "-1", + "128", + "1", + "1024", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968894", + "968894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058363", + "1483058364", + "1483058399", + "1483058363", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968902", + "968902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058398", + "1483058399", + "1483058459", + "1483058398", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968904", + "968904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058399", + "1483058402", + "1483058432", + "1483058399", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968906", + "968906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058418", + "1483058419", + "1483058461", + "1483058418", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968908", + "968908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058431", + "1483058432", + "1483058462", + "1483058431", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968910", + "968910", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058433", + "1483058435", + "1483058473", + "1483058433", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968914", + "968914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058460", + "1483058461", + "1483058493", + "1483058460", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968916", + "968916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058461", + "1483058462", + "1483058504", + "1483058461", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968918", + "968918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058463", + "1483058464", + "1483058529", + "1483058463", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968922", + "968922", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058480", + "1483058481", + "1483058516", + "1483058480", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968930", + "968930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058504", + "1483058505", + "1483058554", + "1483058504", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968936", + "968936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058517", + "1483058518", + "1483058556", + "1483058517", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968938", + "968938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058518", + "1483058520", + "1483058622", + "1483058518", + "1", + "8", + "0", + "-1", + "102", + "2", + "816", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968940", + "968940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058530", + "1483058531", + "1483058578", + "1483058530", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968942", + "968942", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058555", + "1483058556", + "1483058607", + "1483058555", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968944", + "968944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058557", + "1483058558", + "1483058641", + "1483058557", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968946", + "968946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058558", + "1483058559", + "1483058629", + "1483058558", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968950", + "968950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058564", + "1483058565", + "1483058635", + "1483058564", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968964", + "968964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058635", + "1483058636", + "1483058710", + "1483058635", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968978", + "968978", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058685", + "1483058686", + "1483058769", + "1483058685", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968980", + "968980", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058688", + "1483058689", + "1483058771", + "1483058688", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968982", + "968982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058691", + "1483058692", + "1483058782", + "1483058691", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968986", + "968986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058709", + "1483058710", + "1483058778", + "1483058709", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968988", + "968988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058710", + "1483058711", + "1483058807", + "1483058710", + "1", + "8", + "0", + "-1", + "96", + "1", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968994", + "968994", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058771", + "1483058773", + "1483058827", + "1483058771", + "1", + "8", + "0", + "-1", + "54", + "2", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969000", + "969000", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058808", + "1483058809", + "1483058844", + "1483058808", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969002", + "969002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058826", + "1483058827", + "1483058860", + "1483058826", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969004", + "969004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058827", + "1483058830", + "1483058902", + "1483058827", + "1", + "8", + "0", + "-1", + "72", + "3", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969006", + "969006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058832", + "1483058833", + "1483058897", + "1483058832", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969008", + "969008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058838", + "1483058839", + "1483058910", + "1483058838", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969012", + "969012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058844", + "1483058845", + "1483058887", + "1483058844", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969014", + "969014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058846", + "1483058848", + "1483058913", + "1483058846", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969026", + "969026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058898", + "1483058900", + "1483058958", + "1483058898", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969028", + "969028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058903", + "1483058904", + "1483058978", + "1483058903", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969032", + "969032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058914", + "1483058915", + "1483058963", + "1483058914", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969034", + "969034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058922", + "1483058923", + "1483058988", + "1483058922", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969040", + "969040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058958", + "1483058959", + "1483059100", + "1483058958", + "1", + "8", + "0", + "-1", + "141", + "1", + "1128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969042", + "969042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058963", + "1483058964", + "1483059100", + "1483058963", + "1", + "8", + "0", + "-1", + "136", + "1", + "1088", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969046", + "969046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058978", + "1483058979", + "1483059107", + "1483058978", + "1", + "8", + "0", + "-1", + "128", + "1", + "1024", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969048", + "969048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058988", + "1483058989", + "1483059109", + "1483058988", + "1", + "8", + "0", + "-1", + "120", + "1", + "960", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969054", + "969054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059071", + "1483059072", + "1483059211", + "1483059071", + "1", + "8", + "0", + "-1", + "139", + "1", + "1112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969058", + "969058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059100", + "1483059101", + "1483059235", + "1483059100", + "1", + "8", + "0", + "-1", + "134", + "1", + "1072", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969064", + "969064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059109", + "1483059110", + "1483059226", + "1483059109", + "1", + "8", + "0", + "-1", + "116", + "1", + "928", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969082", + "969082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059238", + "1483059239", + "1483059405", + "1483059238", + "1", + "8", + "0", + "-1", + "166", + "1", + "1328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969086", + "969086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059293", + "1483059295", + "1483059343", + "1483059293", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969090", + "969090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059343", + "1483059344", + "1483059393", + "1483059343", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969094", + "969094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059378", + "1483059379", + "1483059419", + "1483059378", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969096", + "969096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059385", + "1483059386", + "1483059440", + "1483059385", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969098", + "969098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059393", + "1483059394", + "1483059447", + "1483059393", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969100", + "969100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059396", + "1483059397", + "1483059452", + "1483059396", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969104", + "969104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059406", + "1483059407", + "1483059456", + "1483059406", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969106", + "969106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059420", + "1483059421", + "1483059468", + "1483059420", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969108", + "969108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059441", + "1483059442", + "1483059489", + "1483059441", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969110", + "969110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059448", + "1483059449", + "1483059497", + "1483059448", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969112", + "969112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059453", + "1483059454", + "1483059494", + "1483059453", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969114", + "969114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059457", + "1483059458", + "1483059500", + "1483059457", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969116", + "969116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059468", + "1483059469", + "1483059522", + "1483059468", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969122", + "969122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059490", + "1483059491", + "1483059633", + "1483059490", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969130", + "969130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059523", + "1483059524", + "1483059564", + "1483059523", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969132", + "969132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059539", + "1483059540", + "1483059612", + "1483059539", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969134", + "969134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059563", + "1483059564", + "1483059637", + "1483059563", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969136", + "969136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059565", + "1483059567", + "1483059606", + "1483059565", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969142", + "969142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059597", + "1483059598", + "1483059676", + "1483059597", + "1", + "8", + "0", + "-1", + "78", + "1", + "624", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969144", + "969144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059603", + "1483059604", + "1483059680", + "1483059603", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969164", + "969164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059678", + "1483059680", + "1483059776", + "1483059678", + "1", + "8", + "0", + "-1", + "96", + "2", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969168", + "969168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059685", + "1483059686", + "1483059854", + "1483059685", + "1", + "8", + "0", + "-1", + "168", + "1", + "1344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969170", + "969170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059705", + "1483059706", + "1483059761", + "1483059705", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969172", + "969172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059707", + "1483059709", + "1483059755", + "1483059707", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969178", + "969178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059726", + "1483059727", + "1483059794", + "1483059726", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969180", + "969180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059755", + "1483059756", + "1483059826", + "1483059755", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969182", + "969182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059761", + "1483059762", + "1483059815", + "1483059761", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969184", + "969184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059776", + "1483059777", + "1483059819", + "1483059776", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969186", + "969186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059794", + "1483059795", + "1483059830", + "1483059794", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969188", + "969188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059815", + "1483059816", + "1483059891", + "1483059815", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969190", + "969190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059817", + "1483059819", + "1483059894", + "1483059817", + "1", + "8", + "0", + "-1", + "75", + "2", + "600", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969192", + "969192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059820", + "1483059822", + "1483059882", + "1483059820", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969196", + "969196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059831", + "1483059832", + "1483059893", + "1483059831", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969210", + "969210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059892", + "1483059893", + "1483059973", + "1483059892", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969212", + "969212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059893", + "1483059894", + "1483059985", + "1483059893", + "1", + "8", + "0", + "-1", + "91", + "1", + "728", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969220", + "969220", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059901", + "1483059902", + "1483059998", + "1483059901", + "1", + "8", + "0", + "-1", + "96", + "1", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969228", + "969228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059974", + "1483059975", + "1483060014", + "1483059974", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969234", + "969234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059999", + "1483060002", + "1483060032", + "1483059999", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969237", + "969237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060000", + "1483060002", + "1483060048", + "1483060000", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969239", + "969239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060014", + "1483060015", + "1483060045", + "1483060014", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969249", + "969249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060049", + "1483060051", + "1483060098", + "1483060049", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969253", + "969253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060061", + "1483060063", + "1483060095", + "1483060061", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969255", + "969255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060066", + "1483060067", + "1483060139", + "1483060066", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969261", + "969261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060077", + "1483060078", + "1483060125", + "1483060077", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969265", + "969265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060095", + "1483060096", + "1483060175", + "1483060095", + "1", + "8", + "0", + "-1", + "79", + "1", + "632", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969267", + "969267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060098", + "1483060099", + "1483060129", + "1483060098", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969271", + "969271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060121", + "1483060122", + "1483060161", + "1483060121", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969273", + "969273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060126", + "1483060127", + "1483060171", + "1483060126", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969277", + "969277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060137", + "1483060138", + "1483060182", + "1483060137", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969279", + "969279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060140", + "1483060141", + "1483060172", + "1483060140", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969281", + "969281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060155", + "1483060156", + "1483060191", + "1483060155", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969295", + "969295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060191", + "1483060192", + "1483060225", + "1483060191", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969297", + "969297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060209", + "1483060210", + "1483060248", + "1483060209", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969299", + "969299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060215", + "1483060216", + "1483060281", + "1483060215", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969301", + "969301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060218", + "1483060219", + "1483060287", + "1483060218", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969303", + "969303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060223", + "1483060224", + "1483060296", + "1483060223", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969305", + "969305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060224", + "1483060225", + "1483060367", + "1483060224", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969323", + "969323", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060316", + "1483060317", + "1483060351", + "1483060316", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969325", + "969325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060318", + "1483060320", + "1483060365", + "1483060318", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969327", + "969327", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060331", + "1483060332", + "1483060384", + "1483060331", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969329", + "969329", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060333", + "1483060335", + "1483060369", + "1483060333", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969331", + "969331", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060338", + "1483060339", + "1483060372", + "1483060338", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969343", + "969343", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060372", + "1483060375", + "1483060424", + "1483060372", + "1", + "8", + "0", + "-1", + "49", + "3", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969345", + "969345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060384", + "1483060385", + "1483060419", + "1483060384", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969347", + "969347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060393", + "1483060394", + "1483060470", + "1483060393", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969359", + "969359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060425", + "1483060426", + "1483060469", + "1483060425", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969365", + "969365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060457", + "1483060459", + "1483060509", + "1483060457", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969371", + "969371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060470", + "1483060472", + "1483060513", + "1483060470", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969374", + "969374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060471", + "1483060472", + "1483060527", + "1483060471", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969378", + "969378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060491", + "1483060492", + "1483060551", + "1483060491", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969380", + "969380", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060510", + "1483060511", + "1483060543", + "1483060510", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969382", + "969382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060514", + "1483060515", + "1483060548", + "1483060514", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969386", + "969386", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060543", + "1483060544", + "1483060591", + "1483060543", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969388", + "969388", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060544", + "1483060546", + "1483060595", + "1483060544", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969392", + "969392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060549", + "1483060550", + "1483060594", + "1483060549", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969396", + "969396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060554", + "1483060555", + "1483060695", + "1483060554", + "1", + "8", + "0", + "-1", + "140", + "1", + "1120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969398", + "969398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060585", + "1483060586", + "1483060637", + "1483060585", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969400", + "969400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060592", + "1483060593", + "1483060640", + "1483060592", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969404", + "969404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060595", + "1483060596", + "1483060628", + "1483060595", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969406", + "969406", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060620", + "1483060621", + "1483060669", + "1483060620", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969408", + "969408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060628", + "1483060629", + "1483060664", + "1483060628", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969415", + "969415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060641", + "1483060642", + "1483060673", + "1483060641", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969427", + "969427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060674", + "1483060675", + "1483060708", + "1483060674", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969431", + "969431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060695", + "1483060696", + "1483060729", + "1483060695", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969433", + "969433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060698", + "1483060699", + "1483060730", + "1483060698", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969437", + "969437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060708", + "1483060709", + "1483060755", + "1483060708", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969441", + "969441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060713", + "1483060714", + "1483060828", + "1483060713", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969447", + "969447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060730", + "1483060731", + "1483060778", + "1483060730", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969461", + "969461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060775", + "1483060776", + "1483060813", + "1483060775", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969463", + "969463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060778", + "1483060779", + "1483060809", + "1483060778", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969481", + "969481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060833", + "1483060834", + "1483060887", + "1483060833", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969491", + "969491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060859", + "1483060862", + "1483060895", + "1483060859", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969493", + "969493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060863", + "1483060865", + "1483060899", + "1483060863", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969495", + "969495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060870", + "1483060871", + "1483060904", + "1483060870", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969497", + "969497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060877", + "1483060878", + "1483060915", + "1483060877", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969499", + "969499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060887", + "1483060888", + "1483060921", + "1483060887", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969503", + "969503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060900", + "1483060901", + "1483060936", + "1483060900", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969507", + "969507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060915", + "1483060916", + "1483060950", + "1483060915", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969509", + "969509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060922", + "1483060923", + "1483060954", + "1483060922", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969511", + "969511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060924", + "1483060926", + "1483060961", + "1483060924", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969513", + "969513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060926", + "1483060929", + "1483060968", + "1483060926", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969515", + "969515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060937", + "1483060938", + "1483060974", + "1483060937", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969525", + "969525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060969", + "1483060970", + "1483061011", + "1483060969", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969533", + "969533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060981", + "1483060982", + "1483061137", + "1483060981", + "1", + "8", + "0", + "-1", + "155", + "1", + "1240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969535", + "969535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060997", + "1483060998", + "1483061066", + "1483060997", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969541", + "969541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061014", + "1483061016", + "1483061048", + "1483061014", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969543", + "969543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061048", + "1483061049", + "1483061080", + "1483061048", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969545", + "969545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061053", + "1483061054", + "1483061085", + "1483061053", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969551", + "969551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061066", + "1483061067", + "1483061102", + "1483061066", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969557", + "969557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061085", + "1483061086", + "1483061130", + "1483061085", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969561", + "969561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061093", + "1483061095", + "1483061157", + "1483061093", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969565", + "969565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061120", + "1483061121", + "1483061155", + "1483061120", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969575", + "969575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061153", + "1483061155", + "1483061235", + "1483061153", + "1", + "8", + "0", + "-1", + "80", + "2", + "640", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969577", + "969577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061156", + "1483061157", + "1483061220", + "1483061156", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969589", + "969589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061177", + "1483061179", + "1483061212", + "1483061177", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969595", + "969595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061213", + "1483061215", + "1483061247", + "1483061213", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969599", + "969599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061222", + "1483061224", + "1483061258", + "1483061222", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969607", + "969607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061236", + "1483061237", + "1483061282", + "1483061236", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969613", + "969613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061259", + "1483061260", + "1483061290", + "1483061259", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969615", + "969615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061271", + "1483061272", + "1483061309", + "1483061271", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969617", + "969617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061277", + "1483061278", + "1483061318", + "1483061277", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969619", + "969619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061283", + "1483061284", + "1483061319", + "1483061283", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969621", + "969621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061290", + "1483061291", + "1483061332", + "1483061290", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969624", + "969624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061291", + "1483061294", + "1483061440", + "1483061291", + "1", + "8", + "0", + "-1", + "146", + "3", + "1168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969626", + "969626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061310", + "1483061311", + "1483061374", + "1483061310", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969634", + "969634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061320", + "1483061322", + "1483061352", + "1483061320", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969636", + "969636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061333", + "1483061335", + "1483061365", + "1483061333", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969638", + "969638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061353", + "1483061354", + "1483061400", + "1483061353", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969642", + "969642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061365", + "1483061366", + "1483061414", + "1483061365", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969644", + "969644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061374", + "1483061375", + "1483061405", + "1483061374", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969646", + "969646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061385", + "1483061386", + "1483061417", + "1483061385", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969652", + "969652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061406", + "1483061407", + "1483061468", + "1483061406", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969664", + "969664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061441", + "1483061442", + "1483061481", + "1483061441", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969666", + "969666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061444", + "1483061445", + "1483061524", + "1483061444", + "1", + "8", + "0", + "-1", + "79", + "1", + "632", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969676", + "969676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061481", + "1483061482", + "1483061529", + "1483061481", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969684", + "969684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061511", + "1483061512", + "1483061550", + "1483061511", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969702", + "969702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061585", + "1483061586", + "1483061640", + "1483061585", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969708", + "969708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061593", + "1483061594", + "1483061658", + "1483061593", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969714", + "969714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061615", + "1483061616", + "1483061681", + "1483061615", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969716", + "969716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061616", + "1483061619", + "1483061808", + "1483061616", + "1", + "8", + "0", + "-1", + "189", + "3", + "1512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969720", + "969720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061641", + "1483061642", + "1483061759", + "1483061641", + "1", + "8", + "0", + "-1", + "117", + "1", + "936", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969725", + "969725", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061651", + "1483061652", + "1483061685", + "1483061651", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969733", + "969733", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061686", + "1483061687", + "1483061730", + "1483061686", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969735", + "969735", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061687", + "1483061690", + "1483061725", + "1483061687", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969739", + "969739", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061710", + "1483061711", + "1483061743", + "1483061710", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969745", + "969745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061727", + "1483061730", + "1483061780", + "1483061727", + "1", + "8", + "0", + "-1", + "50", + "3", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969763", + "969763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061781", + "1483061783", + "1483061823", + "1483061781", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969767", + "969767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061808", + "1483061809", + "1483061850", + "1483061808", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969769", + "969769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061812", + "1483061815", + "1483061849", + "1483061812", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969775", + "969775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061825", + "1483061827", + "1483061858", + "1483061825", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969779", + "969779", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061849", + "1483061850", + "1483061888", + "1483061849", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969781", + "969781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061850", + "1483061851", + "1483061888", + "1483061850", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969787", + "969787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061858", + "1483061860", + "1483061891", + "1483061858", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969797", + "969797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061895", + "1483061897", + "1483061933", + "1483061895", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969799", + "969799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061917", + "1483061918", + "1483061954", + "1483061917", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969801", + "969801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061919", + "1483061920", + "1483061960", + "1483061919", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969803", + "969803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061920", + "1483061921", + "1483061954", + "1483061920", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969810", + "969810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061933", + "1483061935", + "1483061980", + "1483061933", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969824", + "969824", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061986", + "1483061987", + "1483062020", + "1483061986", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969828", + "969828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061999", + "1483062000", + "1483062036", + "1483061999", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969854", + "969854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062060", + "1483062061", + "1483062104", + "1483062060", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969862", + "969862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062103", + "1483062104", + "1483062135", + "1483062103", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969866", + "969866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062107", + "1483062108", + "1483062146", + "1483062107", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969870", + "969870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062128", + "1483062129", + "1483062168", + "1483062128", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969878", + "969878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062147", + "1483062150", + "1483062201", + "1483062147", + "1", + "8", + "0", + "-1", + "51", + "3", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969880", + "969880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062157", + "1483062158", + "1483062194", + "1483062157", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969886", + "969886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062177", + "1483062178", + "1483062210", + "1483062177", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969898", + "969898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062210", + "1483062211", + "1483062342", + "1483062210", + "1", + "8", + "0", + "-1", + "131", + "1", + "1048", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969904", + "969904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062229", + "1483062230", + "1483062269", + "1483062229", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969912", + "969912", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062262", + "1483062263", + "1483062296", + "1483062262", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969918", + "969918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062270", + "1483062272", + "1483062308", + "1483062270", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969938", + "969938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062328", + "1483062329", + "1483062367", + "1483062328", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969942", + "969942", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062330", + "1483062332", + "1483062368", + "1483062330", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969948", + "969948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062354", + "1483062355", + "1483062426", + "1483062354", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969950", + "969950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062367", + "1483062368", + "1483062405", + "1483062367", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969952", + "969952", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062369", + "1483062371", + "1483062402", + "1483062369", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969956", + "969956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062385", + "1483062388", + "1483062422", + "1483062385", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969958", + "969958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062389", + "1483062391", + "1483062457", + "1483062389", + "1", + "8", + "0", + "-1", + "66", + "2", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969964", + "969964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062423", + "1483062424", + "1483062488", + "1483062423", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969972", + "969972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062443", + "1483062444", + "1483062492", + "1483062443", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969976", + "969976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062457", + "1483062458", + "1483062506", + "1483062457", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969984", + "969984", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062488", + "1483062489", + "1483062566", + "1483062488", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969986", + "969986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062492", + "1483062493", + "1483062567", + "1483062492", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969988", + "969988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062496", + "1483062497", + "1483062539", + "1483062496", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969990", + "969990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062498", + "1483062500", + "1483062639", + "1483062498", + "1", + "8", + "0", + "-1", + "139", + "2", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969992", + "969992", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062507", + "1483062508", + "1483062565", + "1483062507", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969997", + "969997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062539", + "1483062540", + "1483062582", + "1483062539", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969999", + "969999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062559", + "1483062560", + "1483062603", + "1483062559", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970003", + "970003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062566", + "1483062567", + "1483062605", + "1483062566", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970007", + "970007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062568", + "1483062570", + "1483062633", + "1483062568", + "1", + "8", + "0", + "-1", + "63", + "2", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970015", + "970015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062606", + "1483062607", + "1483062648", + "1483062606", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970017", + "970017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062608", + "1483062610", + "1483062687", + "1483062608", + "1", + "8", + "0", + "-1", + "77", + "2", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970023", + "970023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062641", + "1483062643", + "1483062675", + "1483062641", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970033", + "970033", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062676", + "1483062678", + "1483062774", + "1483062676", + "1", + "8", + "0", + "-1", + "96", + "2", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970039", + "970039", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062688", + "1483062689", + "1483062741", + "1483062688", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970043", + "970043", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062697", + "1483062698", + "1483062743", + "1483062697", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970047", + "970047", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062708", + "1483062709", + "1483062754", + "1483062708", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970051", + "970051", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062741", + "1483062742", + "1483062785", + "1483062741", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970053", + "970053", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062744", + "1483062745", + "1483062807", + "1483062744", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970055", + "970055", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062755", + "1483062756", + "1483062814", + "1483062755", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970060", + "970060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062768", + "1483062769", + "1483062820", + "1483062768", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970062", + "970062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062775", + "1483062776", + "1483062851", + "1483062775", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970064", + "970064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062785", + "1483062786", + "1483062820", + "1483062785", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970066", + "970066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062807", + "1483062808", + "1483062849", + "1483062807", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970070", + "970070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062820", + "1483062821", + "1483062875", + "1483062820", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970076", + "970076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062843", + "1483062844", + "1483062894", + "1483062843", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970080", + "970080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062849", + "1483062850", + "1483063019", + "1483062849", + "1", + "8", + "0", + "-1", + "169", + "1", + "1352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970082", + "970082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062850", + "1483062851", + "1483062907", + "1483062850", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970084", + "970084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062851", + "1483062854", + "1483062954", + "1483062851", + "1", + "8", + "0", + "-1", + "100", + "3", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970086", + "970086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062868", + "1483062869", + "1483062967", + "1483062868", + "1", + "8", + "0", + "-1", + "98", + "1", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970088", + "970088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062875", + "1483062876", + "1483063018", + "1483062875", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970092", + "970092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062908", + "1483062909", + "1483063051", + "1483062908", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970098", + "970098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062967", + "1483062968", + "1483063094", + "1483062967", + "1", + "8", + "0", + "-1", + "126", + "1", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970100", + "970100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063018", + "1483063019", + "1483063167", + "1483063018", + "1", + "8", + "0", + "-1", + "148", + "1", + "1184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970102", + "970102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063019", + "1483063022", + "1483063175", + "1483063019", + "1", + "8", + "0", + "-1", + "153", + "3", + "1224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970106", + "970106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063035", + "1483063037", + "1483063183", + "1483063035", + "1", + "8", + "0", + "-1", + "146", + "2", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970122", + "970122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063176", + "1483063177", + "1483063357", + "1483063176", + "1", + "8", + "0", + "-1", + "180", + "1", + "1440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970124", + "970124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063184", + "1483063185", + "1483063353", + "1483063184", + "1", + "8", + "0", + "-1", + "168", + "1", + "1344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970133", + "970133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063213", + "1483063214", + "1483063356", + "1483063213", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970141", + "970141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063307", + "1483063308", + "1483063359", + "1483063307", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970149", + "970149", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063358", + "1483063360", + "1483063410", + "1483063358", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970157", + "970157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063407", + "1483063408", + "1483063458", + "1483063407", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970163", + "970163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063417", + "1483063419", + "1483063468", + "1483063417", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970167", + "970167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063440", + "1483063441", + "1483063502", + "1483063440", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970171", + "970171", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063459", + "1483063461", + "1483063552", + "1483063459", + "1", + "8", + "0", + "-1", + "91", + "2", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970177", + "970177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063470", + "1483063472", + "1483063546", + "1483063470", + "1", + "8", + "0", + "-1", + "74", + "2", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970185", + "970185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063553", + "1483063555", + "1483063599", + "1483063553", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970193", + "970193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063577", + "1483063578", + "1483063651", + "1483063577", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970195", + "970195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063587", + "1483063588", + "1483063663", + "1483063587", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970197", + "970197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063599", + "1483063600", + "1483063641", + "1483063599", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970199", + "970199", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063600", + "1483063603", + "1483063647", + "1483063600", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970201", + "970201", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063612", + "1483063615", + "1483063652", + "1483063612", + "1", + "8", + "0", + "-1", + "37", + "3", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970205", + "970205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063626", + "1483063628", + "1483063700", + "1483063626", + "1", + "8", + "0", + "-1", + "72", + "2", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970209", + "970209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063641", + "1483063642", + "1483063704", + "1483063641", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970211", + "970211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063647", + "1483063648", + "1483063690", + "1483063647", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970213", + "970213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063651", + "1483063652", + "1483063709", + "1483063651", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970215", + "970215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063653", + "1483063655", + "1483063712", + "1483063653", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970217", + "970217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063664", + "1483063665", + "1483063765", + "1483063664", + "1", + "8", + "0", + "-1", + "100", + "1", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970223", + "970223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063691", + "1483063692", + "1483063797", + "1483063691", + "1", + "8", + "0", + "-1", + "105", + "1", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970227", + "970227", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063704", + "1483063705", + "1483063752", + "1483063704", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970231", + "970231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063713", + "1483063714", + "1483063761", + "1483063713", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970235", + "970235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063752", + "1483063753", + "1483063815", + "1483063752", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970239", + "970239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063762", + "1483063763", + "1483063812", + "1483063762", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970243", + "970243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063778", + "1483063779", + "1483063844", + "1483063778", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970249", + "970249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063812", + "1483063813", + "1483063852", + "1483063812", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970261", + "970261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063845", + "1483063847", + "1483063917", + "1483063845", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970263", + "970263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063852", + "1483063853", + "1483063935", + "1483063852", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970265", + "970265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063853", + "1483063854", + "1483064027", + "1483063853", + "1", + "8", + "0", + "-1", + "173", + "1", + "1384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970277", + "970277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063920", + "1483063921", + "1483063951", + "1483063920", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970281", + "970281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063936", + "1483063938", + "1483063970", + "1483063936", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970285", + "970285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063958", + "1483063959", + "1483064009", + "1483063958", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970289", + "970289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063971", + "1483063972", + "1483064022", + "1483063971", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970293", + "970293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063973", + "1483063975", + "1483064014", + "1483063973", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970305", + "970305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064021", + "1483064022", + "1483064056", + "1483064021", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970307", + "970307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064023", + "1483064025", + "1483064057", + "1483064023", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970309", + "970309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064025", + "1483064027", + "1483064077", + "1483064025", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970311", + "970311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064027", + "1483064028", + "1483064160", + "1483064027", + "1", + "8", + "0", + "-1", + "132", + "1", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970313", + "970313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064032", + "1483064035", + "1483064083", + "1483064032", + "1", + "8", + "0", + "-1", + "48", + "3", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970323", + "970323", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064077", + "1483064078", + "1483064110", + "1483064077", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970325", + "970325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064083", + "1483064084", + "1483064120", + "1483064083", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970327", + "970327", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064091", + "1483064092", + "1483064122", + "1483064091", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970331", + "970331", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064101", + "1483064102", + "1483064146", + "1483064101", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970337", + "970337", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064120", + "1483064121", + "1483064157", + "1483064120", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970344", + "970344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064147", + "1483064150", + "1483064181", + "1483064147", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970350", + "970350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064157", + "1483064158", + "1483064198", + "1483064157", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970354", + "970354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064169", + "1483064170", + "1483064234", + "1483064169", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970358", + "970358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064173", + "1483064174", + "1483064210", + "1483064173", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970368", + "970368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064213", + "1483064215", + "1483064248", + "1483064213", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970382", + "970382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064263", + "1483064265", + "1483064297", + "1483064263", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970396", + "970396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064315", + "1483064316", + "1483064360", + "1483064315", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970402", + "970402", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064321", + "1483064323", + "1483064437", + "1483064321", + "1", + "8", + "0", + "-1", + "114", + "2", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970404", + "970404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064328", + "1483064329", + "1483064367", + "1483064328", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970408", + "970408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064339", + "1483064340", + "1483064370", + "1483064339", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970410", + "970410", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064360", + "1483064361", + "1483064398", + "1483064360", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970412", + "970412", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064361", + "1483064364", + "1483064406", + "1483064361", + "1", + "8", + "0", + "-1", + "42", + "3", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970422", + "970422", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064399", + "1483064401", + "1483064440", + "1483064399", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970424", + "970424", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064401", + "1483064402", + "1483064452", + "1483064401", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970446", + "970446", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064460", + "1483064461", + "1483064501", + "1483064460", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970448", + "970448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064464", + "1483064465", + "1483064595", + "1483064464", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970458", + "970458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064501", + "1483064502", + "1483064532", + "1483064501", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970460", + "970460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064505", + "1483064506", + "1483064540", + "1483064505", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970464", + "970464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064510", + "1483064511", + "1483064548", + "1483064510", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970472", + "970472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064533", + "1483064535", + "1483064581", + "1483064533", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970490", + "970490", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064584", + "1483064585", + "1483064626", + "1483064584", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970494", + "970494", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064596", + "1483064597", + "1483064683", + "1483064596", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970496", + "970496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064598", + "1483064600", + "1483064640", + "1483064598", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970498", + "970498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064600", + "1483064603", + "1483064648", + "1483064600", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970500", + "970500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064609", + "1483064610", + "1483064643", + "1483064609", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970515", + "970515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064649", + "1483064650", + "1483064691", + "1483064649", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970519", + "970519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064656", + "1483064657", + "1483064698", + "1483064656", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970521", + "970521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064658", + "1483064660", + "1483064691", + "1483064658", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970532", + "970532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064691", + "1483064692", + "1483064731", + "1483064691", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970536", + "970536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064698", + "1483064699", + "1483064746", + "1483064698", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970538", + "970538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064703", + "1483064704", + "1483064822", + "1483064703", + "1", + "8", + "0", + "-1", + "118", + "1", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970540", + "970540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064707", + "1483064708", + "1483064738", + "1483064707", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970542", + "970542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064709", + "1483064711", + "1483064752", + "1483064709", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970548", + "970548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064738", + "1483064739", + "1483064779", + "1483064738", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970552", + "970552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064753", + "1483064755", + "1483064786", + "1483064753", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970554", + "970554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064756", + "1483064758", + "1483064800", + "1483064756", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970558", + "970558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064774", + "1483064775", + "1483064829", + "1483064774", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970566", + "970566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064787", + "1483064788", + "1483064830", + "1483064787", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970578", + "970578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064831", + "1483064833", + "1483064877", + "1483064831", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970580", + "970580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064839", + "1483064840", + "1483064889", + "1483064839", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970582", + "970582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064842", + "1483064843", + "1483064889", + "1483064842", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970584", + "970584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064844", + "1483064846", + "1483064956", + "1483064844", + "1", + "8", + "0", + "-1", + "110", + "2", + "880", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970588", + "970588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064865", + "1483064866", + "1483064907", + "1483064865", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970592", + "970592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064877", + "1483064878", + "1483064917", + "1483064877", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970626", + "970626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064966", + "1483064967", + "1483065026", + "1483064966", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970628", + "970628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064968", + "1483064970", + "1483065078", + "1483064968", + "1", + "8", + "0", + "-1", + "108", + "2", + "864", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970632", + "970632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064989", + "1483064990", + "1483065043", + "1483064989", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970634", + "970634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064991", + "1483064992", + "1483065034", + "1483064991", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970636", + "970636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065010", + "1483065011", + "1483065054", + "1483065010", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970638", + "970638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065018", + "1483065019", + "1483065064", + "1483065018", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970650", + "970650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065064", + "1483065066", + "1483065113", + "1483065064", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970654", + "970654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065070", + "1483065071", + "1483065114", + "1483065070", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970667", + "970667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065093", + "1483065094", + "1483065129", + "1483065093", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970671", + "970671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065106", + "1483065107", + "1483065152", + "1483065106", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970673", + "970673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065107", + "1483065110", + "1483065246", + "1483065107", + "1", + "8", + "0", + "-1", + "136", + "3", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970677", + "970677", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065114", + "1483065115", + "1483065168", + "1483065114", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970679", + "970679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065130", + "1483065131", + "1483065168", + "1483065130", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970681", + "970681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065144", + "1483065145", + "1483065177", + "1483065144", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970683", + "970683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065152", + "1483065153", + "1483065185", + "1483065152", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970692", + "970692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065177", + "1483065178", + "1483065233", + "1483065177", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970694", + "970694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065181", + "1483065182", + "1483065217", + "1483065181", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970696", + "970696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065186", + "1483065187", + "1483065220", + "1483065186", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970700", + "970700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065192", + "1483065193", + "1483065227", + "1483065192", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970712", + "970712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065233", + "1483065235", + "1483065279", + "1483065233", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970714", + "970714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065243", + "1483065244", + "1483065297", + "1483065243", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970716", + "970716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065246", + "1483065247", + "1483065285", + "1483065246", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970732", + "970732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065298", + "1483065300", + "1483065357", + "1483065298", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970740", + "970740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065358", + "1483065359", + "1483065428", + "1483065358", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970742", + "970742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065362", + "1483065363", + "1483065432", + "1483065362", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970744", + "970744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065363", + "1483065366", + "1483065426", + "1483065363", + "1", + "8", + "0", + "-1", + "60", + "3", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970746", + "970746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065372", + "1483065373", + "1483065434", + "1483065372", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970748", + "970748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065383", + "1483065384", + "1483065447", + "1483065383", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970752", + "970752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065422", + "1483065423", + "1483065477", + "1483065422", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970754", + "970754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065427", + "1483065428", + "1483065482", + "1483065427", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970756", + "970756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065429", + "1483065431", + "1483065487", + "1483065429", + "1", + "8", + "0", + "-1", + "56", + "2", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970758", + "970758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065431", + "1483065433", + "1483065517", + "1483065431", + "1", + "8", + "0", + "-1", + "84", + "2", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970762", + "970762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065434", + "1483065437", + "1483065534", + "1483065434", + "1", + "8", + "0", + "-1", + "97", + "3", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970764", + "970764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065448", + "1483065449", + "1483065623", + "1483065448", + "1", + "8", + "0", + "-1", + "174", + "1", + "1392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970766", + "970766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065477", + "1483065478", + "1483065583", + "1483065477", + "1", + "8", + "0", + "-1", + "105", + "1", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970768", + "970768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065483", + "1483065484", + "1483065589", + "1483065483", + "1", + "8", + "0", + "-1", + "105", + "1", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970774", + "970774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065534", + "1483065535", + "1483065566", + "1483065534", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970784", + "970784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065568", + "1483065570", + "1483065618", + "1483065568", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970792", + "970792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065590", + "1483065591", + "1483065624", + "1483065590", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970804", + "970804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065624", + "1483065627", + "1483065676", + "1483065624", + "1", + "8", + "0", + "-1", + "49", + "3", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970810", + "970810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065641", + "1483065643", + "1483065722", + "1483065641", + "1", + "8", + "0", + "-1", + "79", + "2", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970814", + "970814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065654", + "1483065655", + "1483065696", + "1483065654", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970829", + "970829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065697", + "1483065698", + "1483065745", + "1483065697", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970833", + "970833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065706", + "1483065708", + "1483065752", + "1483065706", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970850", + "970850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065753", + "1483065754", + "1483065809", + "1483065753", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970854", + "970854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065756", + "1483065757", + "1483065881", + "1483065756", + "1", + "8", + "0", + "-1", + "124", + "1", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970856", + "970856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065767", + "1483065768", + "1483065802", + "1483065767", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970858", + "970858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065768", + "1483065769", + "1483065817", + "1483065768", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970874", + "970874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065823", + "1483065824", + "1483065866", + "1483065823", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970884", + "970884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065854", + "1483065855", + "1483065888", + "1483065854", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970894", + "970894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065881", + "1483065882", + "1483065917", + "1483065881", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970896", + "970896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065883", + "1483065885", + "1483065941", + "1483065883", + "1", + "8", + "0", + "-1", + "56", + "2", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970900", + "970900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065889", + "1483065891", + "1483066008", + "1483065889", + "1", + "8", + "0", + "-1", + "117", + "2", + "936", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970902", + "970902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065896", + "1483065897", + "1483065945", + "1483065896", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970904", + "970904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065902", + "1483065903", + "1483065943", + "1483065902", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970912", + "970912", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065941", + "1483065942", + "1483065978", + "1483065941", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970922", + "970922", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065966", + "1483065967", + "1483066010", + "1483065966", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970940", + "970940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066014", + "1483066015", + "1483066052", + "1483066014", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970942", + "970942", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066016", + "1483066018", + "1483066050", + "1483066016", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970946", + "970946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066022", + "1483066024", + "1483066108", + "1483066022", + "1", + "8", + "0", + "-1", + "84", + "2", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970954", + "970954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066051", + "1483066052", + "1483066094", + "1483066051", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970968", + "970968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066095", + "1483066096", + "1483066140", + "1483066095", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970970", + "970970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066096", + "1483066099", + "1483066129", + "1483066096", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970973", + "970973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066096", + "1483066099", + "1483066143", + "1483066096", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970987", + "970987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066130", + "1483066131", + "1483066166", + "1483066130", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970992", + "970992", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066141", + "1483066142", + "1483066177", + "1483066141", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970994", + "970994", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066143", + "1483066145", + "1483066189", + "1483066143", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971000", + "971000", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066167", + "1483066168", + "1483066225", + "1483066167", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971004", + "971004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066178", + "1483066179", + "1483066214", + "1483066178", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971006", + "971006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066180", + "1483066181", + "1483066220", + "1483066180", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971010", + "971010", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066194", + "1483066195", + "1483066230", + "1483066194", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971012", + "971012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066209", + "1483066210", + "1483066261", + "1483066209", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971016", + "971016", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066216", + "1483066218", + "1483066256", + "1483066216", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971026", + "971026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066256", + "1483066257", + "1483066290", + "1483066256", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971028", + "971028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066257", + "1483066259", + "1483066291", + "1483066257", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971030", + "971030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066260", + "1483066261", + "1483066301", + "1483066260", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971032", + "971032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066261", + "1483066262", + "1483066331", + "1483066261", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971036", + "971036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066263", + "1483066265", + "1483066411", + "1483066263", + "1", + "8", + "0", + "-1", + "146", + "2", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971038", + "971038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066279", + "1483066280", + "1483066329", + "1483066279", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971050", + "971050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066332", + "1483066333", + "1483066396", + "1483066332", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971062", + "971062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066363", + "1483066364", + "1483066406", + "1483066363", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971064", + "971064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066373", + "1483066374", + "1483066412", + "1483066373", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971078", + "971078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066413", + "1483066415", + "1483066475", + "1483066413", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971082", + "971082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066422", + "1483066423", + "1483066583", + "1483066422", + "1", + "8", + "0", + "-1", + "160", + "1", + "1280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971084", + "971084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066433", + "1483066435", + "1483066489", + "1483066433", + "1", + "8", + "0", + "-1", + "54", + "2", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971090", + "971090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066466", + "1483066467", + "1483066504", + "1483066466", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971092", + "971092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066471", + "1483066472", + "1483066505", + "1483066471", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971094", + "971094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066476", + "1483066477", + "1483066527", + "1483066476", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971096", + "971096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066490", + "1483066491", + "1483066533", + "1483066490", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971102", + "971102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066504", + "1483066505", + "1483066544", + "1483066504", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971104", + "971104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066506", + "1483066508", + "1483066576", + "1483066506", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971106", + "971106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066522", + "1483066523", + "1483066591", + "1483066522", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971108", + "971108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066528", + "1483066529", + "1483066578", + "1483066528", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971110", + "971110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066533", + "1483066534", + "1483066575", + "1483066533", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971112", + "971112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066544", + "1483066545", + "1483066578", + "1483066544", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971122", + "971122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066579", + "1483066580", + "1483066652", + "1483066579", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971126", + "971126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066591", + "1483066592", + "1483066649", + "1483066591", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971130", + "971130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066607", + "1483066608", + "1483066653", + "1483066607", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971132", + "971132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066614", + "1483066615", + "1483066692", + "1483066614", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971142", + "971142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066653", + "1483066656", + "1483066785", + "1483066653", + "1", + "8", + "0", + "-1", + "129", + "3", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971144", + "971144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066663", + "1483066664", + "1483066786", + "1483066663", + "1", + "8", + "0", + "-1", + "122", + "1", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971150", + "971150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066699", + "1483066701", + "1483066836", + "1483066699", + "1", + "8", + "0", + "-1", + "135", + "2", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971158", + "971158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066786", + "1483066787", + "1483066864", + "1483066786", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971162", + "971162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066787", + "1483066788", + "1483066901", + "1483066787", + "1", + "8", + "0", + "-1", + "113", + "1", + "904", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971179", + "971179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066885", + "1483066886", + "1483067010", + "1483066885", + "1", + "8", + "0", + "-1", + "124", + "1", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971185", + "971185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066922", + "1483066930", + "1483067010", + "1483066922", + "1", + "8", + "0", + "-1", + "80", + "8", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971189", + "971189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067005", + "1483067010", + "1483067110", + "1483067005", + "1", + "8", + "0", + "-1", + "100", + "5", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971194", + "971194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067094", + "1483067110", + "1483067178", + "1483067094", + "1", + "8", + "0", + "-1", + "68", + "16", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971197", + "971197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067197", + "1483067203", + "1483067281", + "1483067197", + "1", + "8", + "0", + "-1", + "78", + "6", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971200", + "971200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067307", + "1483067314", + "1483067377", + "1483067307", + "1", + "8", + "0", + "-1", + "63", + "7", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971202", + "971202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067327", + "1483067331", + "1483067380", + "1483067327", + "1", + "8", + "0", + "-1", + "49", + "4", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971205", + "971205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067336", + "1483067337", + "1483067424", + "1483067336", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971207", + "971207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067365", + "1483067369", + "1483067448", + "1483067365", + "1", + "8", + "0", + "-1", + "79", + "4", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971210", + "971210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067405", + "1483067406", + "1483067477", + "1483067405", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971212", + "971212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067422", + "1483067424", + "1483067499", + "1483067422", + "1", + "8", + "0", + "-1", + "75", + "2", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971216", + "971216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067453", + "1483067461", + "1483067549", + "1483067453", + "1", + "8", + "0", + "-1", + "88", + "8", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971223", + "971223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067524", + "1483067527", + "1483067592", + "1483067524", + "1", + "8", + "0", + "-1", + "65", + "3", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971225", + "971225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067544", + "1483067549", + "1483067607", + "1483067544", + "1", + "8", + "0", + "-1", + "58", + "5", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971228", + "971228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067591", + "1483067592", + "1483067633", + "1483067591", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971230", + "971230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067603", + "1483067606", + "1483067646", + "1483067603", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971233", + "971233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067621", + "1483067624", + "1483067686", + "1483067621", + "1", + "8", + "0", + "-1", + "62", + "3", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971235", + "971235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067622", + "1483067624", + "1483067690", + "1483067622", + "1", + "8", + "0", + "-1", + "66", + "2", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971237", + "971237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067624", + "1483067629", + "1483067676", + "1483067624", + "1", + "8", + "0", + "-1", + "47", + "5", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971241", + "971241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067655", + "1483067662", + "1483067694", + "1483067655", + "1", + "8", + "0", + "-1", + "32", + "7", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971243", + "971243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067663", + "1483067665", + "1483067697", + "1483067663", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971264", + "971264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067686", + "1483067689", + "1483067750", + "1483067686", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971266", + "971266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067690", + "1483067691", + "1483067760", + "1483067690", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971290", + "971290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067750", + "1483067751", + "1483067810", + "1483067750", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971292", + "971292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067754", + "1483067756", + "1483067803", + "1483067754", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971296", + "971296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067762", + "1483067764", + "1483067854", + "1483067762", + "1", + "8", + "0", + "-1", + "90", + "2", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971304", + "971304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067809", + "1483067810", + "1483067903", + "1483067809", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971312", + "971312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067855", + "1483067856", + "1483067896", + "1483067855", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971330", + "971330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067903", + "1483067904", + "1483067937", + "1483067903", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971341", + "971341", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067920", + "1483067921", + "1483067957", + "1483067920", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971343", + "971343", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067922", + "1483067923", + "1483067953", + "1483067922", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971347", + "971347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067928", + "1483067929", + "1483067964", + "1483067928", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971351", + "971351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067943", + "1483067944", + "1483067991", + "1483067943", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971383", + "971383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068020", + "1483068022", + "1483068060", + "1483068020", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971385", + "971385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068034", + "1483068035", + "1483068066", + "1483068034", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971389", + "971389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068041", + "1483068042", + "1483068163", + "1483068041", + "1", + "8", + "0", + "-1", + "121", + "1", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971413", + "971413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068099", + "1483068100", + "1483068132", + "1483068099", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971450", + "971450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068188", + "1483068189", + "1483068222", + "1483068188", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971452", + "971452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068193", + "1483068194", + "1483068236", + "1483068193", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971466", + "971466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068223", + "1483068226", + "1483068283", + "1483068223", + "1", + "8", + "0", + "-1", + "57", + "3", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971468", + "971468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068227", + "1483068228", + "1483068274", + "1483068227", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971470", + "971470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068228", + "1483068229", + "1483068351", + "1483068228", + "1", + "8", + "0", + "-1", + "122", + "1", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971472", + "971472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068237", + "1483068238", + "1483068280", + "1483068237", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971474", + "971474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068244", + "1483068245", + "1483068290", + "1483068244", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971476", + "971476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068247", + "1483068248", + "1483068306", + "1483068247", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971482", + "971482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068284", + "1483068285", + "1483068323", + "1483068284", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971488", + "971488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068307", + "1483068308", + "1483068338", + "1483068307", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971490", + "971490", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068309", + "1483068311", + "1483068344", + "1483068309", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971504", + "971504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068338", + "1483068339", + "1483068377", + "1483068338", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971506", + "971506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068344", + "1483068345", + "1483068380", + "1483068344", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971508", + "971508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068346", + "1483068348", + "1483068439", + "1483068346", + "1", + "8", + "0", + "-1", + "91", + "2", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971510", + "971510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068351", + "1483068352", + "1483068386", + "1483068351", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971512", + "971512", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068354", + "1483068356", + "1483068390", + "1483068354", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971543", + "971543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068425", + "1483068426", + "1483068484", + "1483068425", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971547", + "971547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068440", + "1483068441", + "1483068472", + "1483068440", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971573", + "971573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068510", + "1483068511", + "1483068573", + "1483068510", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971583", + "971583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068523", + "1483068524", + "1483068585", + "1483068523", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971585", + "971585", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068535", + "1483068536", + "1483068577", + "1483068535", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971591", + "971591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068574", + "1483068575", + "1483068620", + "1483068574", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971601", + "971601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068595", + "1483068596", + "1483068630", + "1483068595", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971605", + "971605", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068602", + "1483068603", + "1483068648", + "1483068602", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971607", + "971607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068615", + "1483068616", + "1483068659", + "1483068615", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971609", + "971609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068621", + "1483068622", + "1483068733", + "1483068621", + "1", + "8", + "0", + "-1", + "111", + "1", + "888", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971611", + "971611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068630", + "1483068631", + "1483068664", + "1483068630", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971618", + "971618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068648", + "1483068651", + "1483068697", + "1483068648", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971628", + "971628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068694", + "1483068695", + "1483068729", + "1483068694", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971636", + "971636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068706", + "1483068707", + "1483068758", + "1483068706", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971642", + "971642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068729", + "1483068730", + "1483068769", + "1483068729", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971648", + "971648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068734", + "1483068736", + "1483068781", + "1483068734", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971660", + "971660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068780", + "1483068781", + "1483068828", + "1483068780", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971662", + "971662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068781", + "1483068782", + "1483068821", + "1483068781", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971676", + "971676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068821", + "1483068822", + "1483068866", + "1483068821", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971682", + "971682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068828", + "1483068829", + "1483068877", + "1483068828", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971696", + "971696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068890", + "1483068891", + "1483068988", + "1483068890", + "1", + "8", + "0", + "-1", + "97", + "1", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971698", + "971698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068899", + "1483068900", + "1483068978", + "1483068899", + "1", + "8", + "0", + "-1", + "78", + "1", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971706", + "971706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068954", + "1483068956", + "1483068987", + "1483068954", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971716", + "971716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068987", + "1483068988", + "1483069105", + "1483068987", + "1", + "8", + "0", + "-1", + "117", + "1", + "936", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971718", + "971718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068988", + "1483068991", + "1483069024", + "1483068988", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971722", + "971722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069006", + "1483069007", + "1483069043", + "1483069006", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971736", + "971736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069044", + "1483069045", + "1483069093", + "1483069044", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971738", + "971738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069057", + "1483069058", + "1483069165", + "1483069057", + "1", + "8", + "0", + "-1", + "107", + "1", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971741", + "971741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069058", + "1483069061", + "1483069117", + "1483069058", + "1", + "8", + "0", + "-1", + "56", + "3", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971761", + "971761", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069118", + "1483069119", + "1483069150", + "1483069118", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971775", + "971775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069151", + "1483069153", + "1483069253", + "1483069151", + "1", + "8", + "0", + "-1", + "100", + "2", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971781", + "971781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069166", + "1483069169", + "1483069208", + "1483069166", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971785", + "971785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069177", + "1483069178", + "1483069220", + "1483069177", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971791", + "971791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069195", + "1483069196", + "1483069310", + "1483069195", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971797", + "971797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069222", + "1483069224", + "1483069262", + "1483069222", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971799", + "971799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069225", + "1483069227", + "1483069264", + "1483069225", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971803", + "971803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069254", + "1483069256", + "1483069294", + "1483069254", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971807", + "971807", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069262", + "1483069264", + "1483069310", + "1483069262", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971809", + "971809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069265", + "1483069267", + "1483069335", + "1483069265", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971813", + "971813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069295", + "1483069298", + "1483069377", + "1483069295", + "1", + "8", + "0", + "-1", + "79", + "3", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971817", + "971817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069311", + "1483069312", + "1483069461", + "1483069311", + "1", + "8", + "0", + "-1", + "149", + "1", + "1192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971819", + "971819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069336", + "1483069337", + "1483069426", + "1483069336", + "1", + "8", + "0", + "-1", + "89", + "1", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971825", + "971825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069366", + "1483069369", + "1483069443", + "1483069366", + "1", + "8", + "0", + "-1", + "74", + "3", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971827", + "971827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069378", + "1483069379", + "1483069524", + "1483069378", + "1", + "8", + "0", + "-1", + "145", + "1", + "1160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971829", + "971829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069388", + "1483069389", + "1483069430", + "1483069388", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971831", + "971831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069426", + "1483069427", + "1483069484", + "1483069426", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971845", + "971845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069510", + "1483069511", + "1483069567", + "1483069510", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971853", + "971853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069541", + "1483069542", + "1483069622", + "1483069541", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971875", + "971875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069614", + "1483069616", + "1483069646", + "1483069614", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971893", + "971893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069660", + "1483069662", + "1483069740", + "1483069660", + "1", + "8", + "0", + "-1", + "78", + "2", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971895", + "971895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069666", + "1483069667", + "1483069699", + "1483069666", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971897", + "971897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069683", + "1483069684", + "1483069714", + "1483069683", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971907", + "971907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069700", + "1483069701", + "1483069737", + "1483069700", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971919", + "971919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069729", + "1483069730", + "1483069763", + "1483069729", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971937", + "971937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069758", + "1483069760", + "1483069790", + "1483069758", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971939", + "971939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069760", + "1483069761", + "1483069824", + "1483069760", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971941", + "971941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069761", + "1483069764", + "1483069797", + "1483069761", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971945", + "971945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069771", + "1483069772", + "1483069806", + "1483069771", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971967", + "971967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069817", + "1483069819", + "1483069858", + "1483069817", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971985", + "971985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069851", + "1483069853", + "1483069917", + "1483069851", + "1", + "8", + "0", + "-1", + "64", + "2", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971991", + "971991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069869", + "1483069870", + "1483069910", + "1483069869", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972011", + "972011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069920", + "1483069922", + "1483069958", + "1483069920", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972036", + "972036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069959", + "1483069962", + "1483070002", + "1483069959", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972076", + "972076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070036", + "1483070037", + "1483070105", + "1483070036", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972078", + "972078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070037", + "1483070039", + "1483070073", + "1483070037", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972080", + "972080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070039", + "1483070040", + "1483070074", + "1483070039", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972100", + "972100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070089", + "1483070090", + "1483070120", + "1483070089", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972148", + "972148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070188", + "1483070189", + "1483070222", + "1483070188", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972168", + "972168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070229", + "1483070230", + "1483070298", + "1483070229", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972172", + "972172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070233", + "1483070234", + "1483070269", + "1483070233", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972174", + "972174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070236", + "1483070237", + "1483070281", + "1483070236", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972194", + "972194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070296", + "1483070299", + "1483070337", + "1483070296", + "1", + "8", + "0", + "-1", + "38", + "3", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972196", + "972196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070299", + "1483070301", + "1483070337", + "1483070299", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972208", + "972208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070328", + "1483070329", + "1483070369", + "1483070328", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972215", + "972215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070338", + "1483070341", + "1483070376", + "1483070338", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972217", + "972217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070338", + "1483070341", + "1483070373", + "1483070338", + "1", + "8", + "0", + "-1", + "32", + "3", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972219", + "972219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070342", + "1483070344", + "1483070390", + "1483070342", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972241", + "972241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070402", + "1483070403", + "1483070448", + "1483070402", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972253", + "972253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070425", + "1483070426", + "1483070458", + "1483070425", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972255", + "972255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070431", + "1483070432", + "1483070465", + "1483070431", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972257", + "972257", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070432", + "1483070435", + "1483070471", + "1483070432", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972261", + "972261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070443", + "1483070444", + "1483070478", + "1483070443", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972263", + "972263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070448", + "1483070449", + "1483070482", + "1483070448", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972265", + "972265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070459", + "1483070460", + "1483070492", + "1483070459", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972287", + "972287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070509", + "1483070512", + "1483070552", + "1483070509", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972299", + "972299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070540", + "1483070541", + "1483070571", + "1483070540", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972301", + "972301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070541", + "1483070542", + "1483070574", + "1483070541", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972305", + "972305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070547", + "1483070548", + "1483070610", + "1483070547", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972307", + "972307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070550", + "1483070551", + "1483070586", + "1483070550", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972309", + "972309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070553", + "1483070554", + "1483070590", + "1483070553", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972311", + "972311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070556", + "1483070557", + "1483070587", + "1483070556", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972313", + "972313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070571", + "1483070572", + "1483070629", + "1483070571", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972315", + "972315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070575", + "1483070576", + "1483070633", + "1483070575", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972320", + "972320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070588", + "1483070590", + "1483070625", + "1483070588", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972328", + "972328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070612", + "1483070613", + "1483070674", + "1483070612", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972330", + "972330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070620", + "1483070621", + "1483070674", + "1483070620", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972332", + "972332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070625", + "1483070626", + "1483070659", + "1483070625", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972334", + "972334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070630", + "1483070631", + "1483070687", + "1483070630", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972340", + "972340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070659", + "1483070660", + "1483070702", + "1483070659", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972342", + "972342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070664", + "1483070665", + "1483070697", + "1483070664", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972346", + "972346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070674", + "1483070675", + "1483070734", + "1483070674", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972348", + "972348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070675", + "1483070676", + "1483070762", + "1483070675", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972350", + "972350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070688", + "1483070689", + "1483070854", + "1483070688", + "1", + "8", + "0", + "-1", + "165", + "1", + "1320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972352", + "972352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070697", + "1483070698", + "1483070795", + "1483070697", + "1", + "8", + "0", + "-1", + "97", + "1", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972354", + "972354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070702", + "1483070703", + "1483070798", + "1483070702", + "1", + "8", + "0", + "-1", + "95", + "1", + "760", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972376", + "972376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070790", + "1483070791", + "1483070821", + "1483070790", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972392", + "972392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070821", + "1483070822", + "1483070876", + "1483070821", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972401", + "972401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070838", + "1483070839", + "1483070875", + "1483070838", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972437", + "972437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070905", + "1483070907", + "1483070937", + "1483070905", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972439", + "972439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070915", + "1483070916", + "1483070946", + "1483070915", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972441", + "972441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070916", + "1483070917", + "1483071028", + "1483070916", + "1", + "8", + "0", + "-1", + "111", + "1", + "888", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972443", + "972443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070917", + "1483070919", + "1483070950", + "1483070917", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972447", + "972447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070938", + "1483070939", + "1483070983", + "1483070938", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972461", + "972461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070976", + "1483070977", + "1483071009", + "1483070976", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972467", + "972467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070981", + "1483070983", + "1483071018", + "1483070981", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972481", + "972481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071019", + "1483071021", + "1483071053", + "1483071019", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972485", + "972485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071022", + "1483071023", + "1483071058", + "1483071022", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972491", + "972491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071028", + "1483071031", + "1483071078", + "1483071028", + "1", + "8", + "0", + "-1", + "47", + "3", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972507", + "972507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071076", + "1483071077", + "1483071107", + "1483071076", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972529", + "972529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071117", + "1483071119", + "1483071158", + "1483071117", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972533", + "972533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071125", + "1483071126", + "1483071216", + "1483071125", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972537", + "972537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071131", + "1483071132", + "1483071162", + "1483071131", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972545", + "972545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071157", + "1483071158", + "1483071193", + "1483071157", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972574", + "972574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071209", + "1483071210", + "1483071262", + "1483071209", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972578", + "972578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071216", + "1483071217", + "1483071301", + "1483071216", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972582", + "972582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071218", + "1483071220", + "1483071258", + "1483071218", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972593", + "972593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071259", + "1483071260", + "1483071304", + "1483071259", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972595", + "972595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071263", + "1483071264", + "1483071297", + "1483071263", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972597", + "972597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071266", + "1483071267", + "1483071319", + "1483071266", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972601", + "972601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071285", + "1483071286", + "1483071338", + "1483071285", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972609", + "972609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071304", + "1483071306", + "1483071350", + "1483071304", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972613", + "972613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071320", + "1483071321", + "1483071363", + "1483071320", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972615", + "972615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071325", + "1483071326", + "1483071370", + "1483071325", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972619", + "972619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071335", + "1483071336", + "1483071404", + "1483071335", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972623", + "972623", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071351", + "1483071352", + "1483071455", + "1483071351", + "1", + "8", + "0", + "-1", + "103", + "1", + "824", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972627", + "972627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071364", + "1483071366", + "1483071417", + "1483071364", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972629", + "972629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071371", + "1483071372", + "1483071418", + "1483071371", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972635", + "972635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071417", + "1483071418", + "1483071448", + "1483071417", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972645", + "972645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071436", + "1483071438", + "1483071468", + "1483071436", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972649", + "972649", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071449", + "1483071450", + "1483071512", + "1483071449", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972651", + "972651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071456", + "1483071457", + "1483071505", + "1483071456", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972663", + "972663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071489", + "1483071491", + "1483071525", + "1483071489", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972667", + "972667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071494", + "1483071495", + "1483071533", + "1483071494", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972673", + "972673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071504", + "1483071506", + "1483071549", + "1483071504", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972683", + "972683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071533", + "1483071536", + "1483071566", + "1483071533", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972695", + "972695", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071562", + "1483071564", + "1483071604", + "1483071562", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972709", + "972709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071605", + "1483071606", + "1483071642", + "1483071605", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972712", + "972712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071605", + "1483071606", + "1483071654", + "1483071605", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972714", + "972714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071608", + "1483071609", + "1483071690", + "1483071608", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972716", + "972716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071612", + "1483071613", + "1483071659", + "1483071612", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972722", + "972722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071620", + "1483071621", + "1483071695", + "1483071620", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972724", + "972724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071643", + "1483071644", + "1483071709", + "1483071643", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972726", + "972726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071655", + "1483071657", + "1483071722", + "1483071655", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972734", + "972734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071691", + "1483071692", + "1483071764", + "1483071691", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972738", + "972738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071697", + "1483071699", + "1483071770", + "1483071697", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972744", + "972744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071736", + "1483071737", + "1483071807", + "1483071736", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972748", + "972748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071766", + "1483071768", + "1483071838", + "1483071766", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972756", + "972756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071835", + "1483071837", + "1483071917", + "1483071835", + "1", + "8", + "0", + "-1", + "80", + "2", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972760", + "972760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071838", + "1483071840", + "1483071985", + "1483071838", + "1", + "8", + "0", + "-1", + "145", + "2", + "1160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972763", + "972763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071839", + "1483071840", + "1483071991", + "1483071839", + "1", + "8", + "0", + "-1", + "151", + "1", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972765", + "972765", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071841", + "1483071843", + "1483071920", + "1483071841", + "1", + "8", + "0", + "-1", + "77", + "2", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972775", + "972775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071920", + "1483071921", + "1483071957", + "1483071920", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972785", + "972785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071958", + "1483071960", + "1483072001", + "1483071958", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972791", + "972791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071969", + "1483071971", + "1483072010", + "1483071969", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972806", + "972806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072011", + "1483072013", + "1483072068", + "1483072011", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972808", + "972808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072020", + "1483072021", + "1483072089", + "1483072020", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972812", + "972812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072034", + "1483072035", + "1483072075", + "1483072034", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972814", + "972814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072062", + "1483072063", + "1483072107", + "1483072062", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972816", + "972816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072068", + "1483072069", + "1483072103", + "1483072068", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972818", + "972818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072072", + "1483072073", + "1483072134", + "1483072072", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972820", + "972820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072075", + "1483072077", + "1483072109", + "1483072075", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972822", + "972822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072089", + "1483072090", + "1483072139", + "1483072089", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972824", + "972824", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072103", + "1483072104", + "1483072152", + "1483072103", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972826", + "972826", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072108", + "1483072109", + "1483072144", + "1483072108", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972828", + "972828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072109", + "1483072112", + "1483072144", + "1483072109", + "1", + "8", + "0", + "-1", + "32", + "3", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972836", + "972836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072135", + "1483072137", + "1483072170", + "1483072135", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972843", + "972843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072145", + "1483072148", + "1483072219", + "1483072145", + "1", + "8", + "0", + "-1", + "71", + "3", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972845", + "972845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072152", + "1483072153", + "1483072219", + "1483072152", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972849", + "972849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072170", + "1483072171", + "1483072292", + "1483072170", + "1", + "8", + "0", + "-1", + "121", + "1", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972853", + "972853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072184", + "1483072185", + "1483072259", + "1483072184", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972872", + "972872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072249", + "1483072252", + "1483072285", + "1483072249", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972890", + "972890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072309", + "1483072312", + "1483072353", + "1483072309", + "1", + "8", + "0", + "-1", + "41", + "3", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972892", + "972892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072312", + "1483072314", + "1483072351", + "1483072312", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972894", + "972894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072320", + "1483072321", + "1483072406", + "1483072320", + "1", + "8", + "0", + "-1", + "85", + "1", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972898", + "972898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072322", + "1483072324", + "1483072376", + "1483072322", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972902", + "972902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072352", + "1483072354", + "1483072389", + "1483072352", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972916", + "972916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072406", + "1483072408", + "1483072458", + "1483072406", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972918", + "972918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072409", + "1483072411", + "1483072450", + "1483072409", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972922", + "972922", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072416", + "1483072418", + "1483072449", + "1483072416", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972934", + "972934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072459", + "1483072460", + "1483072517", + "1483072459", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972936", + "972936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072463", + "1483072464", + "1483072516", + "1483072463", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972940", + "972940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072475", + "1483072476", + "1483072605", + "1483072475", + "1", + "8", + "0", + "-1", + "129", + "1", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972944", + "972944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072482", + "1483072484", + "1483072523", + "1483072482", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972948", + "972948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072514", + "1483072515", + "1483072548", + "1483072514", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972950", + "972950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072516", + "1483072518", + "1483072562", + "1483072516", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972953", + "972953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072517", + "1483072518", + "1483072552", + "1483072517", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972963", + "972963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072552", + "1483072553", + "1483072587", + "1483072552", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972967", + "972967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072562", + "1483072563", + "1483072596", + "1483072562", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972983", + "972983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072598", + "1483072599", + "1483072663", + "1483072598", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972995", + "972995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072641", + "1483072642", + "1483072680", + "1483072641", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973004", + "973004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072677", + "1483072678", + "1483072726", + "1483072677", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973006", + "973006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072679", + "1483072681", + "1483072731", + "1483072679", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973014", + "973014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072693", + "1483072695", + "1483072729", + "1483072693", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973024", + "973024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072729", + "1483072730", + "1483072787", + "1483072729", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973026", + "973026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072731", + "1483072733", + "1483072801", + "1483072731", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973028", + "973028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072735", + "1483072737", + "1483072802", + "1483072735", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973032", + "973032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072762", + "1483072763", + "1483072801", + "1483072762", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973034", + "973034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072767", + "1483072768", + "1483072812", + "1483072767", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973036", + "973036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072788", + "1483072789", + "1483072856", + "1483072788", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973038", + "973038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072801", + "1483072802", + "1483072833", + "1483072801", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973044", + "973044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072812", + "1483072813", + "1483072846", + "1483072812", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973050", + "973050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072834", + "1483072835", + "1483072876", + "1483072834", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973052", + "973052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072847", + "1483072848", + "1483072893", + "1483072847", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973054", + "973054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072855", + "1483072857", + "1483072894", + "1483072855", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973056", + "973056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072857", + "1483072860", + "1483072893", + "1483072857", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973058", + "973058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072863", + "1483072864", + "1483072913", + "1483072863", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973062", + "973062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072876", + "1483072877", + "1483072907", + "1483072876", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973070", + "973070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072902", + "1483072903", + "1483072948", + "1483072902", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973072", + "973072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072908", + "1483072909", + "1483072951", + "1483072908", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973076", + "973076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072914", + "1483072916", + "1483073050", + "1483072914", + "1", + "8", + "0", + "-1", + "134", + "2", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973078", + "973078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072916", + "1483072917", + "1483072955", + "1483072916", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973080", + "973080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072919", + "1483072920", + "1483072989", + "1483072919", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973096", + "973096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072995", + "1483072996", + "1483073038", + "1483072995", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973098", + "973098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072998", + "1483072999", + "1483073030", + "1483072998", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973100", + "973100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073000", + "1483073002", + "1483073038", + "1483073000", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973106", + "973106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073030", + "1483073031", + "1483073062", + "1483073030", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973108", + "973108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073031", + "1483073034", + "1483073073", + "1483073031", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973119", + "973119", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073059", + "1483073061", + "1483073119", + "1483073059", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973121", + "973121", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073063", + "1483073064", + "1483073194", + "1483073063", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973125", + "973125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073073", + "1483073074", + "1483073137", + "1483073073", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973160", + "973160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073164", + "1483073166", + "1483073215", + "1483073164", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973166", + "973166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073184", + "1483073185", + "1483073304", + "1483073184", + "1", + "8", + "0", + "-1", + "119", + "1", + "952", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973168", + "973168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073195", + "1483073196", + "1483073233", + "1483073195", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973172", + "973172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073203", + "1483073204", + "1483073255", + "1483073203", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973176", + "973176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073215", + "1483073217", + "1483073247", + "1483073215", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973184", + "973184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073256", + "1483073257", + "1483073287", + "1483073256", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973188", + "973188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073258", + "1483073259", + "1483073313", + "1483073258", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973192", + "973192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073269", + "1483073270", + "1483073300", + "1483073269", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973198", + "973198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073301", + "1483073302", + "1483073340", + "1483073301", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973204", + "973204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073313", + "1483073315", + "1483073357", + "1483073313", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973206", + "973206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073315", + "1483073316", + "1483073365", + "1483073315", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973212", + "973212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073329", + "1483073330", + "1483073468", + "1483073329", + "1", + "8", + "0", + "-1", + "138", + "1", + "1104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973214", + "973214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073336", + "1483073337", + "1483073378", + "1483073336", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973232", + "973232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073407", + "1483073409", + "1483073449", + "1483073407", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973242", + "973242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073433", + "1483073434", + "1483073464", + "1483073433", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973252", + "973252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073470", + "1483073471", + "1483073508", + "1483073470", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973254", + "973254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073471", + "1483073472", + "1483073517", + "1483073471", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973264", + "973264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073510", + "1483073512", + "1483073577", + "1483073510", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973266", + "973266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073517", + "1483073518", + "1483073554", + "1483073517", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973268", + "973268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073526", + "1483073527", + "1483073557", + "1483073526", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973270", + "973270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073543", + "1483073544", + "1483073593", + "1483073543", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973272", + "973272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073555", + "1483073556", + "1483073586", + "1483073555", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973278", + "973278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073582", + "1483073583", + "1483073628", + "1483073582", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973280", + "973280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073584", + "1483073586", + "1483073640", + "1483073584", + "1", + "8", + "0", + "-1", + "54", + "2", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973282", + "973282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073587", + "1483073589", + "1483073623", + "1483073587", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973284", + "973284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073594", + "1483073595", + "1483073631", + "1483073594", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973286", + "973286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073601", + "1483073602", + "1483073636", + "1483073601", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973288", + "973288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073618", + "1483073619", + "1483073662", + "1483073618", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973300", + "973300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073654", + "1483073655", + "1483073699", + "1483073654", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973302", + "973302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073657", + "1483073658", + "1483073726", + "1483073657", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973304", + "973304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073660", + "1483073661", + "1483073800", + "1483073660", + "1", + "8", + "0", + "-1", + "139", + "1", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973306", + "973306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073662", + "1483073664", + "1483073715", + "1483073662", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973309", + "973309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073663", + "1483073664", + "1483073736", + "1483073663", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973315", + "973315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073699", + "1483073700", + "1483073730", + "1483073699", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973323", + "973323", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073715", + "1483073716", + "1483073754", + "1483073715", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973333", + "973333", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073736", + "1483073737", + "1483073769", + "1483073736", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973343", + "973343", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073771", + "1483073773", + "1483073807", + "1483073771", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973345", + "973345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073774", + "1483073776", + "1483073823", + "1483073774", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973347", + "973347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073777", + "1483073779", + "1483073848", + "1483073777", + "1", + "8", + "0", + "-1", + "69", + "2", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973349", + "973349", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073780", + "1483073782", + "1483073918", + "1483073780", + "1", + "8", + "0", + "-1", + "136", + "2", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973369", + "973369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073849", + "1483073851", + "1483073893", + "1483073849", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973371", + "973371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073877", + "1483073878", + "1483073948", + "1483073877", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973373", + "973373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073879", + "1483073881", + "1483073928", + "1483073879", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973375", + "973375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073891", + "1483073892", + "1483073948", + "1483073891", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973377", + "973377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073894", + "1483073895", + "1483073956", + "1483073894", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973381", + "973381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073901", + "1483073902", + "1483073956", + "1483073901", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973385", + "973385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073928", + "1483073929", + "1483073984", + "1483073928", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973387", + "973387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073948", + "1483073949", + "1483073985", + "1483073948", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973390", + "973390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073949", + "1483073952", + "1483074051", + "1483073949", + "1", + "8", + "0", + "-1", + "99", + "3", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973394", + "973394", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073957", + "1483073960", + "1483074138", + "1483073957", + "1", + "8", + "0", + "-1", + "178", + "3", + "1424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973398", + "973398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073974", + "1483073976", + "1483074083", + "1483073974", + "1", + "8", + "0", + "-1", + "107", + "2", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973414", + "973414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074052", + "1483074053", + "1483074099", + "1483074052", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973416", + "973416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074071", + "1483074072", + "1483074108", + "1483074071", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973418", + "973418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074075", + "1483074076", + "1483074109", + "1483074075", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973422", + "973422", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074084", + "1483074085", + "1483074132", + "1483074084", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973430", + "973430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074114", + "1483074117", + "1483074156", + "1483074114", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973432", + "973432", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074124", + "1483074125", + "1483074163", + "1483074124", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973436", + "973436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074133", + "1483074135", + "1483074170", + "1483074133", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973444", + "973444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074163", + "1483074164", + "1483074231", + "1483074163", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973462", + "973462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074230", + "1483074231", + "1483074277", + "1483074230", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973464", + "973464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074232", + "1483074234", + "1483074280", + "1483074232", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973476", + "973476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074262", + "1483074265", + "1483074302", + "1483074262", + "1", + "8", + "0", + "-1", + "37", + "3", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973480", + "973480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074271", + "1483074272", + "1483074310", + "1483074271", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973484", + "973484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074278", + "1483074280", + "1483074335", + "1483074278", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973486", + "973486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074280", + "1483074281", + "1483074374", + "1483074280", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973488", + "973488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074281", + "1483074283", + "1483074321", + "1483074281", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973492", + "973492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074302", + "1483074303", + "1483074350", + "1483074302", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973506", + "973506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074336", + "1483074337", + "1483074368", + "1483074336", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973508", + "973508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074337", + "1483074340", + "1483074381", + "1483074337", + "1", + "8", + "0", + "-1", + "41", + "3", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973522", + "973522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074375", + "1483074376", + "1483074408", + "1483074375", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973524", + "973524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074376", + "1483074377", + "1483074411", + "1483074376", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973528", + "973528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074382", + "1483074383", + "1483074414", + "1483074382", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973532", + "973532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074393", + "1483074394", + "1483074466", + "1483074393", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973540", + "973540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074415", + "1483074417", + "1483074454", + "1483074415", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973568", + "973568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074478", + "1483074480", + "1483074513", + "1483074478", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973572", + "973572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074491", + "1483074493", + "1483074552", + "1483074491", + "1", + "8", + "0", + "-1", + "59", + "2", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973574", + "973574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074494", + "1483074496", + "1483074553", + "1483074494", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973576", + "973576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074497", + "1483074499", + "1483074609", + "1483074497", + "1", + "8", + "0", + "-1", + "110", + "2", + "880", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973592", + "973592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074563", + "1483074564", + "1483074595", + "1483074563", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973600", + "973600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074578", + "1483074579", + "1483074634", + "1483074578", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973602", + "973602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074579", + "1483074581", + "1483074634", + "1483074579", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973606", + "973606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074595", + "1483074597", + "1483074632", + "1483074595", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973608", + "973608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074598", + "1483074600", + "1483074636", + "1483074598", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973612", + "973612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074612", + "1483074613", + "1483074657", + "1483074612", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973616", + "973616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074634", + "1483074635", + "1483074676", + "1483074634", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973618", + "973618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074635", + "1483074636", + "1483074671", + "1483074635", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973623", + "973623", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074638", + "1483074640", + "1483074682", + "1483074638", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973631", + "973631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074659", + "1483074660", + "1483074717", + "1483074659", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973637", + "973637", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074682", + "1483074683", + "1483074735", + "1483074682", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973641", + "973641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074707", + "1483074708", + "1483074769", + "1483074707", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973643", + "973643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074708", + "1483074709", + "1483074750", + "1483074708", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973645", + "973645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074716", + "1483074717", + "1483074747", + "1483074716", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973647", + "973647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074718", + "1483074720", + "1483074755", + "1483074718", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973663", + "973663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074770", + "1483074772", + "1483074851", + "1483074770", + "1", + "8", + "0", + "-1", + "79", + "2", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973665", + "973665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074775", + "1483074777", + "1483074854", + "1483074775", + "1", + "8", + "0", + "-1", + "77", + "2", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973671", + "973671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074792", + "1483074793", + "1483074875", + "1483074792", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973683", + "973683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074853", + "1483074854", + "1483074893", + "1483074853", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973689", + "973689", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074871", + "1483074872", + "1483074941", + "1483074871", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973691", + "973691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074876", + "1483074877", + "1483074920", + "1483074876", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973693", + "973693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074877", + "1483074880", + "1483074932", + "1483074877", + "1", + "8", + "0", + "-1", + "52", + "3", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973695", + "973695", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074886", + "1483074887", + "1483074926", + "1483074886", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973697", + "973697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074894", + "1483074897", + "1483074945", + "1483074894", + "1", + "8", + "0", + "-1", + "48", + "3", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973699", + "973699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074903", + "1483074904", + "1483074941", + "1483074903", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973705", + "973705", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074921", + "1483074923", + "1483074973", + "1483074921", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973707", + "973707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074926", + "1483074927", + "1483074968", + "1483074926", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973709", + "973709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074932", + "1483074933", + "1483075023", + "1483074932", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973713", + "973713", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074942", + "1483074944", + "1483075104", + "1483074942", + "1", + "8", + "0", + "-1", + "160", + "2", + "1280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973716", + "973716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074943", + "1483074944", + "1483075036", + "1483074943", + "1", + "8", + "0", + "-1", + "92", + "1", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973718", + "973718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074946", + "1483074947", + "1483075037", + "1483074946", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973722", + "973722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074968", + "1483074969", + "1483075014", + "1483074968", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973728", + "973728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075015", + "1483075017", + "1483075066", + "1483075015", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973730", + "973730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075023", + "1483075024", + "1483075067", + "1483075023", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973734", + "973734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075037", + "1483075038", + "1483075097", + "1483075037", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973740", + "973740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075068", + "1483075069", + "1483075123", + "1483075068", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973746", + "973746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075100", + "1483075101", + "1483075134", + "1483075100", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973752", + "973752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075122", + "1483075123", + "1483075176", + "1483075122", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973754", + "973754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075124", + "1483075126", + "1483075186", + "1483075124", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973756", + "973756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075128", + "1483075129", + "1483075213", + "1483075128", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973758", + "973758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075135", + "1483075137", + "1483075294", + "1483075135", + "1", + "8", + "0", + "-1", + "157", + "2", + "1256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973762", + "973762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075148", + "1483075149", + "1483075238", + "1483075148", + "1", + "8", + "0", + "-1", + "89", + "1", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973773", + "973773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075186", + "1483075187", + "1483075302", + "1483075186", + "1", + "8", + "0", + "-1", + "115", + "1", + "920", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973779", + "973779", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075213", + "1483075215", + "1483075352", + "1483075213", + "1", + "8", + "0", + "-1", + "137", + "2", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973789", + "973789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075295", + "1483075296", + "1483075426", + "1483075295", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973791", + "973791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075302", + "1483075303", + "1483075421", + "1483075302", + "1", + "8", + "0", + "-1", + "118", + "1", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973793", + "973793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075306", + "1483075307", + "1483075373", + "1483075306", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973799", + "973799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075352", + "1483075353", + "1483075512", + "1483075352", + "1", + "8", + "0", + "-1", + "159", + "1", + "1272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973805", + "973805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075375", + "1483075377", + "1483075528", + "1483075375", + "1", + "8", + "0", + "-1", + "151", + "2", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973809", + "973809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075422", + "1483075423", + "1483075592", + "1483075422", + "1", + "8", + "0", + "-1", + "169", + "1", + "1352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973811", + "973811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075424", + "1483075426", + "1483075470", + "1483075424", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973813", + "973813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075426", + "1483075429", + "1483075491", + "1483075426", + "1", + "8", + "0", + "-1", + "62", + "3", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973815", + "973815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075471", + "1483075472", + "1483075525", + "1483075471", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973819", + "973819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075492", + "1483075494", + "1483075547", + "1483075492", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973821", + "973821", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075512", + "1483075513", + "1483075547", + "1483075512", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973825", + "973825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075529", + "1483075530", + "1483075577", + "1483075529", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973829", + "973829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075548", + "1483075549", + "1483075596", + "1483075548", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973839", + "973839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075596", + "1483075597", + "1483075652", + "1483075596", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973847", + "973847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075611", + "1483075612", + "1483075674", + "1483075611", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973857", + "973857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075672", + "1483075673", + "1483075742", + "1483075672", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973859", + "973859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075675", + "1483075677", + "1483075719", + "1483075675", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973877", + "973877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075740", + "1483075741", + "1483075776", + "1483075740", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973879", + "973879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075743", + "1483075744", + "1483075774", + "1483075743", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973881", + "973881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075756", + "1483075757", + "1483075793", + "1483075756", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973885", + "973885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075767", + "1483075768", + "1483075810", + "1483075767", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973887", + "973887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075775", + "1483075776", + "1483075808", + "1483075775", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973889", + "973889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075776", + "1483075779", + "1483075823", + "1483075776", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973891", + "973891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075789", + "1483075790", + "1483075870", + "1483075789", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973893", + "973893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075793", + "1483075794", + "1483075884", + "1483075793", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973895", + "973895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075794", + "1483075797", + "1483075961", + "1483075794", + "1", + "8", + "0", + "-1", + "164", + "3", + "1312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973897", + "973897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075809", + "1483075810", + "1483075867", + "1483075809", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973899", + "973899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075810", + "1483075813", + "1483075909", + "1483075810", + "1", + "8", + "0", + "-1", + "96", + "3", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973903", + "973903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075823", + "1483075826", + "1483075893", + "1483075823", + "1", + "8", + "0", + "-1", + "67", + "3", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973909", + "973909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075871", + "1483075872", + "1483075939", + "1483075871", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973911", + "973911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075884", + "1483075885", + "1483075946", + "1483075884", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973913", + "973913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075893", + "1483075894", + "1483075936", + "1483075893", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973919", + "973919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075936", + "1483075939", + "1483076003", + "1483075936", + "1", + "8", + "0", + "-1", + "64", + "3", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973921", + "973921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075939", + "1483075942", + "1483076012", + "1483075939", + "1", + "8", + "0", + "-1", + "70", + "3", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973927", + "973927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075961", + "1483075962", + "1483076005", + "1483075961", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973947", + "973947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076063", + "1483076064", + "1483076155", + "1483076063", + "1", + "8", + "0", + "-1", + "91", + "1", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973951", + "973951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076073", + "1483076074", + "1483076105", + "1483076073", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973955", + "973955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076104", + "1483076106", + "1483076157", + "1483076104", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973961", + "973961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076129", + "1483076130", + "1483076170", + "1483076129", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973965", + "973965", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076132", + "1483076133", + "1483076168", + "1483076132", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973983", + "973983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076171", + "1483076172", + "1483076243", + "1483076171", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973985", + "973985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076181", + "1483076182", + "1483076241", + "1483076181", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973987", + "973987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076183", + "1483076184", + "1483076323", + "1483076183", + "1", + "8", + "0", + "-1", + "139", + "1", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973989", + "973989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076184", + "1483076185", + "1483076238", + "1483076184", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973997", + "973997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076231", + "1483076232", + "1483076279", + "1483076231", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974009", + "974009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076268", + "1483076269", + "1483076320", + "1483076268", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974011", + "974011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076275", + "1483076277", + "1483076308", + "1483076275", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974017", + "974017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076299", + "1483076300", + "1483076331", + "1483076299", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974023", + "974023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076320", + "1483076321", + "1483076353", + "1483076320", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974032", + "974032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076332", + "1483076334", + "1483076473", + "1483076332", + "1", + "8", + "0", + "-1", + "139", + "2", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974034", + "974034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076338", + "1483076339", + "1483076389", + "1483076338", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974044", + "974044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076385", + "1483076386", + "1483076437", + "1483076385", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974054", + "974054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076423", + "1483076424", + "1483076472", + "1483076423", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974056", + "974056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076427", + "1483076428", + "1483076468", + "1483076427", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974058", + "974058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076428", + "1483076431", + "1483076485", + "1483076428", + "1", + "8", + "0", + "-1", + "54", + "3", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974060", + "974060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076438", + "1483076439", + "1483076473", + "1483076438", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974062", + "974062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076446", + "1483076447", + "1483076490", + "1483076446", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974070", + "974070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076474", + "1483076476", + "1483076521", + "1483076474", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974072", + "974072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076486", + "1483076487", + "1483076535", + "1483076486", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974074", + "974074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076490", + "1483076491", + "1483076553", + "1483076490", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974078", + "974078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076500", + "1483076502", + "1483076639", + "1483076500", + "1", + "8", + "0", + "-1", + "137", + "2", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974080", + "974080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076504", + "1483076505", + "1483076545", + "1483076504", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974084", + "974084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076522", + "1483076523", + "1483076596", + "1483076522", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974086", + "974086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076536", + "1483076537", + "1483076573", + "1483076536", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974088", + "974088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076545", + "1483076546", + "1483076586", + "1483076545", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974092", + "974092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076567", + "1483076568", + "1483076605", + "1483076567", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974104", + "974104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076596", + "1483076599", + "1483076650", + "1483076596", + "1", + "8", + "0", + "-1", + "51", + "3", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974108", + "974108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076610", + "1483076611", + "1483076656", + "1483076610", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974115", + "974115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076639", + "1483076642", + "1483076684", + "1483076639", + "1", + "8", + "0", + "-1", + "42", + "3", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974125", + "974125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076666", + "1483076668", + "1483076716", + "1483076666", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974127", + "974127", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076684", + "1483076685", + "1483076760", + "1483076684", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974145", + "974145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076761", + "1483076763", + "1483076797", + "1483076761", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974151", + "974151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076789", + "1483076790", + "1483076837", + "1483076789", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974160", + "974160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076803", + "1483076805", + "1483076845", + "1483076803", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974164", + "974164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076811", + "1483076812", + "1483076876", + "1483076811", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974166", + "974166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076822", + "1483076823", + "1483076858", + "1483076822", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974168", + "974168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076825", + "1483076826", + "1483076956", + "1483076825", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974170", + "974170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076837", + "1483076838", + "1483076875", + "1483076837", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974172", + "974172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076838", + "1483076841", + "1483076882", + "1483076838", + "1", + "8", + "0", + "-1", + "41", + "3", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974174", + "974174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076846", + "1483076847", + "1483076913", + "1483076846", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974186", + "974186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076902", + "1483076903", + "1483076935", + "1483076902", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974206", + "974206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076954", + "1483076955", + "1483076988", + "1483076954", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974208", + "974208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076957", + "1483076958", + "1483077010", + "1483076957", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974210", + "974210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076959", + "1483076960", + "1483076993", + "1483076959", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974213", + "974213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076960", + "1483076961", + "1483077090", + "1483076960", + "1", + "8", + "0", + "-1", + "129", + "1", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974215", + "974215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076960", + "1483076961", + "1483076997", + "1483076960", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974221", + "974221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076988", + "1483076989", + "1483077020", + "1483076988", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974223", + "974223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076993", + "1483076994", + "1483077027", + "1483076993", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974231", + "974231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077020", + "1483077021", + "1483077067", + "1483077020", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974237", + "974237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077032", + "1483077034", + "1483077071", + "1483077032", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974241", + "974241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077055", + "1483077057", + "1483077090", + "1483077055", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974243", + "974243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077059", + "1483077060", + "1483077113", + "1483077059", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974260", + "974260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077097", + "1483077098", + "1483077147", + "1483077097", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974262", + "974262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077113", + "1483077114", + "1483077170", + "1483077113", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974264", + "974264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077134", + "1483077135", + "1483077191", + "1483077134", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974266", + "974266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077148", + "1483077149", + "1483077185", + "1483077148", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974268", + "974268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077155", + "1483077156", + "1483077186", + "1483077155", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974270", + "974270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077159", + "1483077160", + "1483077211", + "1483077159", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974272", + "974272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077171", + "1483077172", + "1483077213", + "1483077171", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974276", + "974276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077186", + "1483077187", + "1483077227", + "1483077186", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974278", + "974278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077192", + "1483077193", + "1483077226", + "1483077192", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974280", + "974280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077212", + "1483077213", + "1483077272", + "1483077212", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974282", + "974282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077214", + "1483077216", + "1483077260", + "1483077214", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974284", + "974284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077216", + "1483077219", + "1483077278", + "1483077216", + "1", + "8", + "0", + "-1", + "59", + "3", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974286", + "974286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077226", + "1483077227", + "1483077275", + "1483077226", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974290", + "974290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077237", + "1483077238", + "1483077269", + "1483077237", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974298", + "974298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077272", + "1483077273", + "1483077335", + "1483077272", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974300", + "974300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077276", + "1483077277", + "1483077328", + "1483077276", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974304", + "974304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077279", + "1483077280", + "1483077424", + "1483077279", + "1", + "8", + "0", + "-1", + "144", + "1", + "1152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974308", + "974308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077290", + "1483077291", + "1483077370", + "1483077290", + "1", + "8", + "0", + "-1", + "79", + "1", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974310", + "974310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077320", + "1483077321", + "1483077374", + "1483077320", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974316", + "974316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077347", + "1483077348", + "1483077378", + "1483077347", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974347", + "974347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077444", + "1483077447", + "1483077500", + "1483077444", + "1", + "8", + "0", + "-1", + "53", + "3", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974351", + "974351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077451", + "1483077453", + "1483077496", + "1483077451", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974359", + "974359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077485", + "1483077486", + "1483077517", + "1483077485", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974361", + "974361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077497", + "1483077498", + "1483077531", + "1483077497", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974363", + "974363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077501", + "1483077502", + "1483077538", + "1483077501", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974369", + "974369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077518", + "1483077520", + "1483077554", + "1483077518", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974373", + "974373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077531", + "1483077532", + "1483077567", + "1483077531", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974375", + "974375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077539", + "1483077540", + "1483077598", + "1483077539", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974377", + "974377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077540", + "1483077543", + "1483077600", + "1483077540", + "1", + "8", + "0", + "-1", + "57", + "3", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974379", + "974379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077544", + "1483077546", + "1483077580", + "1483077544", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974385", + "974385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077567", + "1483077568", + "1483077615", + "1483077567", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974391", + "974391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077580", + "1483077582", + "1483077657", + "1483077580", + "1", + "8", + "0", + "-1", + "75", + "2", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974393", + "974393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077584", + "1483077585", + "1483077656", + "1483077584", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974397", + "974397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077601", + "1483077602", + "1483077663", + "1483077601", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974399", + "974399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077616", + "1483077617", + "1483077653", + "1483077616", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974405", + "974405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077657", + "1483077658", + "1483077731", + "1483077657", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974415", + "974415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077699", + "1483077701", + "1483077756", + "1483077699", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974429", + "974429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077747", + "1483077748", + "1483077808", + "1483077747", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974433", + "974433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077767", + "1483077768", + "1483077830", + "1483077767", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974439", + "974439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077802", + "1483077803", + "1483077905", + "1483077802", + "1", + "8", + "0", + "-1", + "102", + "1", + "816", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974443", + "974443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077808", + "1483077809", + "1483077924", + "1483077808", + "1", + "8", + "0", + "-1", + "115", + "1", + "920", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974454", + "974454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077851", + "1483077852", + "1483077883", + "1483077851", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974464", + "974464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077895", + "1483077897", + "1483077948", + "1483077895", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974466", + "974466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077905", + "1483077906", + "1483077936", + "1483077905", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974476", + "974476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077941", + "1483077942", + "1483077973", + "1483077941", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974478", + "974478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077948", + "1483077949", + "1483077984", + "1483077948", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974483", + "974483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077959", + "1483077960", + "1483078007", + "1483077959", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974485", + "974485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077962", + "1483077963", + "1483078098", + "1483077962", + "1", + "8", + "0", + "-1", + "135", + "1", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974489", + "974489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077985", + "1483077986", + "1483078020", + "1483077985", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974493", + "974493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077991", + "1483077992", + "1483078032", + "1483077991", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974505", + "974505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078033", + "1483078034", + "1483078066", + "1483078033", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974509", + "974509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078039", + "1483078040", + "1483078080", + "1483078039", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974525", + "974525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078090", + "1483078093", + "1483078129", + "1483078090", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974529", + "974529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078098", + "1483078099", + "1483078163", + "1483078098", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974533", + "974533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078110", + "1483078112", + "1483078157", + "1483078110", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974535", + "974535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078112", + "1483078115", + "1483078152", + "1483078112", + "1", + "8", + "0", + "-1", + "37", + "3", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974553", + "974553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078182", + "1483078183", + "1483078217", + "1483078182", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974561", + "974561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078209", + "1483078210", + "1483078244", + "1483078209", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974567", + "974567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078216", + "1483078217", + "1483078250", + "1483078216", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974569", + "974569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078217", + "1483078220", + "1483078250", + "1483078217", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974573", + "974573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078231", + "1483078234", + "1483078271", + "1483078231", + "1", + "8", + "0", + "-1", + "37", + "3", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974575", + "974575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078234", + "1483078237", + "1483078284", + "1483078234", + "1", + "8", + "0", + "-1", + "47", + "3", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974589", + "974589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078274", + "1483078275", + "1483078305", + "1483078274", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974609", + "974609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078314", + "1483078315", + "1483078351", + "1483078314", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974618", + "974618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078338", + "1483078339", + "1483078374", + "1483078338", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974624", + "974624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078354", + "1483078355", + "1483078395", + "1483078354", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974628", + "974628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078368", + "1483078369", + "1483078413", + "1483078368", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974634", + "974634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078375", + "1483078377", + "1483078422", + "1483078375", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974642", + "974642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078399", + "1483078402", + "1483078451", + "1483078399", + "1", + "8", + "0", + "-1", + "49", + "3", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974644", + "974644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078413", + "1483078414", + "1483078457", + "1483078413", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974646", + "974646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078417", + "1483078418", + "1483078450", + "1483078417", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974650", + "974650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078423", + "1483078424", + "1483078457", + "1483078423", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974662", + "974662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078453", + "1483078454", + "1483078488", + "1483078453", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974669", + "974669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078475", + "1483078476", + "1483078532", + "1483078475", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974671", + "974671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078478", + "1483078479", + "1483078522", + "1483078478", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974677", + "974677", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078497", + "1483078498", + "1483078529", + "1483078497", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974687", + "974687", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078531", + "1483078532", + "1483078565", + "1483078531", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974691", + "974691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078532", + "1483078533", + "1483078570", + "1483078532", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974693", + "974693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078551", + "1483078552", + "1483078611", + "1483078551", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974695", + "974695", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078556", + "1483078558", + "1483078590", + "1483078556", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974697", + "974697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078558", + "1483078561", + "1483078614", + "1483078558", + "1", + "8", + "0", + "-1", + "53", + "3", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974699", + "974699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078565", + "1483078566", + "1483078599", + "1483078565", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974701", + "974701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078567", + "1483078569", + "1483078610", + "1483078567", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974705", + "974705", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078591", + "1483078592", + "1483078628", + "1483078591", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974707", + "974707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078598", + "1483078599", + "1483078664", + "1483078598", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974709", + "974709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078600", + "1483078602", + "1483078673", + "1483078600", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974717", + "974717", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078611", + "1483078613", + "1483078701", + "1483078611", + "1", + "8", + "0", + "-1", + "88", + "2", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974719", + "974719", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078615", + "1483078618", + "1483078704", + "1483078615", + "1", + "8", + "0", + "-1", + "86", + "3", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974721", + "974721", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078629", + "1483078630", + "1483078670", + "1483078629", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974727", + "974727", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078665", + "1483078666", + "1483078737", + "1483078665", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974729", + "974729", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078667", + "1483078669", + "1483078706", + "1483078667", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974731", + "974731", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078670", + "1483078672", + "1483078723", + "1483078670", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974733", + "974733", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078674", + "1483078675", + "1483078718", + "1483078674", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974735", + "974735", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078701", + "1483078702", + "1483078751", + "1483078701", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974737", + "974737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078704", + "1483078705", + "1483078773", + "1483078704", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974739", + "974739", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078706", + "1483078708", + "1483078750", + "1483078706", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974747", + "974747", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078750", + "1483078751", + "1483078785", + "1483078750", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974749", + "974749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078752", + "1483078754", + "1483078816", + "1483078752", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974753", + "974753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078768", + "1483078769", + "1483078854", + "1483078768", + "1", + "8", + "0", + "-1", + "85", + "1", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974761", + "974761", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078786", + "1483078788", + "1483078845", + "1483078786", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974763", + "974763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078789", + "1483078790", + "1483078842", + "1483078789", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974769", + "974769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078842", + "1483078843", + "1483078912", + "1483078842", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974777", + "974777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078872", + "1483078873", + "1483078932", + "1483078872", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974782", + "974782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078891", + "1483078892", + "1483078945", + "1483078891", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974784", + "974784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078912", + "1483078913", + "1483078986", + "1483078912", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974794", + "974794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078960", + "1483078961", + "1483079020", + "1483078960", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974798", + "974798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078973", + "1483078975", + "1483079019", + "1483078973", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974801", + "974801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078973", + "1483078975", + "1483079030", + "1483078973", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974803", + "974803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078975", + "1483078978", + "1483079141", + "1483078975", + "1", + "8", + "0", + "-1", + "163", + "3", + "1304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974805", + "974805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078987", + "1483078988", + "1483079056", + "1483078987", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974809", + "974809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078998", + "1483078999", + "1483079092", + "1483078998", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974811", + "974811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079019", + "1483079020", + "1483079156", + "1483079019", + "1", + "8", + "0", + "-1", + "136", + "1", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974813", + "974813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079021", + "1483079023", + "1483079159", + "1483079021", + "1", + "8", + "0", + "-1", + "136", + "2", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974815", + "974815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079031", + "1483079032", + "1483079170", + "1483079031", + "1", + "8", + "0", + "-1", + "138", + "1", + "1104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974817", + "974817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079057", + "1483079058", + "1483079195", + "1483079057", + "1", + "8", + "0", + "-1", + "137", + "1", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974827", + "974827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079142", + "1483079143", + "1483079291", + "1483079142", + "1", + "8", + "0", + "-1", + "148", + "1", + "1184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974829", + "974829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079155", + "1483079156", + "1483079298", + "1483079155", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974833", + "974833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079160", + "1483079161", + "1483079295", + "1483079160", + "1", + "8", + "0", + "-1", + "134", + "1", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974835", + "974835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079170", + "1483079171", + "1483079285", + "1483079170", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974837", + "974837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079195", + "1483079196", + "1483079272", + "1483079195", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974859", + "974859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079298", + "1483079299", + "1483079344", + "1483079298", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974871", + "974871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079392", + "1483079394", + "1483079451", + "1483079392", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974875", + "974875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079413", + "1483079414", + "1483079477", + "1483079413", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974879", + "974879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079438", + "1483079441", + "1483079485", + "1483079438", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974881", + "974881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079442", + "1483079444", + "1483079486", + "1483079442", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974883", + "974883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079445", + "1483079447", + "1483079488", + "1483079445", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974885", + "974885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079451", + "1483079452", + "1483079497", + "1483079451", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974887", + "974887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079468", + "1483079469", + "1483079513", + "1483079468", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974889", + "974889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079477", + "1483079478", + "1483079541", + "1483079477", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974891", + "974891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079485", + "1483079486", + "1483079548", + "1483079485", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974893", + "974893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079486", + "1483079489", + "1483079537", + "1483079486", + "1", + "8", + "0", + "-1", + "48", + "3", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974895", + "974895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079489", + "1483079492", + "1483079653", + "1483079489", + "1", + "8", + "0", + "-1", + "161", + "3", + "1288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974897", + "974897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079498", + "1483079499", + "1483079567", + "1483079498", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974901", + "974901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079513", + "1483079514", + "1483079601", + "1483079513", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974907", + "974907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079538", + "1483079539", + "1483079614", + "1483079538", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974909", + "974909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079541", + "1483079542", + "1483079592", + "1483079541", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974911", + "974911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079548", + "1483079549", + "1483079616", + "1483079548", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974917", + "974917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079592", + "1483079593", + "1483079673", + "1483079592", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974919", + "974919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079601", + "1483079602", + "1483079642", + "1483079601", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974923", + "974923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079615", + "1483079616", + "1483079662", + "1483079615", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974925", + "974925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079617", + "1483079619", + "1483079690", + "1483079617", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974927", + "974927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079642", + "1483079643", + "1483079677", + "1483079642", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974929", + "974929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079653", + "1483079654", + "1483079702", + "1483079653", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974933", + "974933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079673", + "1483079674", + "1483079714", + "1483079673", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974935", + "974935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079677", + "1483079678", + "1483079766", + "1483079677", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974937", + "974937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079686", + "1483079687", + "1483079745", + "1483079686", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974943", + "974943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079704", + "1483079706", + "1483079773", + "1483079704", + "1", + "8", + "0", + "-1", + "67", + "2", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974951", + "974951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079766", + "1483079767", + "1483079813", + "1483079766", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974961", + "974961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079814", + "1483079815", + "1483079892", + "1483079814", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974967", + "974967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079831", + "1483079833", + "1483079909", + "1483079831", + "1", + "8", + "0", + "-1", + "76", + "2", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974969", + "974969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079846", + "1483079847", + "1483079921", + "1483079846", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974971", + "974971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079849", + "1483079850", + "1483079919", + "1483079849", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974973", + "974973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079873", + "1483079874", + "1483079911", + "1483079873", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974975", + "974975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079893", + "1483079894", + "1483079925", + "1483079893", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974977", + "974977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079895", + "1483079897", + "1483079944", + "1483079895", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974979", + "974979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079910", + "1483079911", + "1483079976", + "1483079910", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974981", + "974981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079912", + "1483079914", + "1483079965", + "1483079912", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974985", + "974985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079922", + "1483079923", + "1483080019", + "1483079922", + "1", + "8", + "0", + "-1", + "96", + "1", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974989", + "974989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079945", + "1483079946", + "1483080010", + "1483079945", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974991", + "974991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079966", + "1483079967", + "1483080066", + "1483079966", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974995", + "974995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079977", + "1483079978", + "1483080011", + "1483079977", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974999", + "974999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080012", + "1483080014", + "1483080048", + "1483080012", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975003", + "975003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080019", + "1483080020", + "1483080052", + "1483080019", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975009", + "975009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080042", + "1483080044", + "1483080091", + "1483080042", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975013", + "975013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080053", + "1483080054", + "1483080088", + "1483080053", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975015", + "975015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080066", + "1483080067", + "1483080104", + "1483080066", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975026", + "975026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080096", + "1483080099", + "1483080153", + "1483080096", + "1", + "8", + "0", + "-1", + "54", + "3", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975028", + "975028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080104", + "1483080105", + "1483080136", + "1483080104", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975032", + "975032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080111", + "1483080113", + "1483080239", + "1483080111", + "1", + "8", + "0", + "-1", + "126", + "2", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975038", + "975038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080136", + "1483080137", + "1483080172", + "1483080136", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975040", + "975040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080151", + "1483080152", + "1483080188", + "1483080151", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975044", + "975044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080154", + "1483080155", + "1483080186", + "1483080154", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975072", + "975072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080238", + "1483080240", + "1483080275", + "1483080238", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975074", + "975074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080240", + "1483080241", + "1483080303", + "1483080240", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975076", + "975076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080244", + "1483080245", + "1483080306", + "1483080244", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975078", + "975078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080245", + "1483080248", + "1483080375", + "1483080245", + "1", + "8", + "0", + "-1", + "127", + "3", + "1016", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975080", + "975080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080249", + "1483080251", + "1483080283", + "1483080249", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975082", + "975082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080260", + "1483080261", + "1483080303", + "1483080260", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975088", + "975088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080284", + "1483080285", + "1483080322", + "1483080284", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975090", + "975090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080299", + "1483080300", + "1483080331", + "1483080299", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975098", + "975098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080323", + "1483080324", + "1483080366", + "1483080323", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975100", + "975100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080328", + "1483080329", + "1483080376", + "1483080328", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975102", + "975102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080330", + "1483080332", + "1483080373", + "1483080330", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975104", + "975104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080332", + "1483080335", + "1483080365", + "1483080332", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975106", + "975106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080336", + "1483080338", + "1483080370", + "1483080336", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975118", + "975118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080377", + "1483080378", + "1483080431", + "1483080377", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975125", + "975125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080392", + "1483080395", + "1483080437", + "1483080392", + "1", + "8", + "0", + "-1", + "42", + "3", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975143", + "975143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080440", + "1483080441", + "1483080481", + "1483080440", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975149", + "975149", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080457", + "1483080458", + "1483080495", + "1483080457", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975151", + "975151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080458", + "1483080461", + "1483080492", + "1483080458", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975163", + "975163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080493", + "1483080495", + "1483080547", + "1483080493", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975166", + "975166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080493", + "1483080495", + "1483080538", + "1483080493", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975168", + "975168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080496", + "1483080498", + "1483080623", + "1483080496", + "1", + "8", + "0", + "-1", + "125", + "2", + "1000", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975172", + "975172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080512", + "1483080513", + "1483080563", + "1483080512", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975182", + "975182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080549", + "1483080550", + "1483080590", + "1483080549", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975188", + "975188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080571", + "1483080572", + "1483080611", + "1483080571", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975192", + "975192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080579", + "1483080580", + "1483080621", + "1483080579", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975196", + "975196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080590", + "1483080591", + "1483080623", + "1483080590", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975207", + "975207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080622", + "1483080623", + "1483080670", + "1483080622", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975209", + "975209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080623", + "1483080625", + "1483080657", + "1483080623", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975211", + "975211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080623", + "1483080625", + "1483080670", + "1483080623", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975213", + "975213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080625", + "1483080626", + "1483080744", + "1483080625", + "1", + "8", + "0", + "-1", + "118", + "1", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975217", + "975217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080632", + "1483080634", + "1483080693", + "1483080632", + "1", + "8", + "0", + "-1", + "59", + "2", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975256", + "975256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080738", + "1483080739", + "1483080780", + "1483080738", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975266", + "975266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080748", + "1483080749", + "1483080795", + "1483080748", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975284", + "975284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080817", + "1483080818", + "1483080867", + "1483080817", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975286", + "975286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080820", + "1483080821", + "1483080865", + "1483080820", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975300", + "975300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080866", + "1483080867", + "1483080911", + "1483080866", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975302", + "975302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080867", + "1483080868", + "1483080911", + "1483080867", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975316", + "975316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080912", + "1483080914", + "1483080951", + "1483080912", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975318", + "975318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080916", + "1483080917", + "1483080948", + "1483080916", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975324", + "975324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080941", + "1483080943", + "1483080973", + "1483080941", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975328", + "975328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080951", + "1483080952", + "1483080983", + "1483080951", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975330", + "975330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080952", + "1483080953", + "1483080995", + "1483080952", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975344", + "975344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081001", + "1483081002", + "1483081040", + "1483081001", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975346", + "975346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081002", + "1483081003", + "1483081047", + "1483081002", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975348", + "975348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081008", + "1483081009", + "1483081074", + "1483081008", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975355", + "975355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081029", + "1483081030", + "1483081064", + "1483081029", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975359", + "975359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081048", + "1483081049", + "1483081084", + "1483081048", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975365", + "975365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081065", + "1483081066", + "1483081108", + "1483081065", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975369", + "975369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081081", + "1483081082", + "1483081123", + "1483081081", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975371", + "975371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081081", + "1483081082", + "1483081121", + "1483081081", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975373", + "975373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081083", + "1483081084", + "1483081120", + "1483081083", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975377", + "975377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081096", + "1483081097", + "1483081132", + "1483081096", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975389", + "975389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081131", + "1483081132", + "1483081178", + "1483081131", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975391", + "975391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081132", + "1483081135", + "1483081187", + "1483081132", + "1", + "8", + "0", + "-1", + "52", + "3", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975397", + "975397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081145", + "1483081147", + "1483081193", + "1483081145", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975403", + "975403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081178", + "1483081179", + "1483081217", + "1483081178", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975405", + "975405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081184", + "1483081185", + "1483081225", + "1483081184", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975411", + "975411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081193", + "1483081194", + "1483081237", + "1483081193", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975421", + "975421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081225", + "1483081226", + "1483081271", + "1483081225", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975440", + "975440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081271", + "1483081273", + "1483081395", + "1483081271", + "1", + "8", + "0", + "-1", + "122", + "2", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975452", + "975452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081325", + "1483081326", + "1483081387", + "1483081325", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975454", + "975454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081326", + "1483081329", + "1483081383", + "1483081326", + "1", + "8", + "0", + "-1", + "54", + "3", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975456", + "975456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081337", + "1483081338", + "1483081391", + "1483081337", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975458", + "975458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081346", + "1483081347", + "1483081388", + "1483081346", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975462", + "975462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081380", + "1483081381", + "1483081442", + "1483081380", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975464", + "975464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081383", + "1483081384", + "1483081450", + "1483081383", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975472", + "975472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081392", + "1483081394", + "1483081451", + "1483081392", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975474", + "975474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081395", + "1483081397", + "1483081448", + "1483081395", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975478", + "975478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081442", + "1483081443", + "1483081495", + "1483081442", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975480", + "975480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081444", + "1483081445", + "1483081525", + "1483081444", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975486", + "975486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081450", + "1483081451", + "1483081621", + "1483081450", + "1", + "8", + "0", + "-1", + "170", + "1", + "1360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975488", + "975488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081451", + "1483081452", + "1483081553", + "1483081451", + "1", + "8", + "0", + "-1", + "101", + "1", + "808", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975492", + "975492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081496", + "1483081498", + "1483081582", + "1483081496", + "1", + "8", + "0", + "-1", + "84", + "2", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975502", + "975502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081537", + "1483081538", + "1483081575", + "1483081537", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975506", + "975506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081553", + "1483081554", + "1483081599", + "1483081553", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975511", + "975511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081556", + "1483081558", + "1483081590", + "1483081556", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975525", + "975525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081602", + "1483081603", + "1483081637", + "1483081602", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975531", + "975531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081621", + "1483081622", + "1483081725", + "1483081621", + "1", + "8", + "0", + "-1", + "103", + "1", + "824", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975533", + "975533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081622", + "1483081624", + "1483081659", + "1483081622", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975543", + "975543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081667", + "1483081668", + "1483081698", + "1483081667", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975547", + "975547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081674", + "1483081675", + "1483081711", + "1483081674", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975554", + "975554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081698", + "1483081699", + "1483081732", + "1483081698", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975556", + "975556", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081700", + "1483081702", + "1483081737", + "1483081700", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975558", + "975558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081703", + "1483081705", + "1483081739", + "1483081703", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975570", + "975570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081735", + "1483081738", + "1483081782", + "1483081735", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975572", + "975572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081738", + "1483081739", + "1483081797", + "1483081738", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975576", + "975576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081744", + "1483081745", + "1483081855", + "1483081744", + "1", + "8", + "0", + "-1", + "110", + "1", + "880", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975582", + "975582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081753", + "1483081756", + "1483081787", + "1483081753", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975584", + "975584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081768", + "1483081769", + "1483081804", + "1483081768", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975588", + "975588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081783", + "1483081786", + "1483081822", + "1483081783", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975590", + "975590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081787", + "1483081789", + "1483081824", + "1483081787", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975596", + "975596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081816", + "1483081817", + "1483081849", + "1483081816", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975598", + "975598", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081820", + "1483081821", + "1483081860", + "1483081820", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975600", + "975600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081821", + "1483081822", + "1483081861", + "1483081821", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975604", + "975604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081824", + "1483081827", + "1483081857", + "1483081824", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975618", + "975618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081861", + "1483081864", + "1483081909", + "1483081861", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975622", + "975622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081877", + "1483081878", + "1483081994", + "1483081877", + "1", + "8", + "0", + "-1", + "116", + "1", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975626", + "975626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081880", + "1483081881", + "1483081925", + "1483081880", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975634", + "975634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081911", + "1483081912", + "1483081946", + "1483081911", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975638", + "975638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081917", + "1483081918", + "1483081951", + "1483081917", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975642", + "975642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081934", + "1483081935", + "1483081976", + "1483081934", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975646", + "975646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081941", + "1483081942", + "1483081978", + "1483081941", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975650", + "975650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081946", + "1483081948", + "1483081981", + "1483081946", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975662", + "975662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081982", + "1483081984", + "1483082019", + "1483081982", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975668", + "975668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081995", + "1483081996", + "1483082110", + "1483081995", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975680", + "975680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082028", + "1483082029", + "1483082063", + "1483082028", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975708", + "975708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082093", + "1483082094", + "1483082127", + "1483082093", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975710", + "975710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082097", + "1483082098", + "1483082136", + "1483082097", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975712", + "975712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082101", + "1483082102", + "1483082141", + "1483082101", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975714", + "975714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082105", + "1483082106", + "1483082201", + "1483082105", + "1", + "8", + "0", + "-1", + "95", + "1", + "760", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975716", + "975716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082111", + "1483082112", + "1483082144", + "1483082111", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975718", + "975718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082114", + "1483082115", + "1483082149", + "1483082114", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975724", + "975724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082137", + "1483082138", + "1483082181", + "1483082137", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975728", + "975728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082145", + "1483082146", + "1483082178", + "1483082145", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975732", + "975732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082165", + "1483082166", + "1483082200", + "1483082165", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975734", + "975734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082178", + "1483082179", + "1483082236", + "1483082178", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975736", + "975736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082179", + "1483082181", + "1483082217", + "1483082179", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975738", + "975738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082181", + "1483082182", + "1483082236", + "1483082181", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975752", + "975752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082236", + "1483082237", + "1483082271", + "1483082236", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975762", + "975762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082256", + "1483082259", + "1483082299", + "1483082256", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975764", + "975764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082271", + "1483082272", + "1483082350", + "1483082271", + "1", + "8", + "0", + "-1", + "78", + "1", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975766", + "975766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082279", + "1483082280", + "1483082317", + "1483082279", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975771", + "975771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082297", + "1483082298", + "1483082344", + "1483082297", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975773", + "975773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082300", + "1483082301", + "1483082347", + "1483082300", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975775", + "975775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082317", + "1483082318", + "1483082352", + "1483082317", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975783", + "975783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082346", + "1483082348", + "1483082397", + "1483082346", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975787", + "975787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082350", + "1483082351", + "1483082394", + "1483082350", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975792", + "975792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082352", + "1483082354", + "1483082384", + "1483082352", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975796", + "975796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082385", + "1483082386", + "1483082419", + "1483082385", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975798", + "975798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082388", + "1483082389", + "1483082456", + "1483082388", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975802", + "975802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082395", + "1483082397", + "1483082464", + "1483082395", + "1", + "8", + "0", + "-1", + "67", + "2", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975808", + "975808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082412", + "1483082413", + "1483082497", + "1483082412", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975810", + "975810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082414", + "1483082416", + "1483082455", + "1483082414", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975812", + "975812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082419", + "1483082420", + "1483082459", + "1483082419", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975818", + "975818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082456", + "1483082457", + "1483082517", + "1483082456", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975822", + "975822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082460", + "1483082461", + "1483082492", + "1483082460", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975826", + "975826", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082488", + "1483082489", + "1483082540", + "1483082488", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975832", + "975832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082498", + "1483082499", + "1483082532", + "1483082498", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975838", + "975838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082533", + "1483082534", + "1483082584", + "1483082533", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975840", + "975840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082536", + "1483082537", + "1483082567", + "1483082536", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975844", + "975844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082541", + "1483082542", + "1483082582", + "1483082541", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975846", + "975846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082544", + "1483082545", + "1483082596", + "1483082544", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975848", + "975848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082558", + "1483082559", + "1483082630", + "1483082558", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975850", + "975850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082568", + "1483082569", + "1483082721", + "1483082568", + "1", + "8", + "0", + "-1", + "152", + "1", + "1216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975852", + "975852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082570", + "1483082572", + "1483082628", + "1483082570", + "1", + "8", + "0", + "-1", + "56", + "2", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975856", + "975856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082585", + "1483082586", + "1483082624", + "1483082585", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975862", + "975862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082624", + "1483082627", + "1483082753", + "1483082624", + "1", + "8", + "0", + "-1", + "126", + "3", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975866", + "975866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082631", + "1483082633", + "1483082749", + "1483082631", + "1", + "8", + "0", + "-1", + "116", + "2", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975877", + "975877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082725", + "1483082728", + "1483082800", + "1483082725", + "1", + "8", + "0", + "-1", + "72", + "3", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975895", + "975895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082838", + "1483082839", + "1483083037", + "1483082838", + "1", + "8", + "0", + "-1", + "198", + "1", + "1584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975897", + "975897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082841", + "1483082842", + "1483082895", + "1483082841", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975899", + "975899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082856", + "1483082857", + "1483083015", + "1483082856", + "1", + "8", + "0", + "-1", + "158", + "1", + "1264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975901", + "975901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082868", + "1483082869", + "1483082955", + "1483082868", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975925", + "975925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082981", + "1483082982", + "1483083023", + "1483082981", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975935", + "975935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083016", + "1483083017", + "1483083101", + "1483083016", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975941", + "975941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083026", + "1483083027", + "1483083188", + "1483083026", + "1", + "8", + "0", + "-1", + "161", + "1", + "1288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975945", + "975945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083037", + "1483083039", + "1483083123", + "1483083037", + "1", + "8", + "0", + "-1", + "84", + "2", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975947", + "975947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083053", + "1483083054", + "1483083119", + "1483083053", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975949", + "975949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083080", + "1483083081", + "1483083124", + "1483083080", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975953", + "975953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083101", + "1483083102", + "1483083144", + "1483083101", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975959", + "975959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083119", + "1483083120", + "1483083151", + "1483083119", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975961", + "975961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083123", + "1483083124", + "1483083193", + "1483083123", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975963", + "975963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083125", + "1483083126", + "1483083174", + "1483083125", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975971", + "975971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083141", + "1483083142", + "1483083174", + "1483083141", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975973", + "975973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083144", + "1483083145", + "1483083176", + "1483083144", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975975", + "975975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083151", + "1483083152", + "1483083190", + "1483083151", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975984", + "975984", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083177", + "1483083178", + "1483083243", + "1483083177", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975988", + "975988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083190", + "1483083192", + "1483083251", + "1483083190", + "1", + "8", + "0", + "-1", + "59", + "2", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975990", + "975990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083194", + "1483083195", + "1483083237", + "1483083194", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975996", + "975996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083237", + "1483083238", + "1483083301", + "1483083237", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975998", + "975998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083244", + "1483083245", + "1483083307", + "1483083244", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976002", + "976002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083251", + "1483083252", + "1483083309", + "1483083251", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976014", + "976014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083302", + "1483083305", + "1483083368", + "1483083302", + "1", + "8", + "0", + "-1", + "63", + "3", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976018", + "976018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083309", + "1483083311", + "1483083357", + "1483083309", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976020", + "976020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083344", + "1483083345", + "1483083381", + "1483083344", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976022", + "976022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083350", + "1483083351", + "1483083386", + "1483083350", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976025", + "976025", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083351", + "1483083354", + "1483083429", + "1483083351", + "1", + "8", + "0", + "-1", + "75", + "3", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976031", + "976031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083365", + "1483083367", + "1483083518", + "1483083365", + "1", + "8", + "0", + "-1", + "151", + "2", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976033", + "976033", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083369", + "1483083370", + "1483083446", + "1483083369", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976075", + "976075", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083485", + "1483083486", + "1483083549", + "1483083485", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976118", + "976118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083581", + "1483083584", + "1483083645", + "1483083581", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976120", + "976120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083584", + "1483083587", + "1483083619", + "1483083584", + "1", + "8", + "0", + "-1", + "32", + "3", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976122", + "976122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083592", + "1483083593", + "1483083624", + "1483083592", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976126", + "976126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083604", + "1483083606", + "1483083640", + "1483083604", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976160", + "976160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083672", + "1483083673", + "1483083739", + "1483083672", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976162", + "976162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083674", + "1483083676", + "1483083712", + "1483083674", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976164", + "976164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083677", + "1483083679", + "1483083715", + "1483083677", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976200", + "976200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083761", + "1483083762", + "1483083797", + "1483083761", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976204", + "976204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083769", + "1483083770", + "1483083806", + "1483083769", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976236", + "976236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083838", + "1483083841", + "1483083910", + "1483083838", + "1", + "8", + "0", + "-1", + "69", + "3", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976238", + "976238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083842", + "1483083843", + "1483083875", + "1483083842", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976272", + "976272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083905", + "1483083907", + "1483083969", + "1483083905", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976276", + "976276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083909", + "1483083910", + "1483083942", + "1483083909", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976302", + "976302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083965", + "1483083968", + "1483084028", + "1483083965", + "1", + "8", + "0", + "-1", + "60", + "3", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976308", + "976308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083978", + "1483083979", + "1483084021", + "1483083978", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976338", + "976338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084064", + "1483084065", + "1483084186", + "1483084064", + "1", + "8", + "0", + "-1", + "121", + "1", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976340", + "976340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084066", + "1483084068", + "1483084105", + "1483084066", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976344", + "976344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084073", + "1483084074", + "1483084104", + "1483084073", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976367", + "976367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084129", + "1483084132", + "1483084248", + "1483084129", + "1", + "8", + "0", + "-1", + "116", + "3", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976369", + "976369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084132", + "1483084133", + "1483084165", + "1483084132", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976399", + "976399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084201", + "1483084202", + "1483084238", + "1483084201", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976401", + "976401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084206", + "1483084207", + "1483084253", + "1483084206", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976403", + "976403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084214", + "1483084215", + "1483084251", + "1483084214", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976405", + "976405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084220", + "1483084221", + "1483084259", + "1483084220", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976407", + "976407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084221", + "1483084224", + "1483084279", + "1483084221", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976411", + "976411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084238", + "1483084239", + "1483084287", + "1483084238", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976415", + "976415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084251", + "1483084252", + "1483084328", + "1483084251", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976417", + "976417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084253", + "1483084255", + "1483084343", + "1483084253", + "1", + "8", + "0", + "-1", + "88", + "2", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976421", + "976421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084279", + "1483084280", + "1483084445", + "1483084279", + "1", + "8", + "0", + "-1", + "165", + "1", + "1320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976425", + "976425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084289", + "1483084291", + "1483084387", + "1483084289", + "1", + "8", + "0", + "-1", + "96", + "2", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976445", + "976445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084385", + "1483084386", + "1483084470", + "1483084385", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976447", + "976447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084387", + "1483084389", + "1483084424", + "1483084387", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976469", + "976469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084446", + "1483084447", + "1483084479", + "1483084446", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976485", + "976485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084484", + "1483084485", + "1483084515", + "1483084484", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976487", + "976487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084485", + "1483084486", + "1483084569", + "1483084485", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976491", + "976491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084497", + "1483084498", + "1483084533", + "1483084497", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976493", + "976493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084503", + "1483084504", + "1483084546", + "1483084503", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976507", + "976507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084542", + "1483084543", + "1483084575", + "1483084542", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976529", + "976529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084590", + "1483084591", + "1483084624", + "1483084590", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976531", + "976531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084595", + "1483084596", + "1483084635", + "1483084595", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976535", + "976535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084607", + "1483084608", + "1483084738", + "1483084607", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976539", + "976539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084624", + "1483084625", + "1483084660", + "1483084624", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976545", + "976545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084629", + "1483084631", + "1483084667", + "1483084629", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976551", + "976551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084660", + "1483084661", + "1483084718", + "1483084660", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976555", + "976555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084668", + "1483084669", + "1483084702", + "1483084668", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976563", + "976563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084705", + "1483084706", + "1483084783", + "1483084705", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976565", + "976565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084718", + "1483084719", + "1483084961", + "1483084718", + "1", + "8", + "0", + "-1", + "242", + "1", + "1936", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976571", + "976571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084748", + "1483084749", + "1483084841", + "1483084748", + "1", + "8", + "0", + "-1", + "92", + "1", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976579", + "976579", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084832", + "1483084833", + "1483084878", + "1483084832", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976611", + "976611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084925", + "1483084926", + "1483084959", + "1483084925", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976613", + "976613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084931", + "1483084932", + "1483084972", + "1483084931", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976615", + "976615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084940", + "1483084941", + "1483084982", + "1483084940", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976617", + "976617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084941", + "1483084943", + "1483084992", + "1483084941", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976623", + "976623", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084962", + "1483084963", + "1483085039", + "1483084962", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976625", + "976625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084972", + "1483084973", + "1483085026", + "1483084972", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976627", + "976627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084974", + "1483084975", + "1483085044", + "1483084974", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976629", + "976629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084983", + "1483084984", + "1483085015", + "1483084983", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976662", + "976662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085064", + "1483085066", + "1483085122", + "1483085064", + "1", + "8", + "0", + "-1", + "56", + "2", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976666", + "976666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085067", + "1483085068", + "1483085098", + "1483085067", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976668", + "976668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085068", + "1483085069", + "1483085138", + "1483085068", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976674", + "976674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085097", + "1483085098", + "1483085130", + "1483085097", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976704", + "976704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085163", + "1483085164", + "1483085194", + "1483085163", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976706", + "976706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085170", + "1483085171", + "1483085212", + "1483085170", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976708", + "976708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085173", + "1483085174", + "1483085204", + "1483085173", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976714", + "976714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085185", + "1483085186", + "1483085252", + "1483085185", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976716", + "976716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085195", + "1483085196", + "1483085238", + "1483085195", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976718", + "976718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085205", + "1483085206", + "1483085245", + "1483085205", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976720", + "976720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085208", + "1483085209", + "1483085244", + "1483085208", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976724", + "976724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085213", + "1483085215", + "1483085250", + "1483085213", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976726", + "976726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085237", + "1483085238", + "1483085269", + "1483085237", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976750", + "976750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085282", + "1483085285", + "1483085315", + "1483085282", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976756", + "976756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085303", + "1483085304", + "1483085341", + "1483085303", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976760", + "976760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085305", + "1483085307", + "1483085405", + "1483085305", + "1", + "8", + "0", + "-1", + "98", + "2", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976762", + "976762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085315", + "1483085316", + "1483085357", + "1483085315", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976764", + "976764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085326", + "1483085327", + "1483085396", + "1483085326", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976766", + "976766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085339", + "1483085340", + "1483085378", + "1483085339", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976805", + "976805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085426", + "1483085427", + "1483085496", + "1483085426", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976811", + "976811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085440", + "1483085441", + "1483085477", + "1483085440", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976844", + "976844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085498", + "1483085500", + "1483085548", + "1483085498", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976850", + "976850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085510", + "1483085511", + "1483085572", + "1483085510", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976852", + "976852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085513", + "1483085514", + "1483085549", + "1483085513", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976854", + "976854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085514", + "1483085515", + "1483085569", + "1483085514", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976868", + "976868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085569", + "1483085570", + "1483085611", + "1483085569", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976880", + "976880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085585", + "1483085586", + "1483085624", + "1483085585", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976886", + "976886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085604", + "1483085606", + "1483085649", + "1483085604", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976890", + "976890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085611", + "1483085612", + "1483085672", + "1483085611", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976894", + "976894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085627", + "1483085628", + "1483085662", + "1483085627", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976896", + "976896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085633", + "1483085634", + "1483085717", + "1483085633", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976925", + "976925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085701", + "1483085703", + "1483085735", + "1483085701", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976931", + "976931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085713", + "1483085714", + "1483085751", + "1483085713", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976935", + "976935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085718", + "1483085720", + "1483085752", + "1483085718", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976945", + "976945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085752", + "1483085753", + "1483085806", + "1483085752", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976959", + "976959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085792", + "1483085793", + "1483085823", + "1483085792", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976977", + "976977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085824", + "1483085826", + "1483085868", + "1483085824", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976979", + "976979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085834", + "1483085835", + "1483085874", + "1483085834", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976983", + "976983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085846", + "1483085847", + "1483085880", + "1483085846", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976985", + "976985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085847", + "1483085850", + "1483085883", + "1483085847", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976993", + "976993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085875", + "1483085878", + "1483085912", + "1483085875", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976997", + "976997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085883", + "1483085884", + "1483085915", + "1483085883", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976999", + "976999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085894", + "1483085895", + "1483085945", + "1483085894", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977009", + "977009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085916", + "1483085917", + "1483085962", + "1483085916", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977011", + "977011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085918", + "1483085920", + "1483085952", + "1483085918", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977013", + "977013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085928", + "1483085929", + "1483085977", + "1483085928", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977027", + "977027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085969", + "1483085971", + "1483086033", + "1483085969", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977029", + "977029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085971", + "1483085974", + "1483086044", + "1483085971", + "1", + "8", + "0", + "-1", + "70", + "3", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977031", + "977031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085977", + "1483085978", + "1483086031", + "1483085977", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977036", + "977036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085979", + "1483085981", + "1483086024", + "1483085979", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977050", + "977050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086034", + "1483086035", + "1483086090", + "1483086034", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977054", + "977054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086056", + "1483086058", + "1483086096", + "1483086056", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977058", + "977058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086075", + "1483086076", + "1483086137", + "1483086075", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977060", + "977060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086083", + "1483086084", + "1483086141", + "1483086083", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977064", + "977064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086090", + "1483086091", + "1483086154", + "1483086090", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977076", + "977076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086145", + "1483086146", + "1483086240", + "1483086145", + "1", + "8", + "0", + "-1", + "94", + "1", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977078", + "977078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086149", + "1483086150", + "1483086327", + "1483086149", + "1", + "8", + "0", + "-1", + "177", + "1", + "1416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977080", + "977080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086155", + "1483086156", + "1483086262", + "1483086155", + "1", + "8", + "0", + "-1", + "106", + "1", + "848", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977082", + "977082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086160", + "1483086161", + "1483086260", + "1483086160", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977084", + "977084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086189", + "1483086190", + "1483086278", + "1483086189", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977096", + "977096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086261", + "1483086262", + "1483086298", + "1483086261", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977113", + "977113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086296", + "1483086298", + "1483086333", + "1483086296", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977115", + "977115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086298", + "1483086301", + "1483086341", + "1483086298", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977124", + "977124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086309", + "1483086312", + "1483086347", + "1483086309", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977169", + "977169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086413", + "1483086415", + "1483086454", + "1483086413", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977172", + "977172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086414", + "1483086415", + "1483086447", + "1483086414", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977206", + "977206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086506", + "1483086507", + "1483086554", + "1483086506", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977213", + "977213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086514", + "1483086515", + "1483086548", + "1483086514", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977215", + "977215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086518", + "1483086519", + "1483086551", + "1483086518", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977217", + "977217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086528", + "1483086529", + "1483086561", + "1483086528", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977257", + "977257", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086613", + "1483086614", + "1483086680", + "1483086613", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977259", + "977259", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086614", + "1483086615", + "1483086649", + "1483086614", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977302", + "977302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086694", + "1483086695", + "1483086758", + "1483086694", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977314", + "977314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086721", + "1483086722", + "1483086758", + "1483086721", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977324", + "977324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086747", + "1483086749", + "1483086781", + "1483086747", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977340", + "977340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086788", + "1483086789", + "1483086826", + "1483086788", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977342", + "977342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086789", + "1483086790", + "1483086824", + "1483086789", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977344", + "977344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086790", + "1483086792", + "1483086839", + "1483086790", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977346", + "977346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086797", + "1483086798", + "1483086836", + "1483086797", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977348", + "977348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086806", + "1483086807", + "1483086895", + "1483086806", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977350", + "977350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086808", + "1483086810", + "1483086865", + "1483086808", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977352", + "977352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086825", + "1483086826", + "1483086906", + "1483086825", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977354", + "977354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086826", + "1483086829", + "1483086868", + "1483086826", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977358", + "977358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086836", + "1483086838", + "1483086868", + "1483086836", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977360", + "977360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086840", + "1483086841", + "1483086882", + "1483086840", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977366", + "977366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086869", + "1483086871", + "1483086901", + "1483086869", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977369", + "977369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086870", + "1483086871", + "1483086905", + "1483086870", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977375", + "977375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086895", + "1483086898", + "1483086929", + "1483086895", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977378", + "977378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086896", + "1483086898", + "1483086931", + "1483086896", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977380", + "977380", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086902", + "1483086903", + "1483086955", + "1483086902", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977384", + "977384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086906", + "1483086909", + "1483086956", + "1483086906", + "1", + "8", + "0", + "-1", + "47", + "3", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977386", + "977386", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086916", + "1483086917", + "1483086973", + "1483086916", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977388", + "977388", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086929", + "1483086930", + "1483086973", + "1483086929", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977390", + "977390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086932", + "1483086933", + "1483086973", + "1483086932", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977396", + "977396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086957", + "1483086958", + "1483087008", + "1483086957", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977398", + "977398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086963", + "1483086964", + "1483087008", + "1483086963", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977403", + "977403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086974", + "1483086977", + "1483087008", + "1483086974", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977405", + "977405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086975", + "1483086977", + "1483087009", + "1483086975", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977413", + "977413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087008", + "1483087009", + "1483087047", + "1483087008", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977420", + "977420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087009", + "1483087012", + "1483087052", + "1483087009", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977424", + "977424", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087041", + "1483087042", + "1483087075", + "1483087041", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977430", + "977430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087047", + "1483087048", + "1483087125", + "1483087047", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977432", + "977432", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087052", + "1483087053", + "1483087096", + "1483087052", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977434", + "977434", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087055", + "1483087056", + "1483087097", + "1483087055", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977442", + "977442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087076", + "1483087077", + "1483087122", + "1483087076", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977448", + "977448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087096", + "1483087097", + "1483087170", + "1483087096", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977450", + "977450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087098", + "1483087100", + "1483087162", + "1483087098", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977454", + "977454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087126", + "1483087127", + "1483087241", + "1483087126", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977456", + "977456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087129", + "1483087130", + "1483087203", + "1483087129", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977462", + "977462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087150", + "1483087152", + "1483087221", + "1483087150", + "1", + "8", + "0", + "-1", + "69", + "2", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977464", + "977464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087163", + "1483087164", + "1483087229", + "1483087163", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977466", + "977466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087170", + "1483087171", + "1483087296", + "1483087170", + "1", + "8", + "0", + "-1", + "125", + "1", + "1000", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977470", + "977470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087184", + "1483087185", + "1483087300", + "1483087184", + "1", + "8", + "0", + "-1", + "115", + "1", + "920", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977472", + "977472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087204", + "1483087205", + "1483087276", + "1483087204", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977480", + "977480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087230", + "1483087231", + "1483087316", + "1483087230", + "1", + "8", + "0", + "-1", + "85", + "1", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977488", + "977488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087276", + "1483087277", + "1483087364", + "1483087276", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977492", + "977492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087300", + "1483087301", + "1483087339", + "1483087300", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977494", + "977494", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087317", + "1483087318", + "1483087354", + "1483087317", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977498", + "977498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087342", + "1483087343", + "1483087377", + "1483087342", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977502", + "977502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087348", + "1483087351", + "1483087395", + "1483087348", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977508", + "977508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087364", + "1483087365", + "1483087414", + "1483087364", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977510", + "977510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087375", + "1483087378", + "1483087414", + "1483087375", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977516", + "977516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087395", + "1483087396", + "1483087429", + "1483087395", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977518", + "977518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087397", + "1483087399", + "1483087435", + "1483087397", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977522", + "977522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087414", + "1483087415", + "1483087459", + "1483087414", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977530", + "977530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087436", + "1483087438", + "1483087500", + "1483087436", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977536", + "977536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087464", + "1483087465", + "1483087509", + "1483087464", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977540", + "977540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087474", + "1483087476", + "1483087516", + "1483087474", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977553", + "977553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087500", + "1483087502", + "1483087552", + "1483087500", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977555", + "977555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087509", + "1483087510", + "1483087554", + "1483087509", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977557", + "977557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087517", + "1483087518", + "1483087568", + "1483087517", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977559", + "977559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087519", + "1483087521", + "1483087569", + "1483087519", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977561", + "977561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087525", + "1483087526", + "1483087562", + "1483087525", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977565", + "977565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087553", + "1483087554", + "1483087588", + "1483087553", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977569", + "977569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087563", + "1483087564", + "1483087630", + "1483087563", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977571", + "977571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087568", + "1483087569", + "1483087615", + "1483087568", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977581", + "977581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087589", + "1483087590", + "1483087628", + "1483087589", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977583", + "977583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087598", + "1483087599", + "1483087634", + "1483087598", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977585", + "977585", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087616", + "1483087618", + "1483087659", + "1483087616", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977587", + "977587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087625", + "1483087626", + "1483087658", + "1483087625", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977591", + "977591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087629", + "1483087631", + "1483087686", + "1483087629", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977595", + "977595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087634", + "1483087635", + "1483087681", + "1483087634", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977599", + "977599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087658", + "1483087659", + "1483087697", + "1483087658", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977601", + "977601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087660", + "1483087662", + "1483087695", + "1483087660", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977605", + "977605", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087681", + "1483087682", + "1483087744", + "1483087681", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977611", + "977611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087698", + "1483087699", + "1483087759", + "1483087698", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977617", + "977617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087740", + "1483087741", + "1483087794", + "1483087740", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977619", + "977619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087744", + "1483087745", + "1483087831", + "1483087744", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977621", + "977621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087754", + "1483087755", + "1483087838", + "1483087754", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977636", + "977636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087832", + "1483087835", + "1483087865", + "1483087832", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977656", + "977656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087868", + "1483087869", + "1483087900", + "1483087868", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977658", + "977658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087871", + "1483087872", + "1483087910", + "1483087871", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977660", + "977660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087874", + "1483087875", + "1483087907", + "1483087874", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977662", + "977662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087878", + "1483087879", + "1483087911", + "1483087878", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977664", + "977664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087884", + "1483087885", + "1483087952", + "1483087884", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977668", + "977668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087901", + "1483087902", + "1483087948", + "1483087901", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977670", + "977670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087908", + "1483087909", + "1483087948", + "1483087908", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977703", + "977703", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087978", + "1483087981", + "1483088016", + "1483087978", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977705", + "977705", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087982", + "1483087984", + "1483088016", + "1483087982", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977707", + "977707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087985", + "1483087987", + "1483088018", + "1483087985", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977713", + "977713", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088000", + "1483088001", + "1483088042", + "1483088000", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977726", + "977726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088019", + "1483088021", + "1483088063", + "1483088019", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977746", + "977746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088077", + "1483088078", + "1483088115", + "1483088077", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977750", + "977750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088092", + "1483088095", + "1483088129", + "1483088092", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977753", + "977753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088093", + "1483088095", + "1483088180", + "1483088093", + "1", + "8", + "0", + "-1", + "85", + "2", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977757", + "977757", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088100", + "1483088101", + "1483088175", + "1483088100", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977759", + "977759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088115", + "1483088116", + "1483088150", + "1483088115", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977767", + "977767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088138", + "1483088141", + "1483088175", + "1483088138", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977773", + "977773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088159", + "1483088161", + "1483088194", + "1483088159", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977781", + "977781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088178", + "1483088179", + "1483088214", + "1483088178", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977783", + "977783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088180", + "1483088182", + "1483088216", + "1483088180", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977793", + "977793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088217", + "1483088218", + "1483088259", + "1483088217", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977797", + "977797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088222", + "1483088223", + "1483088264", + "1483088222", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977799", + "977799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088234", + "1483088235", + "1483088331", + "1483088234", + "1", + "8", + "0", + "-1", + "96", + "1", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977801", + "977801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088249", + "1483088250", + "1483088297", + "1483088249", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977803", + "977803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088260", + "1483088261", + "1483088327", + "1483088260", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977805", + "977805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088262", + "1483088264", + "1483088299", + "1483088262", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977837", + "977837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088343", + "1483088346", + "1483088385", + "1483088343", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977843", + "977843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088353", + "1483088354", + "1483088385", + "1483088353", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977847", + "977847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088359", + "1483088360", + "1483088399", + "1483088359", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977849", + "977849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088363", + "1483088364", + "1483088406", + "1483088363", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977851", + "977851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088380", + "1483088381", + "1483088411", + "1483088380", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977890", + "977890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088447", + "1483088448", + "1483088528", + "1483088447", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977892", + "977892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088449", + "1483088451", + "1483088512", + "1483088449", + "1", + "8", + "0", + "-1", + "61", + "2", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977894", + "977894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088453", + "1483088454", + "1483088503", + "1483088453", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977896", + "977896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088465", + "1483088466", + "1483088496", + "1483088465", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977908", + "977908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088503", + "1483088504", + "1483088541", + "1483088503", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977920", + "977920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088528", + "1483088529", + "1483088563", + "1483088528", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977926", + "977926", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088542", + "1483088544", + "1483088591", + "1483088542", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977928", + "977928", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088551", + "1483088552", + "1483088600", + "1483088551", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977930", + "977930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088554", + "1483088555", + "1483088621", + "1483088554", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977932", + "977932", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088564", + "1483088565", + "1483088603", + "1483088564", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977934", + "977934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088565", + "1483088568", + "1483088604", + "1483088565", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977936", + "977936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088570", + "1483088571", + "1483088644", + "1483088570", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977938", + "977938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088592", + "1483088593", + "1483088677", + "1483088592", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977940", + "977940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088601", + "1483088602", + "1483088656", + "1483088601", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977942", + "977942", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088604", + "1483088605", + "1483088644", + "1483088604", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977954", + "977954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088648", + "1483088651", + "1483088681", + "1483088648", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977958", + "977958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088658", + "1483088660", + "1483088690", + "1483088658", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977966", + "977966", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088678", + "1483088679", + "1483088710", + "1483088678", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977970", + "977970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088686", + "1483088687", + "1483088718", + "1483088686", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977972", + "977972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088691", + "1483088692", + "1483088733", + "1483088691", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977978", + "977978", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088706", + "1483088709", + "1483088745", + "1483088706", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977980", + "977980", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088711", + "1483088712", + "1483088747", + "1483088711", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977982", + "977982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088718", + "1483088719", + "1483088794", + "1483088718", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977988", + "977988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088748", + "1483088749", + "1483088783", + "1483088748", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978006", + "978006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088807", + "1483088808", + "1483088840", + "1483088807", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978020", + "978020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088840", + "1483088843", + "1483088892", + "1483088840", + "1", + "8", + "0", + "-1", + "49", + "3", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978022", + "978022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088844", + "1483088846", + "1483088909", + "1483088844", + "1", + "8", + "0", + "-1", + "63", + "2", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978024", + "978024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088847", + "1483088849", + "1483088884", + "1483088847", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978026", + "978026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088850", + "1483088852", + "1483088890", + "1483088850", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978028", + "978028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088854", + "1483088855", + "1483088928", + "1483088854", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978036", + "978036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088890", + "1483088891", + "1483088921", + "1483088890", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978038", + "978038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088893", + "1483088894", + "1483088934", + "1483088893", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978042", + "978042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088922", + "1483088923", + "1483088963", + "1483088922", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978048", + "978048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088935", + "1483088938", + "1483088976", + "1483088935", + "1", + "8", + "0", + "-1", + "38", + "3", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978052", + "978052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088954", + "1483088955", + "1483088997", + "1483088954", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978058", + "978058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088962", + "1483088963", + "1483089015", + "1483088962", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978060", + "978060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088963", + "1483088966", + "1483088998", + "1483088963", + "1", + "8", + "0", + "-1", + "32", + "3", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978066", + "978066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088977", + "1483088978", + "1483089027", + "1483088977", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978068", + "978068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088997", + "1483088998", + "1483089041", + "1483088997", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978070", + "978070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088998", + "1483088999", + "1483089061", + "1483088998", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978072", + "978072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088999", + "1483089001", + "1483089075", + "1483088999", + "1", + "8", + "0", + "-1", + "74", + "2", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978074", + "978074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089011", + "1483089012", + "1483089154", + "1483089011", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978078", + "978078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089028", + "1483089029", + "1483089084", + "1483089028", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978082", + "978082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089062", + "1483089063", + "1483089117", + "1483089062", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978086", + "978086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089076", + "1483089079", + "1483089150", + "1483089076", + "1", + "8", + "0", + "-1", + "71", + "3", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978088", + "978088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089084", + "1483089085", + "1483089133", + "1483089084", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978096", + "978096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089140", + "1483089141", + "1483089208", + "1483089140", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978098", + "978098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089150", + "1483089151", + "1483089227", + "1483089150", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978104", + "978104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089161", + "1483089163", + "1483089233", + "1483089161", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978110", + "978110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089209", + "1483089210", + "1483089270", + "1483089209", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978120", + "978120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089234", + "1483089235", + "1483089428", + "1483089234", + "1", + "8", + "0", + "-1", + "193", + "1", + "1544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978138", + "978138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089320", + "1483089322", + "1483089361", + "1483089320", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978156", + "978156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089379", + "1483089380", + "1483089413", + "1483089379", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978160", + "978160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089388", + "1483089389", + "1483089424", + "1483089388", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978164", + "978164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089389", + "1483089392", + "1483089422", + "1483089389", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978168", + "978168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089413", + "1483089414", + "1483089460", + "1483089413", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978172", + "978172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089423", + "1483089425", + "1483089457", + "1483089423", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978204", + "978204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089501", + "1483089504", + "1483089545", + "1483089501", + "1", + "8", + "0", + "-1", + "41", + "3", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978208", + "978208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089505", + "1483089506", + "1483089537", + "1483089505", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978210", + "978210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089506", + "1483089507", + "1483089538", + "1483089506", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978218", + "978218", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089539", + "1483089541", + "1483089572", + "1483089539", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978232", + "978232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089573", + "1483089574", + "1483089605", + "1483089573", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978236", + "978236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089591", + "1483089593", + "1483089625", + "1483089591", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978254", + "978254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089632", + "1483089633", + "1483089664", + "1483089632", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978256", + "978256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089633", + "1483089634", + "1483089675", + "1483089633", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978258", + "978258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089645", + "1483089646", + "1483089733", + "1483089645", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978260", + "978260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089647", + "1483089649", + "1483089694", + "1483089647", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978298", + "978298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089740", + "1483089742", + "1483089774", + "1483089740", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978304", + "978304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089753", + "1483089756", + "1483089824", + "1483089753", + "1", + "8", + "0", + "-1", + "68", + "3", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978306", + "978306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089757", + "1483089759", + "1483089797", + "1483089757", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978308", + "978308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089761", + "1483089762", + "1483089797", + "1483089761", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978342", + "978342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089832", + "1483089834", + "1483089886", + "1483089832", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978344", + "978344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089838", + "1483089839", + "1483089869", + "1483089838", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978346", + "978346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089839", + "1483089842", + "1483089872", + "1483089839", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978348", + "978348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089844", + "1483089845", + "1483089911", + "1483089844", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978350", + "978350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089847", + "1483089848", + "1483089897", + "1483089847", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978352", + "978352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089850", + "1483089851", + "1483089918", + "1483089850", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978360", + "978360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089897", + "1483089898", + "1483089930", + "1483089897", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978366", + "978366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089911", + "1483089913", + "1483089955", + "1483089911", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978370", + "978370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089920", + "1483089921", + "1483089956", + "1483089920", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978376", + "978376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089933", + "1483089934", + "1483089965", + "1483089933", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978389", + "978389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089955", + "1483089956", + "1483089998", + "1483089955", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978391", + "978391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089956", + "1483089958", + "1483090003", + "1483089956", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978404", + "978404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090004", + "1483090005", + "1483090039", + "1483090004", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978406", + "978406", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090019", + "1483090020", + "1483090052", + "1483090019", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978412", + "978412", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090035", + "1483090037", + "1483090074", + "1483090035", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978416", + "978416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090040", + "1483090043", + "1483090078", + "1483090040", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978420", + "978420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090053", + "1483090054", + "1483090087", + "1483090053", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978428", + "978428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090076", + "1483090078", + "1483090137", + "1483090076", + "1", + "8", + "0", + "-1", + "59", + "2", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978430", + "978430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090079", + "1483090081", + "1483090126", + "1483090079", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978432", + "978432", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090084", + "1483090085", + "1483090159", + "1483090084", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978434", + "978434", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090085", + "1483090088", + "1483090134", + "1483090085", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978438", + "978438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090095", + "1483090096", + "1483090129", + "1483090095", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978440", + "978440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090096", + "1483090099", + "1483090155", + "1483090096", + "1", + "8", + "0", + "-1", + "56", + "3", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978442", + "978442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090107", + "1483090108", + "1483090178", + "1483090107", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978444", + "978444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090127", + "1483090128", + "1483090172", + "1483090127", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978460", + "978460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090170", + "1483090171", + "1483090206", + "1483090170", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978462", + "978462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090173", + "1483090174", + "1483090209", + "1483090173", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978465", + "978465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090173", + "1483090174", + "1483090210", + "1483090173", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978467", + "978467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090178", + "1483090179", + "1483090234", + "1483090178", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978469", + "978469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090196", + "1483090198", + "1483090240", + "1483090196", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978473", + "978473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090208", + "1483090209", + "1483090239", + "1483090208", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978477", + "978477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090210", + "1483090213", + "1483090261", + "1483090210", + "1", + "8", + "0", + "-1", + "48", + "3", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978479", + "978479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090214", + "1483090216", + "1483090289", + "1483090214", + "1", + "8", + "0", + "-1", + "73", + "2", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978481", + "978481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090234", + "1483090235", + "1483090279", + "1483090234", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978483", + "978483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090240", + "1483090241", + "1483090339", + "1483090240", + "1", + "8", + "0", + "-1", + "98", + "1", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978493", + "978493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090280", + "1483090281", + "1483090355", + "1483090280", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978499", + "978499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090317", + "1483090318", + "1483090446", + "1483090317", + "1", + "8", + "0", + "-1", + "128", + "1", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978509", + "978509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090358", + "1483090359", + "1483090428", + "1483090358", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978517", + "978517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090430", + "1483090432", + "1483090553", + "1483090430", + "1", + "8", + "0", + "-1", + "121", + "2", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978521", + "978521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090447", + "1483090448", + "1483090574", + "1483090447", + "1", + "8", + "0", + "-1", + "126", + "1", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978523", + "978523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090462", + "1483090463", + "1483090564", + "1483090462", + "1", + "8", + "0", + "-1", + "101", + "1", + "808", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978525", + "978525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090465", + "1483090466", + "1483090560", + "1483090465", + "1", + "8", + "0", + "-1", + "94", + "1", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978531", + "978531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090551", + "1483090552", + "1483090693", + "1483090551", + "1", + "8", + "0", + "-1", + "141", + "1", + "1128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978533", + "978533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090554", + "1483090555", + "1483090699", + "1483090554", + "1", + "8", + "0", + "-1", + "144", + "1", + "1152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978535", + "978535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090560", + "1483090561", + "1483090645", + "1483090560", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978537", + "978537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090565", + "1483090566", + "1483090613", + "1483090565", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978543", + "978543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090603", + "1483090604", + "1483090649", + "1483090603", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978549", + "978549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090620", + "1483090623", + "1483090684", + "1483090620", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978551", + "978551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090646", + "1483090647", + "1483090689", + "1483090646", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978555", + "978555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090652", + "1483090653", + "1483090710", + "1483090652", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978559", + "978559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090685", + "1483090686", + "1483090733", + "1483090685", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978561", + "978561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090689", + "1483090690", + "1483090737", + "1483090689", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978563", + "978563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090694", + "1483090695", + "1483090737", + "1483090694", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978565", + "978565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090699", + "1483090700", + "1483090735", + "1483090699", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978570", + "978570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090710", + "1483090711", + "1483090765", + "1483090710", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978574", + "978574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090736", + "1483090737", + "1483090851", + "1483090736", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978576", + "978576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090737", + "1483090738", + "1483090795", + "1483090737", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978582", + "978582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090765", + "1483090766", + "1483090802", + "1483090765", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978590", + "978590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090794", + "1483090795", + "1483090839", + "1483090794", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978592", + "978592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090796", + "1483090797", + "1483090837", + "1483090796", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978594", + "978594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090797", + "1483090798", + "1483090851", + "1483090797", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978596", + "978596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090800", + "1483090801", + "1483090838", + "1483090800", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978598", + "978598", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090803", + "1483090804", + "1483090843", + "1483090803", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978602", + "978602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090838", + "1483090839", + "1483090876", + "1483090838", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978604", + "978604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090839", + "1483090840", + "1483090894", + "1483090839", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978612", + "978612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090852", + "1483090855", + "1483090901", + "1483090852", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978614", + "978614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090877", + "1483090878", + "1483090934", + "1483090877", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978617", + "978617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090877", + "1483090878", + "1483090935", + "1483090877", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978619", + "978619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090891", + "1483090892", + "1483090991", + "1483090891", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978625", + "978625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090897", + "1483090899", + "1483090954", + "1483090897", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978627", + "978627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090901", + "1483090902", + "1483090953", + "1483090901", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978631", + "978631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090934", + "1483090935", + "1483090981", + "1483090934", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978633", + "978633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090936", + "1483090938", + "1483090973", + "1483090936", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978637", + "978637", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090954", + "1483090955", + "1483091015", + "1483090954", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978641", + "978641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090974", + "1483090975", + "1483091026", + "1483090974", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978643", + "978643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090977", + "1483090978", + "1483091030", + "1483090977", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978647", + "978647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090992", + "1483090993", + "1483091040", + "1483090992", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978655", + "978655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091031", + "1483091032", + "1483091086", + "1483091031", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978657", + "978657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091034", + "1483091035", + "1483091086", + "1483091034", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978671", + "978671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091086", + "1483091087", + "1483091181", + "1483091086", + "1", + "8", + "0", + "-1", + "94", + "1", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978676", + "978676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091087", + "1483091090", + "1483091133", + "1483091087", + "1", + "8", + "0", + "-1", + "43", + "3", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978686", + "978686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091133", + "1483091134", + "1483091181", + "1483091133", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978704", + "978704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091191", + "1483091192", + "1483091236", + "1483091191", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978706", + "978706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091193", + "1483091195", + "1483091237", + "1483091193", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978708", + "978708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091200", + "1483091201", + "1483091245", + "1483091200", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978712", + "978712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091203", + "1483091204", + "1483091237", + "1483091203", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978714", + "978714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091205", + "1483091207", + "1483091253", + "1483091205", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978722", + "978722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091238", + "1483091240", + "1483091280", + "1483091238", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978730", + "978730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091267", + "1483091268", + "1483091299", + "1483091267", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978732", + "978732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091278", + "1483091279", + "1483091325", + "1483091278", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978734", + "978734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091281", + "1483091282", + "1483091328", + "1483091281", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978737", + "978737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091282", + "1483091285", + "1483091321", + "1483091282", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978751", + "978751", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091326", + "1483091327", + "1483091379", + "1483091326", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978758", + "978758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091328", + "1483091330", + "1483091374", + "1483091328", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978764", + "978764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091342", + "1483091343", + "1483091373", + "1483091342", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978766", + "978766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091355", + "1483091356", + "1483091393", + "1483091355", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978774", + "978774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091374", + "1483091377", + "1483091422", + "1483091374", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978776", + "978776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091377", + "1483091380", + "1483091423", + "1483091377", + "1", + "8", + "0", + "-1", + "43", + "3", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978778", + "978778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091380", + "1483091383", + "1483091417", + "1483091380", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978780", + "978780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091388", + "1483091389", + "1483091426", + "1483091388", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978782", + "978782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091393", + "1483091394", + "1483091426", + "1483091393", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978789", + "978789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091418", + "1483091419", + "1483091450", + "1483091418", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978791", + "978791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091420", + "1483091422", + "1483091460", + "1483091420", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978793", + "978793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091423", + "1483091424", + "1483091477", + "1483091423", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978795", + "978795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091424", + "1483091425", + "1483091487", + "1483091424", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978799", + "978799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091427", + "1483091428", + "1483091497", + "1483091427", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978803", + "978803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091460", + "1483091461", + "1483091526", + "1483091460", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978811", + "978811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091487", + "1483091488", + "1483091525", + "1483091487", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978813", + "978813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091494", + "1483091495", + "1483091527", + "1483091494", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978839", + "978839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091563", + "1483091564", + "1483091617", + "1483091563", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978843", + "978843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091566", + "1483091567", + "1483091615", + "1483091566", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978853", + "978853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091618", + "1483091619", + "1483091658", + "1483091618", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978857", + "978857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091627", + "1483091628", + "1483091659", + "1483091627", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978861", + "978861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091649", + "1483091650", + "1483091683", + "1483091649", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978865", + "978865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091658", + "1483091659", + "1483091693", + "1483091658", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978869", + "978869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091671", + "1483091672", + "1483091702", + "1483091671", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978871", + "978871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091679", + "1483091680", + "1483091712", + "1483091679", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978873", + "978873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091683", + "1483091684", + "1483091719", + "1483091683", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978887", + "978887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091714", + "1483091716", + "1483091771", + "1483091714", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978889", + "978889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091719", + "1483091720", + "1483091774", + "1483091719", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978891", + "978891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091720", + "1483091723", + "1483091839", + "1483091720", + "1", + "8", + "0", + "-1", + "116", + "3", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978893", + "978893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091727", + "1483091728", + "1483091761", + "1483091727", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978931", + "978931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091825", + "1483091827", + "1483091864", + "1483091825", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978933", + "978933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091828", + "1483091830", + "1483091860", + "1483091828", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978935", + "978935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091836", + "1483091837", + "1483091873", + "1483091836", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978941", + "978941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091845", + "1483091846", + "1483091885", + "1483091845", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978949", + "978949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091872", + "1483091873", + "1483091919", + "1483091872", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978963", + "978963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091920", + "1483091922", + "1483091961", + "1483091920", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978973", + "978973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091952", + "1483091954", + "1483091994", + "1483091952", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978977", + "978977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091962", + "1483091963", + "1483092005", + "1483091962", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978981", + "978981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091976", + "1483091977", + "1483092014", + "1483091976", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978983", + "978983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091979", + "1483091980", + "1483092092", + "1483091979", + "1", + "8", + "0", + "-1", + "112", + "1", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978987", + "978987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091990", + "1483091991", + "1483092029", + "1483091990", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978989", + "978989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091994", + "1483091995", + "1483092043", + "1483091994", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978991", + "978991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092005", + "1483092006", + "1483092052", + "1483092005", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978993", + "978993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092015", + "1483092016", + "1483092057", + "1483092015", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979003", + "979003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092053", + "1483092054", + "1483092102", + "1483092053", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979005", + "979005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092056", + "1483092058", + "1483092102", + "1483092056", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979011", + "979011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092066", + "1483092067", + "1483092099", + "1483092066", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979024", + "979024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092103", + "1483092106", + "1483092150", + "1483092103", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979026", + "979026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092108", + "1483092109", + "1483092153", + "1483092108", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979034", + "979034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092139", + "1483092140", + "1483092171", + "1483092139", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979038", + "979038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092151", + "1483092153", + "1483092191", + "1483092151", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979040", + "979040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092154", + "1483092156", + "1483092201", + "1483092154", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979042", + "979042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092167", + "1483092168", + "1483092201", + "1483092167", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979053", + "979053", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092203", + "1483092204", + "1483092237", + "1483092203", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979063", + "979063", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092237", + "1483092238", + "1483092269", + "1483092237", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979069", + "979069", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092242", + "1483092244", + "1483092309", + "1483092242", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979071", + "979071", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092244", + "1483092247", + "1483092307", + "1483092244", + "1", + "8", + "0", + "-1", + "60", + "3", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979081", + "979081", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092307", + "1483092308", + "1483092354", + "1483092307", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979083", + "979083", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092310", + "1483092311", + "1483092352", + "1483092310", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979089", + "979089", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092336", + "1483092337", + "1483092373", + "1483092336", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979101", + "979101", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092372", + "1483092373", + "1483092421", + "1483092372", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979103", + "979103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092373", + "1483092376", + "1483092410", + "1483092373", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979111", + "979111", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092395", + "1483092396", + "1483092428", + "1483092395", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979113", + "979113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092400", + "1483092401", + "1483092458", + "1483092400", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979121", + "979121", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092411", + "1483092413", + "1483092453", + "1483092411", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979125", + "979125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092428", + "1483092429", + "1483092465", + "1483092428", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979129", + "979129", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092453", + "1483092454", + "1483092516", + "1483092453", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979131", + "979131", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092455", + "1483092457", + "1483092518", + "1483092455", + "1", + "8", + "0", + "-1", + "61", + "2", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979133", + "979133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092459", + "1483092460", + "1483092513", + "1483092459", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979137", + "979137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092468", + "1483092469", + "1483092519", + "1483092468", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979146", + "979146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092511", + "1483092514", + "1483092572", + "1483092511", + "1", + "8", + "0", + "-1", + "58", + "3", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979150", + "979150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092516", + "1483092517", + "1483092576", + "1483092516", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979154", + "979154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092519", + "1483092520", + "1483092571", + "1483092519", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979156", + "979156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092519", + "1483092520", + "1483092574", + "1483092519", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979167", + "979167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092573", + "1483092574", + "1483092673", + "1483092573", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979169", + "979169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092574", + "1483092575", + "1483092659", + "1483092574", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979185", + "979185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092656", + "1483092658", + "1483092697", + "1483092656", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979191", + "979191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092674", + "1483092675", + "1483092705", + "1483092674", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979193", + "979193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092684", + "1483092685", + "1483092717", + "1483092684", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979203", + "979203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092710", + "1483092711", + "1483092741", + "1483092710", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979205", + "979205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092717", + "1483092718", + "1483092777", + "1483092717", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979207", + "979207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092718", + "1483092720", + "1483092752", + "1483092718", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979209", + "979209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092720", + "1483092721", + "1483092830", + "1483092720", + "1", + "8", + "0", + "-1", + "109", + "1", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979211", + "979211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092735", + "1483092736", + "1483092767", + "1483092735", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979213", + "979213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092741", + "1483092742", + "1483092790", + "1483092741", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979217", + "979217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092753", + "1483092754", + "1483092790", + "1483092753", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979219", + "979219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092768", + "1483092769", + "1483092805", + "1483092768", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979225", + "979225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092790", + "1483092791", + "1483092826", + "1483092790", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979231", + "979231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092806", + "1483092807", + "1483092846", + "1483092806", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979236", + "979236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092811", + "1483092812", + "1483092843", + "1483092811", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979248", + "979248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092831", + "1483092832", + "1483092881", + "1483092831", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979252", + "979252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092839", + "1483092841", + "1483092880", + "1483092839", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979254", + "979254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092843", + "1483092844", + "1483092908", + "1483092843", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979258", + "979258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092850", + "1483092851", + "1483092910", + "1483092850", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979275", + "979275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092908", + "1483092909", + "1483092947", + "1483092908", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979277", + "979277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092910", + "1483092911", + "1483092943", + "1483092910", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979293", + "979293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092939", + "1483092940", + "1483092974", + "1483092939", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979303", + "979303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092957", + "1483092958", + "1483092995", + "1483092957", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979320", + "979320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093001", + "1483093002", + "1483093042", + "1483093001", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979326", + "979326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093018", + "1483093019", + "1483093051", + "1483093018", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979338", + "979338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093043", + "1483093044", + "1483093090", + "1483093043", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979347", + "979347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093053", + "1483093055", + "1483093087", + "1483093053", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979351", + "979351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093060", + "1483093063", + "1483093099", + "1483093060", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979353", + "979353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093066", + "1483093067", + "1483093103", + "1483093066", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979363", + "979363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093099", + "1483093100", + "1483093137", + "1483093099", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979365", + "979365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093104", + "1483093105", + "1483093143", + "1483093104", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979383", + "979383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093142", + "1483093143", + "1483093191", + "1483093142", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979387", + "979387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093145", + "1483093147", + "1483093180", + "1483093145", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979391", + "979391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093162", + "1483093163", + "1483093221", + "1483093162", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979393", + "979393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093164", + "1483093166", + "1483093204", + "1483093164", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979399", + "979399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093192", + "1483093194", + "1483093238", + "1483093192", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979405", + "979405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093207", + "1483093208", + "1483093256", + "1483093207", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979411", + "979411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093238", + "1483093240", + "1483093291", + "1483093238", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979413", + "979413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093244", + "1483093245", + "1483093303", + "1483093244", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979415", + "979415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093246", + "1483093248", + "1483093300", + "1483093246", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979417", + "979417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093257", + "1483093258", + "1483093303", + "1483093257", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979425", + "979425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093294", + "1483093295", + "1483093336", + "1483093294", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979429", + "979429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093303", + "1483093304", + "1483093355", + "1483093303", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979435", + "979435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093318", + "1483093319", + "1483093429", + "1483093318", + "1", + "8", + "0", + "-1", + "110", + "1", + "880", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979437", + "979437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093337", + "1483093338", + "1483093383", + "1483093337", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979441", + "979441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093355", + "1483093356", + "1483093390", + "1483093355", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979443", + "979443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093371", + "1483093372", + "1483093413", + "1483093371", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979449", + "979449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093384", + "1483093385", + "1483093442", + "1483093384", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979455", + "979455", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093413", + "1483093414", + "1483093467", + "1483093413", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979457", + "979457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093421", + "1483093422", + "1483093469", + "1483093421", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979461", + "979461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093430", + "1483093432", + "1483093496", + "1483093430", + "1", + "8", + "0", + "-1", + "64", + "2", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979465", + "979465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093443", + "1483093446", + "1483093476", + "1483093443", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979467", + "979467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093467", + "1483093468", + "1483093499", + "1483093467", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979469", + "979469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093470", + "1483093471", + "1483093502", + "1483093470", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979471", + "979471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093473", + "1483093474", + "1483093504", + "1483093473", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979477", + "979477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093497", + "1483093498", + "1483093573", + "1483093497", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979479", + "979479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093499", + "1483093501", + "1483093582", + "1483093499", + "1", + "8", + "0", + "-1", + "81", + "2", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979481", + "979481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093503", + "1483093504", + "1483093632", + "1483093503", + "1", + "8", + "0", + "-1", + "128", + "1", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979483", + "979483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093505", + "1483093507", + "1483093586", + "1483093505", + "1", + "8", + "0", + "-1", + "79", + "2", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979485", + "979485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093511", + "1483093512", + "1483093574", + "1483093511", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979487", + "979487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093537", + "1483093538", + "1483093578", + "1483093537", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979491", + "979491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093575", + "1483093577", + "1483093637", + "1483093575", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979493", + "979493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093578", + "1483093580", + "1483093638", + "1483093578", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979495", + "979495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093582", + "1483093583", + "1483093626", + "1483093582", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979503", + "979503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093634", + "1483093636", + "1483093700", + "1483093634", + "1", + "8", + "0", + "-1", + "64", + "2", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979505", + "979505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093637", + "1483093638", + "1483093688", + "1483093637", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979507", + "979507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093638", + "1483093639", + "1483093691", + "1483093638", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979525", + "979525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093700", + "1483093701", + "1483093740", + "1483093700", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979529", + "979529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093717", + "1483093720", + "1483093785", + "1483093717", + "1", + "8", + "0", + "-1", + "65", + "3", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979531", + "979531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093722", + "1483093723", + "1483093786", + "1483093722", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979533", + "979533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093724", + "1483093726", + "1483093770", + "1483093724", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979535", + "979535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093738", + "1483093739", + "1483093865", + "1483093738", + "1", + "8", + "0", + "-1", + "126", + "1", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979537", + "979537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093741", + "1483093742", + "1483093865", + "1483093741", + "1", + "8", + "0", + "-1", + "123", + "1", + "984", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979539", + "979539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093770", + "1483093771", + "1483093899", + "1483093770", + "1", + "8", + "0", + "-1", + "128", + "1", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979545", + "979545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093786", + "1483093787", + "1483093849", + "1483093786", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979547", + "979547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093787", + "1483093789", + "1483093918", + "1483093787", + "1", + "8", + "0", + "-1", + "129", + "2", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979555", + "979555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093850", + "1483093851", + "1483093973", + "1483093850", + "1", + "8", + "0", + "-1", + "122", + "1", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979557", + "979557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093865", + "1483093866", + "1483093956", + "1483093865", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979562", + "979562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093878", + "1483093879", + "1483093988", + "1483093878", + "1", + "8", + "0", + "-1", + "109", + "1", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979566", + "979566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093900", + "1483093901", + "1483094010", + "1483093900", + "1", + "8", + "0", + "-1", + "109", + "1", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979576", + "979576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093973", + "1483093975", + "1483094138", + "1483093973", + "1", + "8", + "0", + "-1", + "163", + "2", + "1304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979584", + "979584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094023", + "1483094024", + "1483094063", + "1483094023", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979592", + "979592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094063", + "1483094064", + "1483094116", + "1483094063", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979594", + "979594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094071", + "1483094072", + "1483094117", + "1483094071", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979598", + "979598", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094093", + "1483094094", + "1483094127", + "1483094093", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979602", + "979602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094118", + "1483094119", + "1483094156", + "1483094118", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979604", + "979604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094124", + "1483094125", + "1483094157", + "1483094124", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979606", + "979606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094126", + "1483094127", + "1483094165", + "1483094126", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979610", + "979610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094132", + "1483094134", + "1483094165", + "1483094132", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979612", + "979612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094138", + "1483094139", + "1483094176", + "1483094138", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979614", + "979614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094156", + "1483094157", + "1483094208", + "1483094156", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979618", + "979618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094158", + "1483094161", + "1483094251", + "1483094158", + "1", + "8", + "0", + "-1", + "90", + "3", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979620", + "979620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094165", + "1483094166", + "1483094220", + "1483094165", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979622", + "979622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094166", + "1483094169", + "1483094215", + "1483094166", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979624", + "979624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094177", + "1483094178", + "1483094271", + "1483094177", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979628", + "979628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094215", + "1483094216", + "1483094269", + "1483094215", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979630", + "979630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094216", + "1483094217", + "1483094280", + "1483094216", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979634", + "979634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094221", + "1483094222", + "1483094259", + "1483094221", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979641", + "979641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094260", + "1483094261", + "1483094310", + "1483094260", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979643", + "979643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094264", + "1483094265", + "1483094311", + "1483094264", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979647", + "979647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094272", + "1483094273", + "1483094333", + "1483094272", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979653", + "979653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094281", + "1483094284", + "1483094339", + "1483094281", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979657", + "979657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094310", + "1483094311", + "1483094357", + "1483094310", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979659", + "979659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094312", + "1483094314", + "1483094394", + "1483094312", + "1", + "8", + "0", + "-1", + "80", + "2", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979661", + "979661", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094319", + "1483094320", + "1483094402", + "1483094319", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979679", + "979679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094391", + "1483094392", + "1483094431", + "1483094391", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979693", + "979693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094432", + "1483094434", + "1483094476", + "1483094432", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979699", + "979699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094469", + "1483094470", + "1483094524", + "1483094469", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979710", + "979710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094490", + "1483094491", + "1483094585", + "1483094490", + "1", + "8", + "0", + "-1", + "94", + "1", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979724", + "979724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094572", + "1483094573", + "1483094610", + "1483094572", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979726", + "979726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094575", + "1483094578", + "1483094623", + "1483094575", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979728", + "979728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094586", + "1483094587", + "1483094644", + "1483094586", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979730", + "979730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094590", + "1483094591", + "1483094641", + "1483094590", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979732", + "979732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094605", + "1483094606", + "1483094646", + "1483094605", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979736", + "979736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094610", + "1483094612", + "1483094667", + "1483094610", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979738", + "979738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094623", + "1483094624", + "1483094660", + "1483094623", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979746", + "979746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094645", + "1483094646", + "1483094676", + "1483094645", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979748", + "979748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094646", + "1483094649", + "1483094710", + "1483094646", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979750", + "979750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094659", + "1483094660", + "1483094718", + "1483094659", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979752", + "979752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094660", + "1483094663", + "1483094735", + "1483094660", + "1", + "8", + "0", + "-1", + "72", + "3", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979760", + "979760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094689", + "1483094690", + "1483094763", + "1483094689", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979762", + "979762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094711", + "1483094712", + "1483094745", + "1483094711", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979772", + "979772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094742", + "1483094743", + "1483094789", + "1483094742", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979778", + "979778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094763", + "1483094764", + "1483094797", + "1483094763", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979780", + "979780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094766", + "1483094767", + "1483094811", + "1483094766", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979792", + "979792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094810", + "1483094811", + "1483094853", + "1483094810", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979794", + "979794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094812", + "1483094814", + "1483094879", + "1483094812", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979796", + "979796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094822", + "1483094823", + "1483094893", + "1483094822", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979800", + "979800", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094831", + "1483094833", + "1483094884", + "1483094831", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979806", + "979806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094879", + "1483094880", + "1483094915", + "1483094879", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979830", + "979830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094953", + "1483094954", + "1483094984", + "1483094953", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979832", + "979832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094968", + "1483094969", + "1483095000", + "1483094968", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979834", + "979834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094972", + "1483094973", + "1483095016", + "1483094972", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979836", + "979836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094974", + "1483094975", + "1483095023", + "1483094974", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979841", + "979841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094975", + "1483094976", + "1483095016", + "1483094975", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979847", + "979847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094985", + "1483094988", + "1483095034", + "1483094985", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979849", + "979849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095000", + "1483095001", + "1483095033", + "1483095000", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979853", + "979853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095017", + "1483095020", + "1483095054", + "1483095017", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979855", + "979855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095023", + "1483095024", + "1483095084", + "1483095023", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979865", + "979865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095044", + "1483095045", + "1483095077", + "1483095044", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979869", + "979869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095074", + "1483095075", + "1483095107", + "1483095074", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979871", + "979871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095076", + "1483095077", + "1483095110", + "1483095076", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979873", + "979873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095077", + "1483095078", + "1483095142", + "1483095077", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979875", + "979875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095081", + "1483095082", + "1483095158", + "1483095081", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979877", + "979877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095083", + "1483095084", + "1483095157", + "1483095083", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979883", + "979883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095107", + "1483095108", + "1483095185", + "1483095107", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979885", + "979885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095111", + "1483095112", + "1483095188", + "1483095111", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979909", + "979909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095190", + "1483095192", + "1483095240", + "1483095190", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979915", + "979915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095214", + "1483095215", + "1483095350", + "1483095214", + "1", + "8", + "0", + "-1", + "135", + "1", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979917", + "979917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095215", + "1483095217", + "1483095262", + "1483095215", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979919", + "979919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095219", + "1483095220", + "1483095256", + "1483095219", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979925", + "979925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095257", + "1483095258", + "1483095308", + "1483095257", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979927", + "979927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095259", + "1483095261", + "1483095307", + "1483095259", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979946", + "979946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095309", + "1483095312", + "1483095375", + "1483095309", + "1", + "8", + "0", + "-1", + "63", + "3", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979948", + "979948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095312", + "1483095315", + "1483095345", + "1483095312", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979950", + "979950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095316", + "1483095318", + "1483095446", + "1483095316", + "1", + "8", + "0", + "-1", + "128", + "2", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979952", + "979952", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095335", + "1483095336", + "1483095375", + "1483095335", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979954", + "979954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095346", + "1483095347", + "1483095385", + "1483095346", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979960", + "979960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095351", + "1483095353", + "1483095404", + "1483095351", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979964", + "979964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095376", + "1483095379", + "1483095419", + "1483095376", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979968", + "979968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095389", + "1483095390", + "1483095425", + "1483095389", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979970", + "979970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095404", + "1483095405", + "1483095451", + "1483095404", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979974", + "979974", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095420", + "1483095422", + "1483095473", + "1483095420", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979976", + "979976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095424", + "1483095425", + "1483095474", + "1483095424", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979978", + "979978", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095426", + "1483095428", + "1483095463", + "1483095426", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979980", + "979980", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095446", + "1483095447", + "1483095526", + "1483095446", + "1", + "8", + "0", + "-1", + "79", + "1", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979982", + "979982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095447", + "1483095450", + "1483095526", + "1483095447", + "1", + "8", + "0", + "-1", + "76", + "3", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979984", + "979984", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095451", + "1483095453", + "1483095599", + "1483095451", + "1", + "8", + "0", + "-1", + "146", + "2", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979986", + "979986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095464", + "1483095465", + "1483095511", + "1483095464", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979988", + "979988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095473", + "1483095474", + "1483095557", + "1483095473", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979990", + "979990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095474", + "1483095475", + "1483095546", + "1483095474", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979996", + "979996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095527", + "1483095528", + "1483095585", + "1483095527", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980005", + "980005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095564", + "1483095565", + "1483095616", + "1483095564", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980011", + "980011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095587", + "1483095589", + "1483095671", + "1483095587", + "1", + "8", + "0", + "-1", + "82", + "2", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980017", + "980017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095607", + "1483095608", + "1483095664", + "1483095607", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980021", + "980021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095616", + "1483095617", + "1483095698", + "1483095616", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980029", + "980029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095653", + "1483095654", + "1483095695", + "1483095653", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980031", + "980031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095663", + "1483095664", + "1483095709", + "1483095663", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980044", + "980044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095697", + "1483095698", + "1483095846", + "1483095697", + "1", + "8", + "0", + "-1", + "148", + "1", + "1184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980050", + "980050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095724", + "1483095725", + "1483095806", + "1483095724", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980052", + "980052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095748", + "1483095749", + "1483095802", + "1483095748", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980054", + "980054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095754", + "1483095755", + "1483095816", + "1483095754", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980056", + "980056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095757", + "1483095758", + "1483095794", + "1483095757", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980062", + "980062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095797", + "1483095799", + "1483095841", + "1483095797", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980066", + "980066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095807", + "1483095808", + "1483095877", + "1483095807", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980072", + "980072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095834", + "1483095835", + "1483095981", + "1483095834", + "1", + "8", + "0", + "-1", + "146", + "1", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980074", + "980074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095842", + "1483095843", + "1483095888", + "1483095842", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980078", + "980078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095878", + "1483095879", + "1483095957", + "1483095878", + "1", + "8", + "0", + "-1", + "78", + "1", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980082", + "980082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095888", + "1483095890", + "1483095963", + "1483095888", + "1", + "8", + "0", + "-1", + "73", + "2", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980084", + "980084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095893", + "1483095894", + "1483095959", + "1483095893", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980090", + "980090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095954", + "1483095955", + "1483096001", + "1483095954", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980092", + "980092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095957", + "1483095958", + "1483096031", + "1483095957", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980094", + "980094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095960", + "1483095961", + "1483096068", + "1483095960", + "1", + "8", + "0", + "-1", + "107", + "1", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980098", + "980098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095982", + "1483095983", + "1483096084", + "1483095982", + "1", + "8", + "0", + "-1", + "101", + "1", + "808", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980100", + "980100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095984", + "1483095986", + "1483096105", + "1483095984", + "1", + "8", + "0", + "-1", + "119", + "2", + "952", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980106", + "980106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096031", + "1483096032", + "1483096066", + "1483096031", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980108", + "980108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096066", + "1483096067", + "1483096097", + "1483096066", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980112", + "980112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096075", + "1483096078", + "1483096121", + "1483096075", + "1", + "8", + "0", + "-1", + "43", + "3", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980118", + "980118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096096", + "1483096097", + "1483096136", + "1483096096", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980136", + "980136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096137", + "1483096138", + "1483096168", + "1483096137", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980138", + "980138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096155", + "1483096156", + "1483096206", + "1483096155", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980142", + "980142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096160", + "1483096163", + "1483096210", + "1483096160", + "1", + "8", + "0", + "-1", + "47", + "3", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980144", + "980144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096169", + "1483096170", + "1483096304", + "1483096169", + "1", + "8", + "0", + "-1", + "134", + "1", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980148", + "980148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096187", + "1483096188", + "1483096228", + "1483096187", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980154", + "980154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096210", + "1483096211", + "1483096249", + "1483096210", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980158", + "980158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096229", + "1483096230", + "1483096260", + "1483096229", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980161", + "980161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096229", + "1483096230", + "1483096263", + "1483096229", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980165", + "980165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096250", + "1483096251", + "1483096288", + "1483096250", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980169", + "980169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096261", + "1483096262", + "1483096312", + "1483096261", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980175", + "980175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096289", + "1483096290", + "1483096320", + "1483096289", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980177", + "980177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096290", + "1483096293", + "1483096350", + "1483096290", + "1", + "8", + "0", + "-1", + "57", + "3", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980179", + "980179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096297", + "1483096298", + "1483096358", + "1483096297", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980181", + "980181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096305", + "1483096306", + "1483096391", + "1483096305", + "1", + "8", + "0", + "-1", + "85", + "1", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980185", + "980185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096313", + "1483096315", + "1483096358", + "1483096313", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980187", + "980187", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096320", + "1483096321", + "1483096388", + "1483096320", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980195", + "980195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096359", + "1483096362", + "1483096421", + "1483096359", + "1", + "8", + "0", + "-1", + "59", + "3", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980197", + "980197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096362", + "1483096365", + "1483096506", + "1483096362", + "1", + "8", + "0", + "-1", + "141", + "3", + "1128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980205", + "980205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096389", + "1483096391", + "1483096470", + "1483096389", + "1", + "8", + "0", + "-1", + "79", + "2", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980209", + "980209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096401", + "1483096402", + "1483096488", + "1483096401", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980223", + "980223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096470", + "1483096471", + "1483096650", + "1483096470", + "1", + "8", + "0", + "-1", + "179", + "1", + "1432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980245", + "980245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096552", + "1483096553", + "1483096691", + "1483096552", + "1", + "8", + "0", + "-1", + "138", + "1", + "1104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980251", + "980251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096651", + "1483096652", + "1483096730", + "1483096651", + "1", + "8", + "0", + "-1", + "78", + "1", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980275", + "980275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096761", + "1483096762", + "1483096806", + "1483096761", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980277", + "980277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096764", + "1483096765", + "1483096828", + "1483096764", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980279", + "980279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096774", + "1483096775", + "1483096820", + "1483096774", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980291", + "980291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096821", + "1483096824", + "1483096871", + "1483096821", + "1", + "8", + "0", + "-1", + "47", + "3", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980323", + "980323", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096966", + "1483096967", + "1483097029", + "1483096966", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980325", + "980325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096969", + "1483096970", + "1483097025", + "1483096969", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980327", + "980327", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096973", + "1483096974", + "1483097036", + "1483096973", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980329", + "980329", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096994", + "1483096995", + "1483097047", + "1483096994", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980337", + "980337", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097026", + "1483097027", + "1483097062", + "1483097026", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980339", + "980339", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097028", + "1483097029", + "1483097069", + "1483097028", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980341", + "980341", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097031", + "1483097033", + "1483097110", + "1483097031", + "1", + "8", + "0", + "-1", + "77", + "2", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980343", + "980343", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097034", + "1483097035", + "1483097112", + "1483097034", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980345", + "980345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097036", + "1483097038", + "1483097184", + "1483097036", + "1", + "8", + "0", + "-1", + "146", + "2", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980347", + "980347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097048", + "1483097049", + "1483097104", + "1483097048", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980358", + "980358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097063", + "1483097065", + "1483097102", + "1483097063", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980364", + "980364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097104", + "1483097105", + "1483097152", + "1483097104", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980366", + "980366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097105", + "1483097106", + "1483097169", + "1483097105", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980368", + "980368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097110", + "1483097111", + "1483097174", + "1483097110", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980370", + "980370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097113", + "1483097114", + "1483097172", + "1483097113", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980381", + "980381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097173", + "1483097174", + "1483097227", + "1483097173", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980383", + "980383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097175", + "1483097177", + "1483097214", + "1483097175", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980387", + "980387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097185", + "1483097187", + "1483097265", + "1483097185", + "1", + "8", + "0", + "-1", + "78", + "2", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980397", + "980397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097210", + "1483097212", + "1483097245", + "1483097210", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980401", + "980401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097227", + "1483097228", + "1483097259", + "1483097227", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980411", + "980411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097267", + "1483097269", + "1483097319", + "1483097267", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980417", + "980417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097292", + "1483097293", + "1483097355", + "1483097292", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980427", + "980427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097332", + "1483097333", + "1483097374", + "1483097332", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980429", + "980429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097340", + "1483097341", + "1483097387", + "1483097340", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980431", + "980431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097347", + "1483097348", + "1483097418", + "1483097347", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980437", + "980437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097356", + "1483097357", + "1483097408", + "1483097356", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980439", + "980439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097375", + "1483097376", + "1483097419", + "1483097375", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980441", + "980441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097388", + "1483097389", + "1483097429", + "1483097388", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980443", + "980443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097406", + "1483097407", + "1483097456", + "1483097406", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980445", + "980445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097409", + "1483097410", + "1483097448", + "1483097409", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980447", + "980447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097418", + "1483097419", + "1483097455", + "1483097418", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980449", + "980449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097420", + "1483097422", + "1483097455", + "1483097420", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980453", + "980453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097429", + "1483097431", + "1483097475", + "1483097429", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980455", + "980455", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097449", + "1483097450", + "1483097495", + "1483097449", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980459", + "980459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097456", + "1483097457", + "1483097500", + "1483097456", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980461", + "980461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097457", + "1483097458", + "1483097491", + "1483097457", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980463", + "980463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097476", + "1483097477", + "1483097509", + "1483097476", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980467", + "980467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097485", + "1483097486", + "1483097520", + "1483097485", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980481", + "980481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097510", + "1483097512", + "1483097651", + "1483097510", + "1", + "8", + "0", + "-1", + "139", + "2", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980485", + "980485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097521", + "1483097523", + "1483097561", + "1483097521", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980487", + "980487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097540", + "1483097541", + "1483097594", + "1483097540", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980489", + "980489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097545", + "1483097546", + "1483097593", + "1483097545", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980507", + "980507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097628", + "1483097629", + "1483097683", + "1483097628", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980509", + "980509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097633", + "1483097634", + "1483097687", + "1483097633", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980519", + "980519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097677", + "1483097678", + "1483097715", + "1483097677", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980521", + "980521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097680", + "1483097681", + "1483097741", + "1483097680", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980531", + "980531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097699", + "1483097700", + "1483097772", + "1483097699", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980535", + "980535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097715", + "1483097716", + "1483097762", + "1483097715", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980537", + "980537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097738", + "1483097739", + "1483097773", + "1483097738", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980539", + "980539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097742", + "1483097743", + "1483097791", + "1483097742", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980541", + "980541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097752", + "1483097753", + "1483097797", + "1483097752", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980543", + "980543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097754", + "1483097755", + "1483097790", + "1483097754", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980545", + "980545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097763", + "1483097764", + "1483097817", + "1483097763", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980553", + "980553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097792", + "1483097794", + "1483097840", + "1483097792", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980555", + "980555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097797", + "1483097798", + "1483097855", + "1483097797", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980561", + "980561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097816", + "1483097817", + "1483097847", + "1483097816", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980563", + "980563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097817", + "1483097818", + "1483097872", + "1483097817", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980569", + "980569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097841", + "1483097844", + "1483097920", + "1483097841", + "1", + "8", + "0", + "-1", + "76", + "3", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980571", + "980571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097848", + "1483097849", + "1483097925", + "1483097848", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980575", + "980575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097873", + "1483097874", + "1483097935", + "1483097873", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980583", + "980583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097917", + "1483097918", + "1483097955", + "1483097917", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980585", + "980585", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097920", + "1483097921", + "1483097957", + "1483097920", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980591", + "980591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097940", + "1483097941", + "1483097994", + "1483097940", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980595", + "980595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097958", + "1483097959", + "1483098010", + "1483097958", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980599", + "980599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097966", + "1483097967", + "1483098034", + "1483097966", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980629", + "980629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098103", + "1483098105", + "1483098140", + "1483098103", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980633", + "980633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098121", + "1483098122", + "1483098170", + "1483098121", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980637", + "980637", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098141", + "1483098142", + "1483098176", + "1483098141", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980643", + "980643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098155", + "1483098156", + "1483098217", + "1483098155", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980645", + "980645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098158", + "1483098159", + "1483098224", + "1483098158", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980653", + "980653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098183", + "1483098184", + "1483098214", + "1483098183", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980657", + "980657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098197", + "1483098198", + "1483098263", + "1483098197", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980659", + "980659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098201", + "1483098202", + "1483098258", + "1483098201", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980661", + "980661", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098207", + "1483098208", + "1483098292", + "1483098207", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980665", + "980665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098215", + "1483098216", + "1483098273", + "1483098215", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980670", + "980670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098218", + "1483098219", + "1483098258", + "1483098218", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980672", + "980672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098225", + "1483098226", + "1483098259", + "1483098225", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980674", + "980674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098258", + "1483098259", + "1483098294", + "1483098258", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980678", + "980678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098260", + "1483098262", + "1483098319", + "1483098260", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980680", + "980680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098264", + "1483098265", + "1483098301", + "1483098264", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980682", + "980682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098273", + "1483098274", + "1483098310", + "1483098273", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980684", + "980684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098293", + "1483098294", + "1483098328", + "1483098293", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980686", + "980686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098294", + "1483098295", + "1483098333", + "1483098294", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980708", + "980708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098348", + "1483098349", + "1483098500", + "1483098348", + "1", + "8", + "0", + "-1", + "151", + "1", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980714", + "980714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098375", + "1483098376", + "1483098427", + "1483098375", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980718", + "980718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098412", + "1483098413", + "1483098473", + "1483098412", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980720", + "980720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098414", + "1483098415", + "1483098479", + "1483098414", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980726", + "980726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098427", + "1483098428", + "1483098491", + "1483098427", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980730", + "980730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098473", + "1483098474", + "1483098560", + "1483098473", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980740", + "980740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098522", + "1483098523", + "1483098569", + "1483098522", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980742", + "980742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098534", + "1483098535", + "1483098570", + "1483098534", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980744", + "980744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098545", + "1483098546", + "1483098602", + "1483098545", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980746", + "980746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098552", + "1483098553", + "1483098591", + "1483098552", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980752", + "980752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098570", + "1483098571", + "1483098666", + "1483098570", + "1", + "8", + "0", + "-1", + "95", + "1", + "760", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980754", + "980754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098571", + "1483098573", + "1483098774", + "1483098571", + "1", + "8", + "0", + "-1", + "201", + "2", + "1608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980756", + "980756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098592", + "1483098593", + "1483098716", + "1483098592", + "1", + "8", + "0", + "-1", + "123", + "1", + "984", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980758", + "980758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098603", + "1483098604", + "1483098685", + "1483098603", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980762", + "980762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098662", + "1483098663", + "1483098703", + "1483098662", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980768", + "980768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098684", + "1483098685", + "1483098719", + "1483098684", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980770", + "980770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098686", + "1483098688", + "1483098730", + "1483098686", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980772", + "980772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098701", + "1483098702", + "1483098736", + "1483098701", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980774", + "980774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098704", + "1483098705", + "1483098740", + "1483098704", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980776", + "980776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098717", + "1483098718", + "1483098752", + "1483098717", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980778", + "980778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098720", + "1483098721", + "1483098756", + "1483098720", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980780", + "980780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098730", + "1483098731", + "1483098763", + "1483098730", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980785", + "980785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098737", + "1483098738", + "1483098768", + "1483098737", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980791", + "980791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098757", + "1483098758", + "1483098804", + "1483098757", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980795", + "980795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098766", + "1483098767", + "1483098824", + "1483098766", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980797", + "980797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098769", + "1483098770", + "1483098819", + "1483098769", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980809", + "980809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098805", + "1483098807", + "1483098855", + "1483098805", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980819", + "980819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098856", + "1483098859", + "1483098890", + "1483098856", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980823", + "980823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098875", + "1483098877", + "1483098923", + "1483098875", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980843", + "980843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098941", + "1483098943", + "1483098994", + "1483098941", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980845", + "980845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098945", + "1483098946", + "1483099088", + "1483098945", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980849", + "980849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098959", + "1483098960", + "1483098999", + "1483098959", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980851", + "980851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098964", + "1483098965", + "1483099031", + "1483098964", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980853", + "980853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098968", + "1483098969", + "1483099001", + "1483098968", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980859", + "980859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098995", + "1483098996", + "1483099028", + "1483098995", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980863", + "980863", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099001", + "1483099003", + "1483099044", + "1483099001", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980865", + "980865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099014", + "1483099015", + "1483099050", + "1483099014", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980867", + "980867", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099028", + "1483099029", + "1483099061", + "1483099028", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980869", + "980869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099030", + "1483099031", + "1483099062", + "1483099030", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980871", + "980871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099031", + "1483099032", + "1483099065", + "1483099031", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980885", + "980885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099077", + "1483099078", + "1483099138", + "1483099077", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980887", + "980887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099088", + "1483099089", + "1483099128", + "1483099088", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980889", + "980889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099090", + "1483099092", + "1483099131", + "1483099090", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980891", + "980891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099092", + "1483099095", + "1483099218", + "1483099092", + "1", + "8", + "0", + "-1", + "123", + "3", + "984", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980893", + "980893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099105", + "1483099106", + "1483099147", + "1483099105", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980895", + "980895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099106", + "1483099109", + "1483099157", + "1483099106", + "1", + "8", + "0", + "-1", + "48", + "3", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980907", + "980907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099167", + "1483099168", + "1483099207", + "1483099167", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980913", + "980913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099196", + "1483099198", + "1483099253", + "1483099196", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980933", + "980933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099260", + "1483099262", + "1483099333", + "1483099260", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980935", + "980935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099268", + "1483099269", + "1483099309", + "1483099268", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980937", + "980937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099271", + "1483099272", + "1483099371", + "1483099271", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980939", + "980939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099274", + "1483099275", + "1483099332", + "1483099274", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980953", + "980953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099359", + "1483099361", + "1483099404", + "1483099359", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980956", + "980956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099360", + "1483099361", + "1483099401", + "1483099360", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980960", + "980960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099372", + "1483099373", + "1483099412", + "1483099372", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980974", + "980974", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099405", + "1483099406", + "1483099454", + "1483099405", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980978", + "980978", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099412", + "1483099413", + "1483099449", + "1483099412", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980981", + "980981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099413", + "1483099416", + "1483099509", + "1483099413", + "1", + "8", + "0", + "-1", + "93", + "3", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980983", + "980983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099422", + "1483099423", + "1483099469", + "1483099422", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980985", + "980985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099430", + "1483099431", + "1483099474", + "1483099430", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980991", + "980991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099454", + "1483099455", + "1483099488", + "1483099454", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980993", + "980993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099469", + "1483099470", + "1483099540", + "1483099469", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980995", + "980995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099474", + "1483099475", + "1483099513", + "1483099474", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981007", + "981007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099513", + "1483099516", + "1483099565", + "1483099513", + "1", + "8", + "0", + "-1", + "49", + "3", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981009", + "981009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099524", + "1483099525", + "1483099559", + "1483099524", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981011", + "981011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099541", + "1483099542", + "1483099583", + "1483099541", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981013", + "981013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099544", + "1483099545", + "1483099583", + "1483099544", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981019", + "981019", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099565", + "1483099566", + "1483099613", + "1483099565", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981027", + "981027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099585", + "1483099587", + "1483099700", + "1483099585", + "1", + "8", + "0", + "-1", + "113", + "2", + "904", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981029", + "981029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099600", + "1483099601", + "1483099669", + "1483099600", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981031", + "981031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099613", + "1483099614", + "1483099713", + "1483099613", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981039", + "981039", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099669", + "1483099670", + "1483099724", + "1483099669", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981041", + "981041", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099676", + "1483099678", + "1483099727", + "1483099676", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981043", + "981043", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099681", + "1483099682", + "1483099755", + "1483099681", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981055", + "981055", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099713", + "1483099715", + "1483099776", + "1483099713", + "1", + "8", + "0", + "-1", + "61", + "2", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981057", + "981057", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099724", + "1483099725", + "1483099779", + "1483099724", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981061", + "981061", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099728", + "1483099731", + "1483099766", + "1483099728", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981063", + "981063", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099744", + "1483099745", + "1483099785", + "1483099744", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981065", + "981065", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099756", + "1483099757", + "1483099822", + "1483099756", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981067", + "981067", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099759", + "1483099760", + "1483099853", + "1483099759", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981069", + "981069", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099767", + "1483099768", + "1483099840", + "1483099767", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981073", + "981073", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099777", + "1483099778", + "1483099956", + "1483099777", + "1", + "8", + "0", + "-1", + "178", + "1", + "1424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981075", + "981075", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099780", + "1483099781", + "1483099878", + "1483099780", + "1", + "8", + "0", + "-1", + "97", + "1", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981077", + "981077", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099785", + "1483099786", + "1483099894", + "1483099785", + "1", + "8", + "0", + "-1", + "108", + "1", + "864", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981081", + "981081", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099823", + "1483099824", + "1483099896", + "1483099823", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981085", + "981085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099840", + "1483099841", + "1483099914", + "1483099840", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981091", + "981091", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099878", + "1483099879", + "1483099944", + "1483099878", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981097", + "981097", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099897", + "1483099898", + "1483099981", + "1483099897", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981101", + "981101", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099944", + "1483099945", + "1483100017", + "1483099944", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981107", + "981107", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099962", + "1483099963", + "1483100003", + "1483099962", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981111", + "981111", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099974", + "1483099975", + "1483100046", + "1483099974", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981119", + "981119", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100006", + "1483100007", + "1483100180", + "1483100006", + "1", + "8", + "0", + "-1", + "173", + "1", + "1384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981125", + "981125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100047", + "1483100049", + "1483100152", + "1483100047", + "1", + "8", + "0", + "-1", + "103", + "2", + "824", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981129", + "981129", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100075", + "1483100076", + "1483100231", + "1483100075", + "1", + "8", + "0", + "-1", + "155", + "1", + "1240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981141", + "981141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100153", + "1483100154", + "1483100307", + "1483100153", + "1", + "8", + "0", + "-1", + "153", + "1", + "1224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981147", + "981147", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100181", + "1483100182", + "1483100328", + "1483100181", + "1", + "8", + "0", + "-1", + "146", + "1", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981149", + "981149", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100222", + "1483100223", + "1483100318", + "1483100222", + "1", + "8", + "0", + "-1", + "95", + "1", + "760", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981151", + "981151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100227", + "1483100228", + "1483100360", + "1483100227", + "1", + "8", + "0", + "-1", + "132", + "1", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981153", + "981153", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100232", + "1483100233", + "1483100343", + "1483100232", + "1", + "8", + "0", + "-1", + "110", + "1", + "880", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981155", + "981155", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100243", + "1483100244", + "1483100380", + "1483100243", + "1", + "8", + "0", + "-1", + "136", + "1", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981161", + "981161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100319", + "1483100320", + "1483100499", + "1483100319", + "1", + "8", + "0", + "-1", + "179", + "1", + "1432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981163", + "981163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100329", + "1483100330", + "1483100505", + "1483100329", + "1", + "8", + "0", + "-1", + "175", + "1", + "1400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981165", + "981165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100343", + "1483100344", + "1483100622", + "1483100343", + "1", + "8", + "0", + "-1", + "278", + "1", + "2224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981167", + "981167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100361", + "1483100362", + "1483100492", + "1483100361", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981171", + "981171", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100380", + "1483100381", + "1483100565", + "1483100380", + "1", + "8", + "0", + "-1", + "184", + "1", + "1472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981177", + "981177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100472", + "1483100475", + "1483100532", + "1483100472", + "1", + "8", + "0", + "-1", + "57", + "3", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981179", + "981179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100492", + "1483100493", + "1483100546", + "1483100492", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981205", + "981205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100619", + "1483100621", + "1483100693", + "1483100619", + "1", + "8", + "0", + "-1", + "72", + "2", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981207", + "981207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100623", + "1483100624", + "1483100724", + "1483100623", + "1", + "8", + "0", + "-1", + "100", + "1", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981217", + "981217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100666", + "1483100667", + "1483100757", + "1483100666", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981219", + "981219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100674", + "1483100675", + "1483100728", + "1483100674", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981223", + "981223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100694", + "1483100695", + "1483100778", + "1483100694", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981225", + "981225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100696", + "1483100698", + "1483100745", + "1483100696", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981229", + "981229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100724", + "1483100725", + "1483100797", + "1483100724", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981231", + "981231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100728", + "1483100729", + "1483100785", + "1483100728", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981235", + "981235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100746", + "1483100747", + "1483100801", + "1483100746", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981237", + "981237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100758", + "1483100759", + "1483100847", + "1483100758", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981239", + "981239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100779", + "1483100780", + "1483100819", + "1483100779", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981243", + "981243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100785", + "1483100786", + "1483100847", + "1483100785", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981245", + "981245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100788", + "1483100789", + "1483100844", + "1483100788", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981249", + "981249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100797", + "1483100800", + "1483100877", + "1483100797", + "1", + "8", + "0", + "-1", + "77", + "3", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981251", + "981251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100801", + "1483100803", + "1483100861", + "1483100801", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981261", + "981261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100848", + "1483100851", + "1483100912", + "1483100848", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981263", + "981263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100862", + "1483100863", + "1483100972", + "1483100862", + "1", + "8", + "0", + "-1", + "109", + "1", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981265", + "981265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100876", + "1483100877", + "1483100959", + "1483100876", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981267", + "981267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100877", + "1483100878", + "1483100960", + "1483100877", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981271", + "981271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100912", + "1483100913", + "1483100994", + "1483100912", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981279", + "981279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100960", + "1483100963", + "1483101018", + "1483100960", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981289", + "981289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101017", + "1483101019", + "1483101071", + "1483101017", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981299", + "981299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101071", + "1483101072", + "1483101177", + "1483101071", + "1", + "8", + "0", + "-1", + "105", + "1", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981308", + "981308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101080", + "1483101081", + "1483101189", + "1483101080", + "1", + "8", + "0", + "-1", + "108", + "1", + "864", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981310", + "981310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101087", + "1483101088", + "1483101133", + "1483101087", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981316", + "981316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101123", + "1483101124", + "1483101173", + "1483101123", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981318", + "981318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101134", + "1483101135", + "1483101180", + "1483101134", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981322", + "981322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101176", + "1483101177", + "1483101221", + "1483101176", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981324", + "981324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101177", + "1483101178", + "1483101231", + "1483101177", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981326", + "981326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101179", + "1483101180", + "1483101219", + "1483101179", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981338", + "981338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101216", + "1483101218", + "1483101249", + "1483101216", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981347", + "981347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101222", + "1483101224", + "1483101361", + "1483101222", + "1", + "8", + "0", + "-1", + "137", + "2", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981351", + "981351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101232", + "1483101233", + "1483101278", + "1483101232", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981353", + "981353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101238", + "1483101239", + "1483101277", + "1483101238", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981357", + "981357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101249", + "1483101250", + "1483101286", + "1483101249", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981359", + "981359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101277", + "1483101278", + "1483101311", + "1483101277", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981361", + "981361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101279", + "1483101281", + "1483101331", + "1483101279", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981367", + "981367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101293", + "1483101294", + "1483101348", + "1483101293", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981371", + "981371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101312", + "1483101313", + "1483101358", + "1483101312", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981373", + "981373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101314", + "1483101315", + "1483101352", + "1483101314", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981389", + "981389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101358", + "1483101361", + "1483101432", + "1483101358", + "1", + "8", + "0", + "-1", + "71", + "3", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981391", + "981391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101362", + "1483101364", + "1483101432", + "1483101362", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981401", + "981401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101412", + "1483101413", + "1483101446", + "1483101412", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981417", + "981417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101466", + "1483101467", + "1483101510", + "1483101466", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981421", + "981421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101475", + "1483101478", + "1483101515", + "1483101475", + "1", + "8", + "0", + "-1", + "37", + "3", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981433", + "981433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101515", + "1483101516", + "1483101567", + "1483101515", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981437", + "981437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101528", + "1483101529", + "1483101568", + "1483101528", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981439", + "981439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101530", + "1483101531", + "1483101628", + "1483101530", + "1", + "8", + "0", + "-1", + "97", + "1", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981443", + "981443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101537", + "1483101538", + "1483101581", + "1483101537", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981445", + "981445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101540", + "1483101541", + "1483101576", + "1483101540", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981447", + "981447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101567", + "1483101568", + "1483101611", + "1483101567", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981453", + "981453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101576", + "1483101577", + "1483101607", + "1483101576", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981459", + "981459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101607", + "1483101608", + "1483101638", + "1483101607", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981463", + "981463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101613", + "1483101615", + "1483101669", + "1483101613", + "1", + "8", + "0", + "-1", + "54", + "2", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981465", + "981465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101616", + "1483101618", + "1483101662", + "1483101616", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981479", + "981479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101663", + "1483101665", + "1483101718", + "1483101663", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981483", + "981483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101670", + "1483101671", + "1483101725", + "1483101670", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981485", + "981485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101672", + "1483101674", + "1483101768", + "1483101672", + "1", + "8", + "0", + "-1", + "94", + "2", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981493", + "981493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101717", + "1483101718", + "1483101759", + "1483101717", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981498", + "981498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101719", + "1483101721", + "1483101760", + "1483101719", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981524", + "981524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101794", + "1483101796", + "1483101835", + "1483101794", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981526", + "981526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101798", + "1483101799", + "1483101842", + "1483101798", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981528", + "981528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101801", + "1483101802", + "1483101847", + "1483101801", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981534", + "981534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101823", + "1483101824", + "1483101884", + "1483101823", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981536", + "981536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101835", + "1483101838", + "1483101869", + "1483101835", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981556", + "981556", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101897", + "1483101898", + "1483101931", + "1483101897", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981558", + "981558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101899", + "1483101901", + "1483101933", + "1483101899", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981569", + "981569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101932", + "1483101934", + "1483101974", + "1483101932", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981571", + "981571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101934", + "1483101935", + "1483101967", + "1483101934", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981575", + "981575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101939", + "1483101941", + "1483102063", + "1483101939", + "1", + "8", + "0", + "-1", + "122", + "2", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981577", + "981577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101941", + "1483101943", + "1483101981", + "1483101941", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981581", + "981581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101960", + "1483101961", + "1483101991", + "1483101960", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981583", + "981583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101968", + "1483101969", + "1483102003", + "1483101968", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981585", + "981585", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101975", + "1483101976", + "1483102020", + "1483101975", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981587", + "981587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101977", + "1483101979", + "1483102023", + "1483101977", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981591", + "981591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101992", + "1483101993", + "1483102042", + "1483101992", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981597", + "981597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102021", + "1483102023", + "1483102064", + "1483102021", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981599", + "981599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102023", + "1483102024", + "1483102065", + "1483102023", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981613", + "981613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102066", + "1483102067", + "1483102102", + "1483102066", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981617", + "981617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102072", + "1483102073", + "1483102126", + "1483102072", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981625", + "981625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102098", + "1483102099", + "1483102180", + "1483102098", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981629", + "981629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102103", + "1483102105", + "1483102142", + "1483102103", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981641", + "981641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102140", + "1483102142", + "1483102180", + "1483102140", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981647", + "981647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102163", + "1483102164", + "1483102211", + "1483102163", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981649", + "981649", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102164", + "1483102165", + "1483102211", + "1483102164", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981659", + "981659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102201", + "1483102202", + "1483102235", + "1483102201", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981663", + "981663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102205", + "1483102208", + "1483102265", + "1483102205", + "1", + "8", + "0", + "-1", + "57", + "3", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981665", + "981665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102211", + "1483102212", + "1483102284", + "1483102211", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981667", + "981667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102212", + "1483102214", + "1483102356", + "1483102212", + "1", + "8", + "0", + "-1", + "142", + "2", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981669", + "981669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102214", + "1483102215", + "1483102263", + "1483102214", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981671", + "981671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102222", + "1483102223", + "1483102260", + "1483102222", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981673", + "981673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102236", + "1483102237", + "1483102273", + "1483102236", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981675", + "981675", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102260", + "1483102261", + "1483102295", + "1483102260", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981679", + "981679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102264", + "1483102266", + "1483102303", + "1483102264", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981681", + "981681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102266", + "1483102267", + "1483102306", + "1483102266", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981687", + "981687", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102284", + "1483102285", + "1483102325", + "1483102284", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981689", + "981689", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102296", + "1483102297", + "1483102327", + "1483102296", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981691", + "981691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102303", + "1483102304", + "1483102355", + "1483102303", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981693", + "981693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102307", + "1483102308", + "1483102358", + "1483102307", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981695", + "981695", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102318", + "1483102319", + "1483102375", + "1483102318", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981701", + "981701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102328", + "1483102331", + "1483102363", + "1483102328", + "1", + "8", + "0", + "-1", + "32", + "3", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981709", + "981709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102359", + "1483102360", + "1483102402", + "1483102359", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981713", + "981713", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102376", + "1483102378", + "1483102505", + "1483102376", + "1", + "8", + "0", + "-1", + "127", + "2", + "1016", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981717", + "981717", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102382", + "1483102384", + "1483102435", + "1483102382", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981721", + "981721", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102406", + "1483102407", + "1483102440", + "1483102406", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981723", + "981723", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102418", + "1483102419", + "1483102465", + "1483102418", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981727", + "981727", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102435", + "1483102438", + "1483102476", + "1483102435", + "1", + "8", + "0", + "-1", + "38", + "3", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981735", + "981735", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102466", + "1483102469", + "1483102500", + "1483102466", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981739", + "981739", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102477", + "1483102480", + "1483102535", + "1483102477", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981755", + "981755", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102528", + "1483102530", + "1483102573", + "1483102528", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981757", + "981757", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102531", + "1483102532", + "1483102568", + "1483102531", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981759", + "981759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102532", + "1483102533", + "1483102612", + "1483102532", + "1", + "8", + "0", + "-1", + "79", + "1", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981761", + "981761", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102535", + "1483102536", + "1483102590", + "1483102535", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981763", + "981763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102553", + "1483102554", + "1483102593", + "1483102553", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981765", + "981765", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102569", + "1483102570", + "1483102604", + "1483102569", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981767", + "981767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102574", + "1483102575", + "1483102643", + "1483102574", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981769", + "981769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102590", + "1483102591", + "1483102661", + "1483102590", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981771", + "981771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102591", + "1483102593", + "1483102663", + "1483102591", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981777", + "981777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102605", + "1483102606", + "1483102662", + "1483102605", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981781", + "981781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102613", + "1483102614", + "1483102666", + "1483102613", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981785", + "981785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102644", + "1483102645", + "1483102710", + "1483102644", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981787", + "981787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102656", + "1483102657", + "1483102723", + "1483102656", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981789", + "981789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102661", + "1483102662", + "1483102730", + "1483102661", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981791", + "981791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102662", + "1483102663", + "1483102730", + "1483102662", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981793", + "981793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102664", + "1483102665", + "1483102706", + "1483102664", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981795", + "981795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102667", + "1483102668", + "1483102726", + "1483102667", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981799", + "981799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102710", + "1483102711", + "1483102802", + "1483102710", + "1", + "8", + "0", + "-1", + "91", + "1", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981801", + "981801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102723", + "1483102724", + "1483102824", + "1483102723", + "1", + "8", + "0", + "-1", + "100", + "1", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981808", + "981808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102731", + "1483102734", + "1483102849", + "1483102731", + "1", + "8", + "0", + "-1", + "115", + "3", + "920", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981812", + "981812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102802", + "1483102803", + "1483102848", + "1483102802", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981814", + "981814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102825", + "1483102826", + "1483102860", + "1483102825", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981818", + "981818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102848", + "1483102849", + "1483102887", + "1483102848", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981820", + "981820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102850", + "1483102852", + "1483102896", + "1483102850", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981824", + "981824", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102861", + "1483102863", + "1483102916", + "1483102861", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981826", + "981826", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102867", + "1483102868", + "1483102909", + "1483102867", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981832", + "981832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102887", + "1483102888", + "1483102923", + "1483102887", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981844", + "981844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102925", + "1483102927", + "1483102965", + "1483102925", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981848", + "981848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102935", + "1483102936", + "1483102982", + "1483102935", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981891", + "981891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103045", + "1483103046", + "1483103077", + "1483103045", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981893", + "981893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103045", + "1483103046", + "1483103090", + "1483103045", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981895", + "981895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103047", + "1483103049", + "1483103178", + "1483103047", + "1", + "8", + "0", + "-1", + "129", + "2", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981897", + "981897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103054", + "1483103055", + "1483103096", + "1483103054", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981899", + "981899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103059", + "1483103060", + "1483103110", + "1483103059", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981909", + "981909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103100", + "1483103101", + "1483103142", + "1483103100", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981911", + "981911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103107", + "1483103108", + "1483103146", + "1483103107", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981915", + "981915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103111", + "1483103114", + "1483103152", + "1483103111", + "1", + "8", + "0", + "-1", + "38", + "3", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981917", + "981917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103123", + "1483103124", + "1483103169", + "1483103123", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981921", + "981921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103143", + "1483103144", + "1483103189", + "1483103143", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981935", + "981935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103179", + "1483103180", + "1483103218", + "1483103179", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981943", + "981943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103198", + "1483103199", + "1483103238", + "1483103198", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981947", + "981947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103218", + "1483103219", + "1483103251", + "1483103218", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981967", + "981967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103272", + "1483103274", + "1483103307", + "1483103272", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981981", + "981981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103315", + "1483103317", + "1483103349", + "1483103315", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981983", + "981983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103317", + "1483103320", + "1483103382", + "1483103317", + "1", + "8", + "0", + "-1", + "62", + "3", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981985", + "981985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103321", + "1483103322", + "1483103370", + "1483103321", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981989", + "981989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103324", + "1483103326", + "1483103365", + "1483103324", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981991", + "981991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103330", + "1483103331", + "1483103392", + "1483103330", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981993", + "981993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103337", + "1483103338", + "1483103369", + "1483103337", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981995", + "981995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103349", + "1483103350", + "1483103383", + "1483103349", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981997", + "981997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103366", + "1483103367", + "1483103398", + "1483103366", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981999", + "981999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103370", + "1483103371", + "1483103407", + "1483103370", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982001", + "982001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103371", + "1483103374", + "1483103419", + "1483103371", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982009", + "982009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103392", + "1483103393", + "1483103442", + "1483103392", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982013", + "982013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103406", + "1483103407", + "1483103440", + "1483103406", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982015", + "982015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103407", + "1483103410", + "1483103456", + "1483103407", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982028", + "982028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103442", + "1483103443", + "1483103479", + "1483103442", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982030", + "982030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103443", + "1483103446", + "1483103508", + "1483103443", + "1", + "8", + "0", + "-1", + "62", + "3", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982032", + "982032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103447", + "1483103449", + "1483103578", + "1483103447", + "1", + "8", + "0", + "-1", + "129", + "2", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982034", + "982034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103457", + "1483103458", + "1483103496", + "1483103457", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982040", + "982040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103479", + "1483103480", + "1483103542", + "1483103479", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982044", + "982044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103505", + "1483103506", + "1483103555", + "1483103505", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982048", + "982048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103508", + "1483103509", + "1483103542", + "1483103508", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982054", + "982054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103542", + "1483103543", + "1483103577", + "1483103542", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982061", + "982061", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103555", + "1483103557", + "1483103587", + "1483103555", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982067", + "982067", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103579", + "1483103581", + "1483103618", + "1483103579", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982071", + "982071", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103590", + "1483103591", + "1483103651", + "1483103590", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982081", + "982081", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103619", + "1483103620", + "1483103707", + "1483103619", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982083", + "982083", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103620", + "1483103621", + "1483103663", + "1483103620", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982087", + "982087", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103652", + "1483103653", + "1483103693", + "1483103652", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982089", + "982089", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103654", + "1483103656", + "1483103725", + "1483103654", + "1", + "8", + "0", + "-1", + "69", + "2", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982091", + "982091", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103664", + "1483103665", + "1483103733", + "1483103664", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982095", + "982095", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103671", + "1483103672", + "1483103705", + "1483103671", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982099", + "982099", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103693", + "1483103694", + "1483103732", + "1483103693", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982105", + "982105", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103707", + "1483103709", + "1483103757", + "1483103707", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982107", + "982107", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103726", + "1483103727", + "1483103786", + "1483103726", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982109", + "982109", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103733", + "1483103734", + "1483103765", + "1483103733", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982119", + "982119", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103767", + "1483103769", + "1483103839", + "1483103767", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982121", + "982121", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103782", + "1483103783", + "1483103829", + "1483103782", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982130", + "982130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103801", + "1483103804", + "1483103847", + "1483103801", + "1", + "8", + "0", + "-1", + "43", + "3", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982132", + "982132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103827", + "1483103828", + "1483103867", + "1483103827", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982134", + "982134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103830", + "1483103831", + "1483103866", + "1483103830", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982140", + "982140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103847", + "1483103848", + "1483103882", + "1483103847", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982142", + "982142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103849", + "1483103851", + "1483103907", + "1483103849", + "1", + "8", + "0", + "-1", + "56", + "2", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982146", + "982146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103866", + "1483103867", + "1483103924", + "1483103866", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982148", + "982148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103868", + "1483103869", + "1483103929", + "1483103868", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982162", + "982162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103926", + "1483103928", + "1483103996", + "1483103926", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982164", + "982164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103930", + "1483103931", + "1483103981", + "1483103930", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982166", + "982166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103936", + "1483103938", + "1483104028", + "1483103936", + "1", + "8", + "0", + "-1", + "90", + "2", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982179", + "982179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103997", + "1483103998", + "1483104135", + "1483103997", + "1", + "8", + "0", + "-1", + "137", + "1", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982181", + "982181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104021", + "1483104022", + "1483104155", + "1483104021", + "1", + "8", + "0", + "-1", + "133", + "1", + "1064", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982185", + "982185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104028", + "1483104029", + "1483104093", + "1483104028", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982191", + "982191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104061", + "1483104062", + "1483104204", + "1483104061", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982193", + "982193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104094", + "1483104095", + "1483104207", + "1483104094", + "1", + "8", + "0", + "-1", + "112", + "1", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982195", + "982195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104105", + "1483104106", + "1483104222", + "1483104105", + "1", + "8", + "0", + "-1", + "116", + "1", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982205", + "982205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104156", + "1483104157", + "1483104252", + "1483104156", + "1", + "8", + "0", + "-1", + "95", + "1", + "760", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982211", + "982211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104205", + "1483104206", + "1483104376", + "1483104205", + "1", + "8", + "0", + "-1", + "170", + "1", + "1360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982213", + "982213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104207", + "1483104209", + "1483104452", + "1483104207", + "1", + "8", + "0", + "-1", + "243", + "2", + "1944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982215", + "982215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104223", + "1483104224", + "1483104350", + "1483104223", + "1", + "8", + "0", + "-1", + "126", + "1", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982221", + "982221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104253", + "1483104254", + "1483104325", + "1483104253", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982239", + "982239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104366", + "1483104368", + "1483104425", + "1483104366", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982243", + "982243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104391", + "1483104392", + "1483104436", + "1483104391", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982262", + "982262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104453", + "1483104455", + "1483104537", + "1483104453", + "1", + "8", + "0", + "-1", + "82", + "2", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982270", + "982270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104530", + "1483104531", + "1483104587", + "1483104530", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982272", + "982272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104531", + "1483104533", + "1483104578", + "1483104531", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982274", + "982274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104533", + "1483104534", + "1483104582", + "1483104533", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982276", + "982276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104537", + "1483104538", + "1483104573", + "1483104537", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982280", + "982280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104558", + "1483104559", + "1483104624", + "1483104558", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982282", + "982282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104574", + "1483104575", + "1483104640", + "1483104574", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982284", + "982284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104579", + "1483104580", + "1483104649", + "1483104579", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982286", + "982286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104582", + "1483104583", + "1483104633", + "1483104582", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982288", + "982288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104586", + "1483104587", + "1483104621", + "1483104586", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982290", + "982290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104587", + "1483104589", + "1483104630", + "1483104587", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982294", + "982294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104622", + "1483104623", + "1483104666", + "1483104622", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982296", + "982296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104625", + "1483104626", + "1483104660", + "1483104625", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982298", + "982298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104631", + "1483104632", + "1483104720", + "1483104631", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982300", + "982300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104633", + "1483104635", + "1483104705", + "1483104633", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982302", + "982302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104641", + "1483104642", + "1483104740", + "1483104641", + "1", + "8", + "0", + "-1", + "98", + "1", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982306", + "982306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104660", + "1483104661", + "1483104720", + "1483104660", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982308", + "982308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104667", + "1483104668", + "1483104769", + "1483104667", + "1", + "8", + "0", + "-1", + "101", + "1", + "808", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982312", + "982312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104720", + "1483104721", + "1483104787", + "1483104720", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982314", + "982314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104721", + "1483104724", + "1483104795", + "1483104721", + "1", + "8", + "0", + "-1", + "71", + "3", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982318", + "982318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104756", + "1483104757", + "1483104817", + "1483104756", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982320", + "982320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104770", + "1483104771", + "1483104837", + "1483104770", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982330", + "982330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104816", + "1483104817", + "1483104869", + "1483104816", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982332", + "982332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104817", + "1483104820", + "1483104881", + "1483104817", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982340", + "982340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104840", + "1483104841", + "1483104904", + "1483104840", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982350", + "982350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104881", + "1483104883", + "1483105050", + "1483104881", + "1", + "8", + "0", + "-1", + "167", + "2", + "1336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982356", + "982356", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104927", + "1483104928", + "1483105026", + "1483104927", + "1", + "8", + "0", + "-1", + "98", + "1", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982360", + "982360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104955", + "1483104958", + "1483105000", + "1483104955", + "1", + "8", + "0", + "-1", + "42", + "3", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982370", + "982370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104976", + "1483104978", + "1483105045", + "1483104976", + "1", + "8", + "0", + "-1", + "67", + "2", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982372", + "982372", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104999", + "1483105000", + "1483105044", + "1483104999", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982374", + "982374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105001", + "1483105003", + "1483105040", + "1483105001", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982378", + "982378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105027", + "1483105028", + "1483105064", + "1483105027", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982382", + "982382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105041", + "1483105042", + "1483105073", + "1483105041", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982386", + "982386", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105046", + "1483105049", + "1483105079", + "1483105046", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982388", + "982388", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105050", + "1483105052", + "1483105097", + "1483105050", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982392", + "982392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105073", + "1483105074", + "1483105131", + "1483105073", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982394", + "982394", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105076", + "1483105078", + "1483105161", + "1483105076", + "1", + "8", + "0", + "-1", + "83", + "2", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982396", + "982396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105079", + "1483105080", + "1483105236", + "1483105079", + "1", + "8", + "0", + "-1", + "156", + "1", + "1248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982398", + "982398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105080", + "1483105081", + "1483105155", + "1483105080", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982402", + "982402", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105131", + "1483105132", + "1483105221", + "1483105131", + "1", + "8", + "0", + "-1", + "89", + "1", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982410", + "982410", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105161", + "1483105163", + "1483105221", + "1483105161", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982412", + "982412", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105188", + "1483105189", + "1483105242", + "1483105188", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982414", + "982414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105189", + "1483105192", + "1483105237", + "1483105189", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982419", + "982419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105222", + "1483105224", + "1483105274", + "1483105222", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982421", + "982421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105224", + "1483105225", + "1483105270", + "1483105224", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982425", + "982425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105238", + "1483105240", + "1483105286", + "1483105238", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982429", + "982429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105259", + "1483105260", + "1483105300", + "1483105259", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982433", + "982433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105273", + "1483105274", + "1483105314", + "1483105273", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982435", + "982435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105275", + "1483105277", + "1483105345", + "1483105275", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982441", + "982441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105298", + "1483105299", + "1483105355", + "1483105298", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982445", + "982445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105301", + "1483105302", + "1483105390", + "1483105301", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982448", + "982448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105301", + "1483105302", + "1483105337", + "1483105301", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982464", + "982464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105370", + "1483105371", + "1483105415", + "1483105370", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982466", + "982466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105391", + "1483105392", + "1483105427", + "1483105391", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982468", + "982468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105394", + "1483105395", + "1483105426", + "1483105394", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982470", + "982470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105398", + "1483105399", + "1483105438", + "1483105398", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982472", + "982472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105403", + "1483105404", + "1483105446", + "1483105403", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982474", + "982474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105415", + "1483105416", + "1483105460", + "1483105415", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982476", + "982476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105416", + "1483105419", + "1483105504", + "1483105416", + "1", + "8", + "0", + "-1", + "85", + "3", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982482", + "982482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105438", + "1483105439", + "1483105513", + "1483105438", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982484", + "982484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105446", + "1483105447", + "1483105505", + "1483105446", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982486", + "982486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105460", + "1483105461", + "1483105547", + "1483105460", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982492", + "982492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105505", + "1483105506", + "1483105547", + "1483105505", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982494", + "982494", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105506", + "1483105509", + "1483105551", + "1483105506", + "1", + "8", + "0", + "-1", + "42", + "3", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982496", + "982496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105513", + "1483105514", + "1483105553", + "1483105513", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982500", + "982500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105547", + "1483105548", + "1483105606", + "1483105547", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982502", + "982502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105548", + "1483105549", + "1483105616", + "1483105548", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982504", + "982504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105552", + "1483105554", + "1483105599", + "1483105552", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982506", + "982506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105554", + "1483105555", + "1483105590", + "1483105554", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982512", + "982512", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105591", + "1483105593", + "1483105652", + "1483105591", + "1", + "8", + "0", + "-1", + "59", + "2", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982514", + "982514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105600", + "1483105601", + "1483105644", + "1483105600", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982516", + "982516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105607", + "1483105608", + "1483105695", + "1483105607", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982518", + "982518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105617", + "1483105618", + "1483105694", + "1483105617", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982524", + "982524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105645", + "1483105646", + "1483105717", + "1483105645", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982526", + "982526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105652", + "1483105653", + "1483105701", + "1483105652", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982528", + "982528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105678", + "1483105679", + "1483105721", + "1483105678", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982532", + "982532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105694", + "1483105695", + "1483105757", + "1483105694", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982534", + "982534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105696", + "1483105697", + "1483105733", + "1483105696", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982544", + "982544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105744", + "1483105745", + "1483105786", + "1483105744", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982556", + "982556", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105786", + "1483105787", + "1483105829", + "1483105786", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982558", + "982558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105787", + "1483105789", + "1483105915", + "1483105787", + "1", + "8", + "0", + "-1", + "126", + "2", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982560", + "982560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105796", + "1483105798", + "1483105851", + "1483105796", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982564", + "982564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105820", + "1483105822", + "1483105903", + "1483105820", + "1", + "8", + "0", + "-1", + "81", + "2", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982566", + "982566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105829", + "1483105830", + "1483105866", + "1483105829", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982568", + "982568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105838", + "1483105839", + "1483105893", + "1483105838", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982570", + "982570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105852", + "1483105853", + "1483105903", + "1483105852", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982572", + "982572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105863", + "1483105864", + "1483105921", + "1483105863", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982580", + "982580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105894", + "1483105895", + "1483105932", + "1483105894", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982586", + "982586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105916", + "1483105918", + "1483105966", + "1483105916", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982588", + "982588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105922", + "1483105923", + "1483105971", + "1483105922", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982590", + "982590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105925", + "1483105926", + "1483105999", + "1483105925", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982594", + "982594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105932", + "1483105933", + "1483106073", + "1483105932", + "1", + "8", + "0", + "-1", + "140", + "1", + "1120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982596", + "982596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105934", + "1483105935", + "1483105985", + "1483105934", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982604", + "982604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105972", + "1483105973", + "1483106016", + "1483105972", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982612", + "982612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106002", + "1483106003", + "1483106035", + "1483106002", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982622", + "982622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106036", + "1483106038", + "1483106118", + "1483106036", + "1", + "8", + "0", + "-1", + "80", + "2", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982626", + "982626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106050", + "1483106051", + "1483106140", + "1483106050", + "1", + "8", + "0", + "-1", + "89", + "1", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982634", + "982634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106075", + "1483106077", + "1483106129", + "1483106075", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982644", + "982644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106140", + "1483106142", + "1483106188", + "1483106140", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982651", + "982651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106169", + "1483106170", + "1483106220", + "1483106169", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982655", + "982655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106188", + "1483106189", + "1483106280", + "1483106188", + "1", + "8", + "0", + "-1", + "91", + "1", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982661", + "982661", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106208", + "1483106209", + "1483106271", + "1483106208", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982663", + "982663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106221", + "1483106222", + "1483106315", + "1483106221", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982671", + "982671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106268", + "1483106269", + "1483106333", + "1483106268", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982673", + "982673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106271", + "1483106272", + "1483106337", + "1483106271", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982677", + "982677", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106281", + "1483106282", + "1483106317", + "1483106281", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982681", + "982681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106318", + "1483106319", + "1483106373", + "1483106318", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982683", + "982683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106321", + "1483106322", + "1483106385", + "1483106321", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982685", + "982685", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106333", + "1483106334", + "1483106424", + "1483106333", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982695", + "982695", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106362", + "1483106363", + "1483106456", + "1483106362", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982699", + "982699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106376", + "1483106377", + "1483106448", + "1483106376", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982701", + "982701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106385", + "1483106386", + "1483106416", + "1483106385", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982709", + "982709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106417", + "1483106418", + "1483106459", + "1483106417", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982715", + "982715", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106427", + "1483106428", + "1483106504", + "1483106427", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982719", + "982719", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106457", + "1483106458", + "1483106515", + "1483106457", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982721", + "982721", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106460", + "1483106461", + "1483106545", + "1483106460", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982749", + "982749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106622", + "1483106623", + "1483106732", + "1483106622", + "1", + "8", + "0", + "-1", + "109", + "1", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982759", + "982759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106710", + "1483106711", + "1483106748", + "1483106710", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982770", + "982770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106730", + "1483106731", + "1483106800", + "1483106730", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982774", + "982774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106733", + "1483106735", + "1483106767", + "1483106733", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982778", + "982778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106748", + "1483106749", + "1483106786", + "1483106748", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982784", + "982784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106768", + "1483106769", + "1483106812", + "1483106768", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982786", + "982786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106786", + "1483106787", + "1483106840", + "1483106786", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982788", + "982788", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106790", + "1483106791", + "1483106891", + "1483106790", + "1", + "8", + "0", + "-1", + "100", + "1", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982790", + "982790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106793", + "1483106794", + "1483106838", + "1483106793", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982792", + "982792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106801", + "1483106802", + "1483106849", + "1483106801", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982794", + "982794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106807", + "1483106808", + "1483106868", + "1483106807", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982802", + "982802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106840", + "1483106843", + "1483106883", + "1483106840", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982804", + "982804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106844", + "1483106846", + "1483106898", + "1483106844", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982806", + "982806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106850", + "1483106851", + "1483106887", + "1483106850", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982814", + "982814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106887", + "1483106888", + "1483106954", + "1483106887", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982822", + "982822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106923", + "1483106924", + "1483107005", + "1483106923", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982832", + "982832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106962", + "1483106963", + "1483107029", + "1483106962", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982836", + "982836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106969", + "1483106970", + "1483107037", + "1483106969", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982838", + "982838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107005", + "1483107006", + "1483107042", + "1483107005", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982841", + "982841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107006", + "1483107009", + "1483107123", + "1483107006", + "1", + "8", + "0", + "-1", + "114", + "3", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982847", + "982847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107030", + "1483107031", + "1483107076", + "1483107030", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982853", + "982853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107043", + "1483107044", + "1483107102", + "1483107043", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982857", + "982857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107077", + "1483107078", + "1483107141", + "1483107077", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982865", + "982865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107102", + "1483107104", + "1483107211", + "1483107102", + "1", + "8", + "0", + "-1", + "107", + "2", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982871", + "982871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107141", + "1483107142", + "1483107198", + "1483107141", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982875", + "982875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107171", + "1483107172", + "1483107277", + "1483107171", + "1", + "8", + "0", + "-1", + "105", + "1", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982879", + "982879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107200", + "1483107202", + "1483107279", + "1483107200", + "1", + "8", + "0", + "-1", + "77", + "2", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982883", + "982883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107212", + "1483107213", + "1483107315", + "1483107212", + "1", + "8", + "0", + "-1", + "102", + "1", + "816", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982891", + "982891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107280", + "1483107281", + "1483107476", + "1483107280", + "1", + "8", + "0", + "-1", + "195", + "1", + "1560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982901", + "982901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107378", + "1483107379", + "1483107485", + "1483107378", + "1", + "8", + "0", + "-1", + "106", + "1", + "848", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982919", + "982919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107478", + "1483107481", + "1483107539", + "1483107478", + "1", + "8", + "0", + "-1", + "58", + "3", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982921", + "982921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107482", + "1483107484", + "1483107524", + "1483107482", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982923", + "982923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107485", + "1483107487", + "1483107523", + "1483107485", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982925", + "982925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107489", + "1483107490", + "1483107523", + "1483107489", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982933", + "982933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107525", + "1483107527", + "1483107574", + "1483107525", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982937", + "982937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107540", + "1483107541", + "1483107587", + "1483107540", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982939", + "982939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107548", + "1483107549", + "1483107604", + "1483107548", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982941", + "982941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107550", + "1483107551", + "1483107606", + "1483107550", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982943", + "982943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107551", + "1483107552", + "1483107681", + "1483107551", + "1", + "8", + "0", + "-1", + "129", + "1", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982947", + "982947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107574", + "1483107575", + "1483107630", + "1483107574", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982951", + "982951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107588", + "1483107589", + "1483107636", + "1483107588", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982955", + "982955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107605", + "1483107606", + "1483107648", + "1483107605", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982957", + "982957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107606", + "1483107609", + "1483107664", + "1483107606", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982959", + "982959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107630", + "1483107631", + "1483107675", + "1483107630", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982961", + "982961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107636", + "1483107637", + "1483107670", + "1483107636", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982967", + "982967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107649", + "1483107651", + "1483107699", + "1483107649", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982969", + "982969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107653", + "1483107654", + "1483107693", + "1483107653", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982971", + "982971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107664", + "1483107665", + "1483107708", + "1483107664", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ] + ] +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json index 3a3a0e6d1c..39a75c5dcc 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json +++ b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json @@ -1 +1,310036 @@ -{"success":true,"fields":["Local Job Id","Resource","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"],"data":[["6109029","Robertson","UTC","","Grey, Southern","Screwdriver","green-grape","1483088296","1483088296","1483088301","1483088296","1","1","0","-1","5","0","5","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Geosciences","Polar Programs","Polar Meteorology"],["6110613","Robertson","UTC","","Grey, Southern","Screwdriver","green-grape","1483119144","1483119144","1483119151","1483119144","1","1","0","-1","7","0","7","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Geosciences","Polar Programs","Polar Meteorology"],["6111540","Robertson","UTC","","Roller","Screwdriver","flapper","1483129488","1483129488","1483129510","1483129488","1","5","0","-1","22","0","110","0","1:0","FAILED","1","40000Mn","86400","pumpernickel","Geosciences","Earth Sciences","Geology and Paleontology"],["968193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056132","1483056132","1483056159","1483056132","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056227","1483056227","1483056256","1483056227","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056285","1483056285","1483056308","1483056285","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056366","1483056366","1483056390","1483056366","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056431","1483056431","1483056459","1483056431","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056504","1483056504","1483056533","1483056504","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056512","1483056512","1483056539","1483056512","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056579","1483056579","1483056604","1483056579","1","8","0","-1","25","0","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056682","1483056682","1483056704","1483056682","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056733","1483056733","1483056757","1483056733","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056790","1483056790","1483056819","1483056790","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056827","1483056827","1483056854","1483056827","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056855","1483056855","1483056878","1483056855","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056863","1483056863","1483056882","1483056863","1","8","0","-1","19","0","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056873","1483056873","1483056901","1483056873","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056908","1483056908","1483056935","1483056908","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056945","1483056945","1483056974","1483056945","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057048","1483057048","1483057077","1483057048","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057206","1483057206","1483057235","1483057206","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057226","1483057226","1483057251","1483057226","1","8","0","-1","25","0","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057236","1483057236","1483057257","1483057236","1","8","0","-1","21","0","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057297","1483057297","1483057321","1483057297","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057736","1483057736","1483057757","1483057736","1","8","0","-1","21","0","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057743","1483057743","1483057765","1483057743","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057857","1483057857","1483057879","1483057857","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057875","1483057875","1483057899","1483057875","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057880","1483057880","1483057903","1483057880","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057891","1483057891","1483057913","1483057891","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057900","1483057900","1483057918","1483057900","1","8","0","-1","18","0","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057904","1483057904","1483057929","1483057904","1","8","0","-1","25","0","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057914","1483057914","1483057938","1483057914","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057971","1483057971","1483057995","1483057971","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057972","1483057972","1483057994","1483057972","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057989","1483057989","1483058013","1483057989","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057994","1483057994","1483058018","1483057994","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058013","1483058013","1483058039","1483058013","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058039","1483058039","1483058068","1483058039","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058044","1483058044","1483058064","1483058044","1","8","0","-1","20","0","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058116","1483058116","1483058144","1483058116","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058148","1483058148","1483058176","1483058148","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058177","1483058177","1483058198","1483058177","1","8","0","-1","21","0","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058279","1483058279","1483058306","1483058279","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058283","1483058283","1483058309","1483058283","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058307","1483058307","1483058336","1483058307","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058310","1483058310","1483058336","1483058310","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058322","1483058322","1483058346","1483058322","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058335","1483058335","1483058363","1483058335","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058337","1483058337","1483058363","1483058337","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058474","1483058474","1483058503","1483058474","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058680","1483058680","1483058709","1483058680","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059986","1483059986","1483060013","1483059986","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060045","1483060045","1483060071","1483060045","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060288","1483060288","1483060317","1483060288","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060469","1483060469","1483060491","1483060469","1","8","0","-1","22","0","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060639","1483060639","1483060658","1483060639","1","8","0","-1","19","0","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060688","1483060688","1483060713","1483060688","1","8","0","-1","25","0","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060802","1483060802","1483060829","1483060802","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060809","1483060809","1483060833","1483060809","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060814","1483060814","1483060841","1483060814","1","8","0","-1","27","0","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060828","1483060828","1483060849","1483060828","1","8","0","-1","21","0","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060841","1483060841","1483060869","1483060841","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060954","1483060954","1483060980","1483060954","1","8","0","-1","26","0","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061415","1483061415","1483061443","1483061415","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969751","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061756","1483061756","1483061779","1483061756","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061888","1483061888","1483061917","1483061888","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061974","1483061974","1483061999","1483061974","1","8","0","-1","25","0","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061986","1483061986","1483062010","1483061986","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062035","1483062035","1483062059","1483062035","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062102","1483062102","1483062131","1483062102","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062105","1483062105","1483062128","1483062105","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062169","1483062169","1483062198","1483062169","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062239","1483062239","1483062268","1483062239","1","8","0","-1","29","0","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062269","1483062269","1483062298","1483062269","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969928","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062297","1483062297","1483062320","1483062297","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969932","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062309","1483062309","1483062328","1483062309","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062321","1483062321","1483062342","1483062321","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062406","1483062406","1483062435","1483062406","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970341","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064147","1483064147","1483064169","1483064147","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064151","1483064151","1483064173","1483064151","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064242","1483064242","1483064261","1483064242","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970386","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064297","1483064297","1483064318","1483064297","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970388","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064298","1483064298","1483064319","1483064298","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064371","1483064371","1483064398","1483064371","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064372","1483064372","1483064401","1483064372","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064399","1483064399","1483064418","1483064399","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064441","1483064441","1483064467","1483064441","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064559","1483064559","1483064579","1483064559","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064562","1483064562","1483064580","1483064562","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064575","1483064575","1483064597","1483064575","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064579","1483064579","1483064600","1483064579","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064581","1483064581","1483064609","1483064581","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064610","1483064610","1483064635","1483064610","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064656","1483064656","1483064685","1483064656","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064667","1483064667","1483064685","1483064667","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064801","1483064801","1483064824","1483064801","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064940","1483064940","1483064963","1483064940","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064956","1483064956","1483064977","1483064956","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064964","1483064964","1483064990","1483064964","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065035","1483065035","1483065061","1483065035","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065055","1483065055","1483065082","1483065055","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065153","1483065153","1483065181","1483065153","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065168","1483065168","1483065191","1483065168","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065169","1483065169","1483065189","1483065169","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065221","1483065221","1483065243","1483065221","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065226","1483065226","1483065249","1483065226","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065546","1483065546","1483065567","1483065546","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065566","1483065566","1483065586","1483065566","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970788","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065584","1483065584","1483065609","1483065584","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065610","1483065610","1483065632","1483065610","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065620","1483065620","1483065640","1483065620","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065624","1483065624","1483065650","1483065624","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970821","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065677","1483065677","1483065706","1483065677","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065723","1483065723","1483065745","1483065723","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065743","1483065743","1483065766","1483065743","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065832","1483065832","1483065853","1483065832","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065835","1483065835","1483065862","1483065835","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065863","1483065863","1483065882","1483065863","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065878","1483065878","1483065902","1483065878","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065959","1483065959","1483065983","1483065959","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066009","1483066009","1483066029","1483066009","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066021","1483066021","1483066049","1483066021","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066080","1483066080","1483066109","1483066080","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066190","1483066190","1483066215","1483066190","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066256","1483066256","1483066278","1483066256","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066393","1483066393","1483066421","1483066393","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066393","1483066393","1483066420","1483066393","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066576","1483066576","1483066603","1483066576","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067833","1483067833","1483067856","1483067833","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067854","1483067854","1483067876","1483067854","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067857","1483067857","1483067884","1483067857","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067991","1483067991","1483068017","1483067991","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067992","1483067992","1483068019","1483067992","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067993","1483067993","1483068011","1483067993","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068051","1483068051","1483068079","1483068051","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068097","1483068097","1483068125","1483068097","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068109","1483068109","1483068136","1483068109","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068119","1483068119","1483068136","1483068119","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068126","1483068126","1483068152","1483068126","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068129","1483068129","1483068156","1483068129","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068162","1483068162","1483068184","1483068162","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068172","1483068172","1483068198","1483068172","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971446","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068176","1483068176","1483068205","1483068176","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068198","1483068198","1483068227","1483068198","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068223","1483068223","1483068246","1483068223","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068317","1483068317","1483068336","1483068317","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971494","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068318","1483068318","1483068334","1483068318","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068324","1483068324","1483068346","1483068324","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068387","1483068387","1483068405","1483068387","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068391","1483068391","1483068410","1483068391","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068396","1483068396","1483068415","1483068396","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068402","1483068402","1483068422","1483068402","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068468","1483068468","1483068494","1483068468","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068489","1483068489","1483068509","1483068489","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068494","1483068494","1483068522","1483068494","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068509","1483068509","1483068534","1483068509","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068577","1483068577","1483068599","1483068577","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068698","1483068698","1483068718","1483068698","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068779","1483068779","1483068801","1483068779","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068826","1483068826","1483068854","1483068826","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068978","1483068978","1483069005","1483068978","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069039","1483069039","1483069057","1483069039","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069041","1483069041","1483069064","1483069041","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069094","1483069094","1483069119","1483069094","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971765","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069120","1483069120","1483069136","1483069120","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069131","1483069131","1483069146","1483069131","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069137","1483069137","1483069162","1483069137","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069175","1483069175","1483069194","1483069175","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069194","1483069194","1483069221","1483069194","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069589","1483069589","1483069608","1483069589","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069596","1483069596","1483069611","1483069596","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069612","1483069612","1483069634","1483069612","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069623","1483069623","1483069641","1483069623","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069633","1483069633","1483069651","1483069633","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069636","1483069636","1483069654","1483069636","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069642","1483069642","1483069659","1483069642","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069647","1483069647","1483069666","1483069647","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069711","1483069711","1483069728","1483069711","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069714","1483069714","1483069730","1483069714","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069715","1483069715","1483069735","1483069715","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069729","1483069729","1483069750","1483069729","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069758","1483069758","1483069785","1483069758","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069758","1483069758","1483069787","1483069758","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069830","1483069830","1483069851","1483069830","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069844","1483069844","1483069869","1483069844","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069850","1483069850","1483069878","1483069850","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069879","1483069879","1483069898","1483069879","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069895","1483069895","1483069914","1483069895","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069899","1483069899","1483069924","1483069899","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069902","1483069902","1483069919","1483069902","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069922","1483069922","1483069949","1483069922","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069925","1483069925","1483069944","1483069925","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069933","1483069933","1483069951","1483069933","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069944","1483069944","1483069962","1483069944","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069984","1483069984","1483070006","1483069984","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069991","1483069991","1483070004","1483069991","1","8","0","-1","13","0","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070003","1483070003","1483070023","1483070003","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070022","1483070022","1483070036","1483070022","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070054","1483070054","1483070070","1483070054","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070074","1483070074","1483070088","1483070074","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070088","1483070088","1483070111","1483070088","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070106","1483070106","1483070122","1483070106","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070109","1483070109","1483070125","1483070109","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070112","1483070112","1483070129","1483070112","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070119","1483070119","1483070133","1483070119","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070153","1483070153","1483070175","1483070153","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070163","1483070163","1483070183","1483070163","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070184","1483070184","1483070209","1483070184","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070201","1483070201","1483070221","1483070201","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070255","1483070255","1483070275","1483070255","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070260","1483070260","1483070283","1483070260","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070270","1483070270","1483070295","1483070270","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070276","1483070276","1483070295","1483070276","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070282","1483070282","1483070301","1483070282","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070295","1483070295","1483070318","1483070295","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070319","1483070319","1483070337","1483070319","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070367","1483070367","1483070388","1483070367","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070389","1483070389","1483070407","1483070389","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070406","1483070406","1483070425","1483070406","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070422","1483070422","1483070443","1483070422","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070472","1483070472","1483070491","1483070472","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070479","1483070479","1483070499","1483070479","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070492","1483070492","1483070509","1483070492","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070500","1483070500","1483070523","1483070500","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070506","1483070506","1483070530","1483070506","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070519","1483070519","1483070541","1483070519","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070531","1483070531","1483070549","1483070531","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070537","1483070537","1483070555","1483070537","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070590","1483070590","1483070612","1483070590","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070749","1483070749","1483070767","1483070749","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070800","1483070800","1483070817","1483070800","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070805","1483070805","1483070820","1483070805","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070821","1483070821","1483070846","1483070821","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070847","1483070847","1483070865","1483070847","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070854","1483070854","1483070872","1483070854","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070866","1483070866","1483070883","1483070866","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070872","1483070872","1483070887","1483070872","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070879","1483070879","1483070900","1483070879","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070884","1483070884","1483070904","1483070884","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070887","1483070887","1483070904","1483070887","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070898","1483070898","1483070915","1483070898","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070905","1483070905","1483070930","1483070905","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070930","1483070930","1483070959","1483070930","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071010","1483071010","1483071023","1483071010","1","8","0","-1","13","0","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071028","1483071028","1483071054","1483071028","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071054","1483071054","1483071072","1483071054","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071084","1483071084","1483071103","1483071084","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071115","1483071115","1483071131","1483071115","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071123","1483071123","1483071151","1483071123","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071130","1483071130","1483071159","1483071130","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071183","1483071183","1483071206","1483071183","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071194","1483071194","1483071214","1483071194","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071200","1483071200","1483071216","1483071200","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071207","1483071207","1483071223","1483071207","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071446","1483071446","1483071475","1483071446","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071476","1483071476","1483071503","1483071476","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071526","1483071526","1483071552","1483071526","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972689","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071550","1483071550","1483071579","1483071550","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071567","1483071567","1483071592","1483071567","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071579","1483071579","1483071608","1483071579","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972703","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071582","1483071582","1483071604","1483071582","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972705","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071592","1483071592","1483071616","1483071592","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072249","1483072249","1483072277","1483072249","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072249","1483072249","1483072278","1483072249","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072286","1483072286","1483072312","1483072286","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072293","1483072293","1483072320","1483072293","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972910","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072390","1483072390","1483072414","1483072390","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972912","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072397","1483072397","1483072426","1483072397","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972928","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072450","1483072450","1483072471","1483072450","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072524","1483072524","1483072553","1483072524","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072588","1483072588","1483072608","1483072588","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973000","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072664","1483072664","1483072692","1483072664","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072668","1483072668","1483072692","1483072668","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072692","1483072692","1483072720","1483072692","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072715","1483072715","1483072737","1483072715","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072802","1483072802","1483072829","1483072802","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072830","1483072830","1483072854","1483072830","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072834","1483072834","1483072862","1483072834","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072894","1483072894","1483072915","1483072894","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072952","1483072952","1483072973","1483072952","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073002","1483073002","1483073031","1483073002","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073039","1483073039","1483073058","1483073039","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973131","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073092","1483073092","1483073116","1483073092","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073108","1483073108","1483073134","1483073108","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973135","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073115","1483073115","1483073137","1483073115","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073137","1483073137","1483073163","1483073137","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073228","1483073228","1483073256","1483073228","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073288","1483073288","1483073317","1483073288","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073366","1483073366","1483073393","1483073366","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073379","1483073379","1483073406","1483073379","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073394","1483073394","1483073421","1483073394","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073406","1483073406","1483073433","1483073406","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973321","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073708","1483073708","1483073730","1483073708","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973341","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073770","1483073770","1483073799","1483073770","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973412","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074050","1483074050","1483074075","1483074050","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973424","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074100","1483074100","1483074124","1483074100","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074196","1483074196","1483074218","1483074196","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074204","1483074204","1483074225","1483074204","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074218","1483074218","1483074235","1483074218","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074374","1483074374","1483074392","1483074374","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074445","1483074445","1483074470","1483074445","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074467","1483074467","1483074489","1483074467","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074471","1483074471","1483074496","1483074471","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074471","1483074471","1483074490","1483074471","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074574","1483074574","1483074598","1483074574","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074589","1483074589","1483074611","1483074589","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074688","1483074688","1483074715","1483074688","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973649","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074736","1483074736","1483074764","1483074736","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074748","1483074748","1483074774","1483074748","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074763","1483074763","1483074789","1483074763","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075098","1483075098","1483075127","1483075098","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076155","1483076155","1483076182","1483076155","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076155","1483076155","1483076180","1483076155","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076309","1483076309","1483076330","1483076309","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076473","1483076473","1483076499","1483076473","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076574","1483076574","1483076595","1483076574","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076587","1483076587","1483076610","1483076587","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076639","1483076639","1483076664","1483076639","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076639","1483076639","1483076665","1483076639","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974147","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076777","1483076777","1483076802","1483076777","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974149","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076781","1483076781","1483076805","1483076781","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076931","1483076931","1483076954","1483076931","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076936","1483076936","1483076959","1483076936","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076937","1483076937","1483076958","1483076937","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076941","1483076941","1483076958","1483076941","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077067","1483077067","1483077094","1483077067","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077072","1483077072","1483077096","1483077072","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077414","1483077414","1483077443","1483077414","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078008","1483078008","1483078033","1483078008","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078064","1483078064","1483078090","1483078064","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078067","1483078067","1483078089","1483078067","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078153","1483078153","1483078177","1483078153","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078164","1483078164","1483078186","1483078164","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078213","1483078213","1483078230","1483078213","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078309","1483078309","1483078337","1483078309","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078396","1483078396","1483078417","1483078396","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974685","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078530","1483078530","1483078558","1483078530","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078946","1483078946","1483078974","1483078946","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080089","1483080089","1483080109","1483080089","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080092","1483080092","1483080112","1483080092","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080096","1483080096","1483080119","1483080096","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080155","1483080155","1483080180","1483080155","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080172","1483080172","1483080201","1483080172","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080180","1483080180","1483080198","1483080180","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080202","1483080202","1483080228","1483080202","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080225","1483080225","1483080244","1483080225","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080229","1483080229","1483080249","1483080229","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080276","1483080276","1483080298","1483080276","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080366","1483080366","1483080387","1483080366","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080376","1483080376","1483080405","1483080376","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080432","1483080432","1483080461","1483080432","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080438","1483080438","1483080457","1483080438","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975155","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080464","1483080464","1483080491","1483080464","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080482","1483080482","1483080511","1483080482","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080488","1483080488","1483080509","1483080488","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080671","1483080671","1483080695","1483080671","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080694","1483080694","1483080708","1483080694","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080709","1483080709","1483080726","1483080709","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080726","1483080726","1483080742","1483080726","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080736","1483080736","1483080763","1483080736","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080743","1483080743","1483080771","1483080743","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080796","1483080796","1483080816","1483080796","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080843","1483080843","1483080867","1483080843","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080859","1483080859","1483080880","1483080859","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080911","1483080911","1483080940","1483080911","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080925","1483080925","1483080950","1483080925","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080949","1483080949","1483080976","1483080949","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081121","1483081121","1483081143","1483081121","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081188","1483081188","1483081217","1483081188","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081218","1483081218","1483081247","1483081218","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081246","1483081246","1483081269","1483081246","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081247","1483081247","1483081269","1483081247","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081270","1483081270","1483081292","1483081270","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081576","1483081576","1483081596","1483081576","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081583","1483081583","1483081605","1483081583","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081600","1483081600","1483081628","1483081600","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081648","1483081648","1483081673","1483081648","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081660","1483081660","1483081686","1483081660","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081672","1483081672","1483081699","1483081672","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081712","1483081712","1483081734","1483081712","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081850","1483081850","1483081866","1483081850","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081854","1483081854","1483081879","1483081854","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081861","1483081861","1483081885","1483081861","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081867","1483081867","1483081896","1483081867","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081926","1483081926","1483081942","1483081926","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081952","1483081952","1483081969","1483081952","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081999","1483081999","1483082026","1483081999","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082020","1483082020","1483082048","1483082020","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082060","1483082060","1483082087","1483082060","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082186","1483082186","1483082214","1483082186","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082232","1483082232","1483082256","1483082232","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082529","1483082529","1483082557","1483082529","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082541","1483082541","1483082570","1483082541","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976045","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083443","1483083443","1483083462","1483083443","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083462","1483083462","1483083483","1483083462","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083463","1483083463","1483083484","1483083463","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083465","1483083465","1483083482","1483083465","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083483","1483083483","1483083500","1483083483","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083512","1483083512","1483083536","1483083512","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976087","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083519","1483083519","1483083538","1483083519","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083620","1483083620","1483083637","1483083620","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083625","1483083625","1483083640","1483083625","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083633","1483083633","1483083653","1483083633","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083646","1483083646","1483083664","1483083646","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083654","1483083654","1483083671","1483083654","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083664","1483083664","1483083693","1483083664","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083709","1483083709","1483083725","1483083709","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083713","1483083713","1483083735","1483083713","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083757","1483083757","1483083783","1483083757","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083757","1483083757","1483083783","1483083757","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083784","1483083784","1483083798","1483083784","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083798","1483083798","1483083817","1483083798","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083798","1483083798","1483083816","1483083798","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083799","1483083799","1483083818","1483083799","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976218","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083807","1483083807","1483083826","1483083807","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976220","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083817","1483083817","1483083833","1483083817","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083834","1483083834","1483083856","1483083834","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083857","1483083857","1483083881","1483083857","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083879","1483083879","1483083899","1483083879","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083880","1483083880","1483083894","1483083880","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083894","1483083894","1483083907","1483083894","1","8","0","-1","13","0","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083895","1483083895","1483083909","1483083895","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083936","1483083936","1483083958","1483083936","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083999","1483083999","1483084027","1483083999","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084022","1483084022","1483084045","1483084022","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084043","1483084043","1483084063","1483084043","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084046","1483084046","1483084062","1483084046","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084054","1483084054","1483084072","1483084054","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084063","1483084063","1483084089","1483084063","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084105","1483084105","1483084125","1483084105","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084113","1483084113","1483084131","1483084113","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084158","1483084158","1483084187","1483084158","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084187","1483084187","1483084206","1483084187","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084344","1483084344","1483084363","1483084344","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084349","1483084349","1483084364","1483084349","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084364","1483084364","1483084380","1483084364","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084381","1483084381","1483084407","1483084381","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084404","1483084404","1483084432","1483084404","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976455","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084424","1483084424","1483084442","1483084424","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084429","1483084429","1483084445","1483084429","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084442","1483084442","1483084468","1483084442","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084457","1483084457","1483084483","1483084457","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084516","1483084516","1483084529","1483084516","1","8","0","-1","13","0","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084547","1483084547","1483084571","1483084547","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084555","1483084555","1483084570","1483084555","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084570","1483084570","1483084594","1483084570","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084869","1483084869","1483084891","1483084869","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084917","1483084917","1483084943","1483084917","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084918","1483084918","1483084940","1483084918","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084944","1483084944","1483084973","1483084944","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084993","1483084993","1483085015","1483084993","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085016","1483085016","1483085038","1483085016","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976637","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085016","1483085016","1483085038","1483085016","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085027","1483085027","1483085051","1483085027","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085039","1483085039","1483085062","1483085039","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085040","1483085040","1483085064","1483085040","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085045","1483085045","1483085066","1483085045","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085123","1483085123","1483085146","1483085123","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085139","1483085139","1483085162","1483085139","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085146","1483085146","1483085169","1483085146","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085158","1483085158","1483085180","1483085158","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085270","1483085270","1483085297","1483085270","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085358","1483085358","1483085379","1483085358","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085364","1483085364","1483085384","1483085364","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085379","1483085379","1483085397","1483085379","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085385","1483085385","1483085407","1483085385","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085398","1483085398","1483085420","1483085398","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976788","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085402","1483085402","1483085423","1483085402","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085408","1483085408","1483085425","1483085408","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085411","1483085411","1483085430","1483085411","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085421","1483085421","1483085440","1483085421","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085421","1483085421","1483085450","1483085421","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085424","1483085424","1483085452","1483085424","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085451","1483085451","1483085470","1483085451","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085482","1483085482","1483085500","1483085482","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085485","1483085485","1483085503","1483085485","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085496","1483085496","1483085512","1483085496","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085603","1483085603","1483085632","1483085603","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085673","1483085673","1483085699","1483085673","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085700","1483085700","1483085724","1483085700","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085768","1483085768","1483085792","1483085768","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085785","1483085785","1483085811","1483085785","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085795","1483085795","1483085822","1483085795","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085820","1483085820","1483085845","1483085820","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085946","1483085946","1483085971","1483085946","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977019","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085953","1483085953","1483085977","1483085953","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086252","1483086252","1483086271","1483086252","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977105","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086279","1483086279","1483086302","1483086279","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977107","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086288","1483086288","1483086309","1483086288","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086365","1483086365","1483086388","1483086365","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086392","1483086392","1483086413","1483086392","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086427","1483086427","1483086453","1483086427","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086438","1483086438","1483086458","1483086438","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086443","1483086443","1483086467","1483086443","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086449","1483086449","1483086477","1483086449","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086454","1483086454","1483086474","1483086454","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086468","1483086468","1483086491","1483086468","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086475","1483086475","1483086500","1483086475","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086487","1483086487","1483086514","1483086487","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086492","1483086492","1483086513","1483086492","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086552","1483086552","1483086571","1483086552","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086576","1483086576","1483086596","1483086576","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086648","1483086648","1483086670","1483086648","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086650","1483086650","1483086669","1483086650","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086658","1483086658","1483086675","1483086658","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086662","1483086662","1483086688","1483086662","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086670","1483086670","1483086691","1483086670","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086676","1483086676","1483086693","1483086676","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086692","1483086692","1483086718","1483086692","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086692","1483086692","1483086720","1483086692","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086693","1483086693","1483086721","1483086693","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086719","1483086719","1483086746","1483086719","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086740","1483086740","1483086767","1483086740","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086781","1483086781","1483086806","1483086781","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087044","1483087044","1483087073","1483087044","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087539","1483087539","1483087568","1483087539","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087795","1483087795","1483087820","1483087795","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087807","1483087807","1483087831","1483087807","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087821","1483087821","1483087845","1483087821","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087832","1483087832","1483087856","1483087832","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087846","1483087846","1483087871","1483087846","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087911","1483087911","1483087934","1483087911","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087911","1483087911","1483087936","1483087911","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087935","1483087935","1483087957","1483087935","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977689","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087950","1483087950","1483087975","1483087950","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087958","1483087958","1483087985","1483087958","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087965","1483087965","1483087992","1483087965","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087976","1483087976","1483088000","1483087976","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088018","1483088018","1483088040","1483088018","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088041","1483088041","1483088067","1483088041","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088043","1483088043","1483088068","1483088043","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088064","1483088064","1483088092","1483088064","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088069","1483088069","1483088091","1483088069","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088069","1483088069","1483088092","1483088069","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977765","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088138","1483088138","1483088167","1483088138","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088151","1483088151","1483088177","1483088151","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088195","1483088195","1483088221","1483088195","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088208","1483088208","1483088233","1483088208","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088296","1483088296","1483088315","1483088296","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088351","1483088351","1483088379","1483088351","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088412","1483088412","1483088433","1483088412","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088423","1483088423","1483088441","1483088423","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088430","1483088430","1483088446","1483088430","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088431","1483088431","1483088448","1483088431","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088470","1483088470","1483088495","1483088470","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088496","1483088496","1483088521","1483088496","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088522","1483088522","1483088550","1483088522","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088525","1483088525","1483088553","1483088525","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977924","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088541","1483088541","1483088570","1483088541","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088633","1483088633","1483088657","1483088633","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088657","1483088657","1483088685","1483088657","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088676","1483088676","1483088705","1483088676","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088682","1483088682","1483088705","1483088682","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977992","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088763","1483088763","1483088789","1483088763","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088820","1483088820","1483088849","1483088820","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089362","1483089362","1483089388","1483089362","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089458","1483089458","1483089478","1483089458","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089474","1483089474","1483089497","1483089474","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089474","1483089474","1483089500","1483089474","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089475","1483089475","1483089500","1483089475","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089481","1483089481","1483089503","1483089481","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089498","1483089498","1483089517","1483089498","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978220","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089541","1483089541","1483089568","1483089541","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089573","1483089573","1483089595","1483089573","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089590","1483089590","1483089619","1483089590","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089606","1483089606","1483089632","1483089606","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089619","1483089619","1483089644","1483089619","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089623","1483089623","1483089647","1483089623","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089631","1483089631","1483089658","1483089631","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089709","1483089709","1483089732","1483089709","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089728","1483089728","1483089748","1483089728","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089733","1483089733","1483089752","1483089733","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089734","1483089734","1483089751","1483089734","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089780","1483089780","1483089803","1483089780","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978319","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089797","1483089797","1483089816","1483089797","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978321","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089798","1483089798","1483089817","1483089798","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089804","1483089804","1483089827","1483089804","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089818","1483089818","1483089838","1483089818","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089825","1483089825","1483089843","1483089825","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089828","1483089828","1483089846","1483089828","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089903","1483089903","1483089932","1483089903","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089949","1483089949","1483089978","1483089949","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091179","1483091179","1483091200","1483091179","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091182","1483091182","1483091202","1483091182","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091182","1483091182","1483091204","1483091182","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091245","1483091245","1483091266","1483091245","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091316","1483091316","1483091342","1483091316","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091374","1483091374","1483091393","1483091374","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091470","1483091470","1483091499","1483091470","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091532","1483091532","1483091554","1483091532","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091555","1483091555","1483091574","1483091555","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091754","1483091754","1483091780","1483091754","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091762","1483091762","1483091789","1483091762","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091790","1483091790","1483091810","1483091790","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091797","1483091797","1483091822","1483091797","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091798","1483091798","1483091825","1483091798","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091823","1483091823","1483091840","1483091823","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091824","1483091824","1483091844","1483091824","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091898","1483091898","1483091918","1483091898","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092030","1483092030","1483092055","1483092030","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092093","1483092093","1483092114","1483092093","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092192","1483092192","1483092215","1483092192","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979057","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092216","1483092216","1483092242","1483092216","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979065","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092238","1483092238","1483092265","1483092238","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092606","1483092606","1483092630","1483092606","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092631","1483092631","1483092651","1483092631","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092812","1483092812","1483092830","1483092812","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092821","1483092821","1483092838","1483092821","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092937","1483092937","1483092954","1483092937","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092944","1483092944","1483092971","1483092944","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093042","1483093042","1483093059","1483093042","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093043","1483093043","1483093066","1483093043","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979349","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093060","1483093060","1483093087","1483093060","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093087","1483093087","1483093113","1483093087","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093091","1483093091","1483093120","1483093091","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093138","1483093138","1483093159","1483093138","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093142","1483093142","1483093161","1483093142","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093181","1483093181","1483093207","1483093181","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093222","1483093222","1483093245","1483093222","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093269","1483093269","1483093293","1483093269","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093292","1483093292","1483093317","1483093292","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094281","1483094281","1483094310","1483094281","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979867","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095055","1483095055","1483095081","1483095055","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095186","1483095186","1483095213","1483095186","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095188","1483095188","1483095214","1483095188","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095189","1483095189","1483095213","1483095189","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095255","1483095255","1483095279","1483095255","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095280","1483095280","1483095308","1483095280","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095292","1483095292","1483095315","1483095292","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980035","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095672","1483095672","1483095696","1483095672","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980037","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095696","1483095696","1483095724","1483095696","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096085","1483096085","1483096110","1483096085","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096338","1483096338","1483096361","1483096338","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096807","1483096807","1483096835","1483096807","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096821","1483096821","1483096849","1483096821","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096936","1483096936","1483096965","1483096936","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097456","1483097456","1483097485","1483097456","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097492","1483097492","1483097519","1483097492","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097601","1483097601","1483097628","1483097601","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097675","1483097675","1483097699","1483097675","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098316","1483098316","1483098344","1483098316","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098320","1483098320","1483098348","1483098320","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098853","1483098853","1483098882","1483098853","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098915","1483098915","1483098940","1483098915","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099000","1483099000","1483099029","1483099000","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099219","1483099219","1483099244","1483099219","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099245","1483099245","1483099270","1483099245","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099333","1483099333","1483099359","1483099333","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099333","1483099333","1483099359","1483099333","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101215","1483101215","1483101237","1483101215","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101332","1483101332","1483101357","1483101332","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101349","1483101349","1483101371","1483101349","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101409","1483101409","1483101426","1483101409","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101662","1483101662","1483101684","1483101662","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101768","1483101768","1483101790","1483101768","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101790","1483101790","1483101813","1483101790","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101793","1483101793","1483101818","1483101793","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101848","1483101848","1483101869","1483101848","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101870","1483101870","1483101898","1483101870","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101909","1483101909","1483101931","1483101909","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102139","1483102139","1483102163","1483102139","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102489","1483102489","1483102517","1483102489","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102501","1483102501","1483102527","1483102501","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102860","1483102860","1483102884","1483102860","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102910","1483102910","1483102934","1483102910","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102914","1483102914","1483102935","1483102914","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102924","1483102924","1483102950","1483102924","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103167","1483103167","1483103186","1483103167","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103177","1483103177","1483103197","1483103177","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103177","1483103177","1483103198","1483103177","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103239","1483103239","1483103263","1483103239","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103247","1483103247","1483103270","1483103247","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103252","1483103252","1483103272","1483103252","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103418","1483103418","1483103439","1483103418","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103440","1483103440","1483103468","1483103440","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982069","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103588","1483103588","1483103617","1483103588","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105243","1483105243","1483105272","1483105243","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105271","1483105271","1483105300","1483105271","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982490","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105502","1483105502","1483105530","1483105502","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105734","1483105734","1483105763","1483105734","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105758","1483105758","1483105786","1483105758","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105904","1483105904","1483105933","1483105904","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107523","1483107523","1483107550","1483107523","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107524","1483107524","1483107550","1483107524","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107671","1483107671","1483107700","1483107671","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107676","1483107676","1483107704","1483107676","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107682","1483107682","1483107711","1483107682","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107794","1483107794","1483107817","1483107794","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107994","1483107994","1483108020","1483107994","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983097","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108102","1483108102","1483108125","1483108102","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983111","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108145","1483108145","1483108174","1483108145","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108156","1483108156","1483108178","1483108156","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108622","1483108622","1483108649","1483108622","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108792","1483108792","1483108820","1483108792","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108821","1483108821","1483108850","1483108821","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109586","1483109586","1483109613","1483109586","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109606","1483109606","1483109633","1483109606","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109611","1483109611","1483109639","1483109611","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109740","1483109740","1483109769","1483109740","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109752","1483109752","1483109777","1483109752","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109806","1483109806","1483109827","1483109806","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109819","1483109819","1483109842","1483109819","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109883","1483109883","1483109911","1483109883","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109940","1483109940","1483109964","1483109940","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109945","1483109945","1483109967","1483109945","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110079","1483110079","1483110108","1483110079","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111872","1483111872","1483111900","1483111872","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111908","1483111908","1483111936","1483111908","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111922","1483111922","1483111943","1483111922","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111930","1483111930","1483111954","1483111930","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111982","1483111982","1483112003","1483111982","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984045","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112055","1483112055","1483112080","1483112055","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984061","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112117","1483112117","1483112144","1483112117","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984063","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112120","1483112120","1483112141","1483112120","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984087","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112193","1483112193","1483112212","1483112193","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112241","1483112241","1483112263","1483112241","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984135","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112354","1483112354","1483112380","1483112354","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984139","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112371","1483112371","1483112395","1483112371","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112425","1483112425","1483112442","1483112425","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112433","1483112433","1483112458","1483112433","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112443","1483112443","1483112466","1483112443","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112467","1483112467","1483112496","1483112467","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112476","1483112476","1483112503","1483112476","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112666","1483112666","1483112688","1483112666","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112689","1483112689","1483112711","1483112689","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112771","1483112771","1483112797","1483112771","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112775","1483112775","1483112798","1483112775","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112875","1483112875","1483112897","1483112875","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113074","1483113074","1483113097","1483113074","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113157","1483113157","1483113177","1483113157","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113159","1483113159","1483113177","1483113159","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113229","1483113229","1483113249","1483113229","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113343","1483113343","1483113363","1483113343","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113829","1483113829","1483113850","1483113829","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113838","1483113838","1483113864","1483113838","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113884","1483113884","1483113912","1483113884","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113893","1483113893","1483113917","1483113893","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113901","1483113901","1483113930","1483113901","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113904","1483113904","1483113929","1483113904","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113969","1483113969","1483113996","1483113969","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113981","1483113981","1483114006","1483113981","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114033","1483114033","1483114062","1483114033","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114046","1483114046","1483114067","1483114046","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114169","1483114169","1483114198","1483114169","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114175","1483114175","1483114203","1483114175","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114198","1483114198","1483114220","1483114198","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114204","1483114204","1483114231","1483114204","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114278","1483114278","1483114307","1483114278","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114287","1483114287","1483114311","1483114287","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114300","1483114300","1483114322","1483114300","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114326","1483114326","1483114353","1483114326","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114361","1483114361","1483114379","1483114361","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114380","1483114380","1483114403","1483114380","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114403","1483114403","1483114426","1483114403","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114427","1483114427","1483114454","1483114427","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114441","1483114441","1483114467","1483114441","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114455","1483114455","1483114483","1483114455","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114516","1483114516","1483114540","1483114516","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114633","1483114633","1483114655","1483114633","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114729","1483114729","1483114751","1483114729","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114800","1483114800","1483114825","1483114800","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115030","1483115030","1483115053","1483115030","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115054","1483115054","1483115076","1483115054","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115112","1483115112","1483115131","1483115112","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115124","1483115124","1483115145","1483115124","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115167","1483115167","1483115189","1483115167","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115235","1483115235","1483115253","1483115235","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115295","1483115295","1483115317","1483115295","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115592","1483115592","1483115616","1483115592","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115647","1483115647","1483115665","1483115647","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115681","1483115681","1483115708","1483115681","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115770","1483115770","1483115790","1483115770","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115784","1483115784","1483115812","1483115784","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115861","1483115861","1483115879","1483115861","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115930","1483115930","1483115949","1483115930","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116010","1483116010","1483116038","1483116010","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116037","1483116037","1483116066","1483116037","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116067","1483116067","1483116087","1483116067","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116132","1483116132","1483116153","1483116132","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116136","1483116136","1483116162","1483116136","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116141","1483116141","1483116166","1483116141","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116144","1483116144","1483116167","1483116144","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116154","1483116154","1483116182","1483116154","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116161","1483116161","1483116184","1483116161","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985257","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116183","1483116183","1483116204","1483116183","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116299","1483116299","1483116318","1483116299","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116310","1483116310","1483116333","1483116310","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["167758","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056162","1483056162","1483056186","1483056162","1","8","0","-1","24","0","192","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["167879","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056885","1483056885","1483056906","1483056885","1","8","0","-1","21","0","168","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168064","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058094","1483058094","1483058110","1483058094","1","8","0","-1","16","0","128","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168090","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058262","1483058262","1483058281","1483058262","1","8","0","-1","19","0","152","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168845","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064147","1483064147","1483064162","1483064147","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168926","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064610","1483064610","1483064633","1483064610","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168941","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064686","1483064686","1483064705","1483064686","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168976","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064890","1483064890","1483064911","1483064890","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169025","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065153","1483065153","1483065174","1483065153","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169092","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065655","1483065655","1483065677","1483065655","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169109","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065746","1483065746","1483065765","1483065746","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169298","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067327","1483067327","1483067354","1483067327","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169344","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067698","1483067698","1483067726","1483067698","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169482","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068425","1483068425","1483068448","1483068425","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169584","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069058","1483069058","1483069077","1483069058","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169732","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069959","1483069959","1483069982","1483069959","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169823","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070337","1483070337","1483070359","1483070337","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169917","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070822","1483070822","1483070846","1483070822","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170003","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071184","1483071184","1483071200","1483071184","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170015","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071218","1483071218","1483071244","1483071218","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170080","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071605","1483071605","1483071631","1483071605","1","8","0","-1","26","0","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170208","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072517","1483072517","1483072536","1483072517","1","8","0","-1","19","0","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170310","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073138","1483073138","1483073154","1483073138","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170516","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074445","1483074445","1483074459","1483074445","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170522","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074467","1483074467","1483074485","1483074467","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170806","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076639","1483076639","1483076654","1483076639","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170831","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076803","1483076803","1483076823","1483076803","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170999","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077948","1483077948","1483077972","1483077948","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171067","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078333","1483078333","1483078353","1483078333","1","8","0","-1","20","0","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171095","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078458","1483078458","1483078483","1483078458","1","8","0","-1","25","0","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171493","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081270","1483081270","1483081297","1483081270","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171531","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081554","1483081554","1483081578","1483081554","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171813","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083447","1483083447","1483083462","1483083447","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171825","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083484","1483083484","1483083502","1483083484","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171887","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083740","1483083740","1483083753","1483083740","1","8","0","-1","13","0","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171973","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084106","1483084106","1483084120","1483084106","1","8","0","-1","14","0","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172120","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085039","1483085039","1483085056","1483085039","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172198","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085421","1483085421","1483085443","1483085421","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172354","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086263","1483086263","1483086280","1483086263","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172451","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086662","1483086662","1483086678","1483086662","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172517","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086974","1483086974","1483086997","1483086974","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172525","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087009","1483087009","1483087031","1483087009","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172638","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087832","1483087832","1483087847","1483087832","1","8","0","-1","15","0","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172701","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088093","1483088093","1483088114","1483088093","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172993","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089804","1483089804","1483089820","1483089804","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173119","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090700","1483090700","1483090728","1483090700","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173175","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091087","1483091087","1483091116","1483091087","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173235","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091394","1483091394","1483091410","1483091394","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173467","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092806","1483092806","1483092835","1483092806","1","8","0","-1","29","0","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173485","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092882","1483092882","1483092906","1483092882","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173710","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094470","1483094470","1483094492","1483094470","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173818","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095190","1483095190","1483095211","1483095190","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173838","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095309","1483095309","1483095336","1483095309","1","8","0","-1","27","0","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173950","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096229","1483096229","1483096253","1483096229","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174048","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097054","1483097054","1483097082","1483097054","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174270","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098731","1483098731","1483098753","1483098731","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174358","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099360","1483099360","1483099377","1483099360","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174556","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101220","1483101220","1483101244","1483101220","1","8","0","-1","24","0","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174634","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101717","1483101717","1483101739","1483101717","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174672","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101932","1483101932","1483101948","1483101932","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174922","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103543","1483103543","1483103571","1483103543","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175109","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105222","1483105222","1483105250","1483105222","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175438","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107965","1483107965","1483107993","1483107965","1","8","0","-1","28","0","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175490","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108280","1483108280","1483108297","1483108280","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175553","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108723","1483108723","1483108746","1483108723","1","8","0","-1","23","0","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175588","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108974","1483108974","1483108996","1483108974","1","8","0","-1","22","0","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175682","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109665","1483109665","1483109682","1483109665","1","8","0","-1","17","0","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175725","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109940","1483109940","1483109956","1483109940","1","8","0","-1","16","0","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176322","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114577","1483114577","1483114598","1483114577","1","8","0","-1","21","0","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176594","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116319","1483116319","1483116337","1483116319","1","8","0","-1","18","0","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1010786","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483142202","1483142202","1483142230","1483142202","1","8","0","-1","28","0","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006445","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483086222","1483086222","1483086245","1483086222","1","8","0","-1","23","0","184","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2277104","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070210","1483070210","1483070216","1483070210","1","12","0","-1","6","0","72","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278843","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086755","1483086755","1483086765","1483086755","1","12","0","-1","10","0","120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279450","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092193","1483092193","1483092202","1483092193","1","12","0","-1","9","0","108","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282010","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116063","1483116063","1483116072","1483116063","1","12","0","-1","9","0","108","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282560","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120252","1483120252","1483120262","1483120252","1","12","0","-1","10","0","120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283953","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133222","1483133222","1483133234","1483133222","1","12","0","-1","12","0","144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284714","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140468","1483140468","1483140480","1483140468","1","12","0","-1","12","0","144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108541","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","green-grape","1483063853","1483063853","1483063881","1483063853","2","24","0","-1","28","0","672","0","0:0","COMPLETED","24","2147486448Mn","3600","potbrood","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["6110375","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118393","1483118396","1483118402","1483118393","1","1","0","-1","6","3","6","0","0:0","COMPLETED","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6110382","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118406","1483118412","1483118421","1483118406","1","1","0","-1","9","6","9","0","0:0","COMPLETED","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6110454","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118629","1483118632","1483118636","1483118629","1","1","0","-1","4","3","4","0","0:0","COMPLETED","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6110457","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118638","1483118640","1483118645","1483118638","1","1","0","-1","5","2","5","0","0:0","COMPLETED","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6112281","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483134653","1483134669","1483134684","1483134653","1","1","0","-1","15","16","15","0","0:0","COMPLETED","1","2147531648Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["2284674","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140322","1483140323","1483140335","1483140322","1","1","0","-1","12","1","12","0","1:0","FAILED","1","2147486648Mn","259200","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109028","Robertson","UTC","","Grey, Southern","Screwdriver","green-grape","1483088282","1483088283","1483088286","1483088282","1","1","0","-1","3","1","3","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Geosciences","Polar Programs","Polar Meteorology"],["6110628","Robertson","UTC","","Grey, Southern","Screwdriver","green-grape","1483119197","1483119198","1483119203","1483119197","1","1","0","-1","5","1","5","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Geosciences","Polar Programs","Polar Meteorology"],["968147","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055976","1483055977","1483056005","1483055976","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055998","1483055999","1483056024","1483055998","1","8","0","-1","25","1","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056138","1483056139","1483056161","1483056138","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056207","1483056208","1483056234","1483056207","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056227","1483056228","1483056254","1483056227","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056233","1483056235","1483056261","1483056233","1","8","0","-1","26","2","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056256","1483056258","1483056287","1483056256","1","8","0","-1","29","2","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056286","1483056288","1483056312","1483056286","1","8","0","-1","24","2","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056432","1483056434","1483056461","1483056432","1","8","0","-1","27","2","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056435","1483056437","1483056458","1483056435","1","8","0","-1","21","2","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056441","1483056444","1483056467","1483056441","1","8","0","-1","23","3","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056533","1483056534","1483056556","1483056533","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056590","1483056591","1483056615","1483056590","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056591","1483056592","1483056619","1483056591","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056655","1483056657","1483056681","1483056655","1","8","0","-1","24","2","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968356","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056657","1483056658","1483056684","1483056657","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056684","1483056686","1483056709","1483056684","1","8","0","-1","23","2","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056693","1483056694","1483056723","1483056693","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056704","1483056705","1483056733","1483056704","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056707","1483056708","1483056735","1483056707","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056709","1483056711","1483056732","1483056709","1","8","0","-1","21","2","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056776","1483056777","1483056801","1483056776","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056779","1483056780","1483056803","1483056779","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056803","1483056805","1483056826","1483056803","1","8","0","-1","21","2","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056827","1483056830","1483056855","1483056827","1","8","0","-1","25","3","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056833","1483056835","1483056863","1483056833","1","8","0","-1","28","2","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056850","1483056851","1483056873","1483056850","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056856","1483056858","1483056877","1483056856","1","8","0","-1","19","2","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056864","1483056866","1483056884","1483056864","1","8","0","-1","18","2","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056902","1483056903","1483056926","1483056902","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056926","1483056927","1483056956","1483056926","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057118","1483057119","1483057143","1483057118","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968512","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057121","1483057122","1483057150","1483057121","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057127","1483057128","1483057156","1483057127","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057138","1483057139","1483057165","1483057138","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057142","1483057143","1483057170","1483057142","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057286","1483057287","1483057313","1483057286","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057346","1483057347","1483057376","1483057346","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057374","1483057375","1483057401","1483057374","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057416","1483057417","1483057443","1483057416","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057434","1483057435","1483057462","1483057434","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057730","1483057731","1483057755","1483057730","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057758","1483057759","1483057787","1483057758","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057776","1483057777","1483057804","1483057776","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057794","1483057795","1483057821","1483057794","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057799","1483057800","1483057823","1483057799","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057915","1483057918","1483057940","1483057915","1","8","0","-1","22","3","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057919","1483057921","1483057944","1483057919","1","8","0","-1","23","2","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057995","1483057997","1483058019","1483057995","1","8","0","-1","22","2","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058019","1483058020","1483058043","1483058019","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058024","1483058026","1483058050","1483058024","1","8","0","-1","24","2","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058029","1483058030","1483058053","1483058029","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058051","1483058052","1483058080","1483058051","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058054","1483058055","1483058084","1483058054","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058117","1483058119","1483058147","1483058117","1","8","0","-1","28","2","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058170","1483058171","1483058197","1483058170","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058262","1483058265","1483058288","1483058262","1","8","0","-1","23","3","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058308","1483058309","1483058337","1483058308","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058334","1483058335","1483058357","1483058334","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058336","1483058337","1483058359","1483058336","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968912","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058450","1483058451","1483058479","1483058450","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968924","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058489","1483058490","1483058516","1483058489","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968926","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058493","1483058494","1483058517","1483058493","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058893","1483058894","1483058922","1483058893","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060032","1483060033","1483060059","1483060032","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060046","1483060048","1483060077","1483060046","1","8","0","-1","29","2","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060130","1483060131","1483060154","1483060130","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060183","1483060184","1483060208","1483060183","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969337","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060365","1483060368","1483060396","1483060365","1","8","0","-1","28","3","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969339","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060368","1483060369","1483060392","1483060368","1","8","0","-1","23","1","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060528","1483060529","1483060553","1483060528","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969410","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060638","1483060639","1483060664","1483060638","1","8","0","-1","25","1","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060658","1483060659","1483060687","1483060658","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060669","1483060670","1483060698","1483060669","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060736","1483060737","1483060763","1483060736","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060756","1483060757","1483060784","1483060756","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060829","1483060831","1483060859","1483060829","1","8","0","-1","28","2","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060895","1483060896","1483060925","1483060895","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060950","1483060951","1483060978","1483060950","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060955","1483060957","1483060981","1483060955","1","8","0","-1","24","2","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061059","1483061060","1483061084","1483061059","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061248","1483061249","1483061276","1483061248","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061359","1483061360","1483061384","1483061359","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061417","1483061418","1483061447","1483061417","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061438","1483061439","1483061463","1483061438","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969729","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061658","1483061660","1483061686","1483061658","1","8","0","-1","26","2","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969731","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061682","1483061683","1483061710","1483061682","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061697","1483061698","1483061726","1483061697","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061726","1483061727","1483061755","1483061726","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969747","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061731","1483061732","1483061760","1483061731","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061744","1483061745","1483061767","1483061744","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061823","1483061824","1483061850","1483061823","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061833","1483061834","1483061856","1483061833","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061851","1483061852","1483061879","1483061851","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061889","1483061891","1483061920","1483061889","1","8","0","-1","29","2","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061891","1483061894","1483061918","1483061891","1","8","0","-1","24","3","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061955","1483061957","1483061986","1483061955","1","8","0","-1","29","2","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061961","1483061962","1483061986","1483061961","1","8","0","-1","24","1","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061981","1483061982","1483062007","1483061981","1","8","0","-1","25","1","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062007","1483062008","1483062034","1483062007","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062021","1483062022","1483062048","1483062021","1","8","0","-1","26","1","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062035","1483062036","1483062056","1483062035","1","8","0","-1","20","1","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062037","1483062039","1483062060","1483062037","1","8","0","-1","21","2","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062120","1483062121","1483062146","1483062120","1","8","0","-1","25","1","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062146","1483062147","1483062176","1483062146","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062173","1483062175","1483062198","1483062173","1","8","0","-1","23","2","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062198","1483062199","1483062226","1483062198","1","8","0","-1","27","1","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062265","1483062266","1483062290","1483062265","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969926","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062291","1483062292","1483062320","1483062291","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062299","1483062300","1483062327","1483062299","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062321","1483062324","1483062353","1483062321","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062476","1483062478","1483062506","1483062476","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062814","1483062815","1483062843","1483062814","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063952","1483063953","1483063972","1483063952","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063969","1483063970","1483063997","1483063969","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063998","1483063999","1483064021","1483063998","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064004","1483064006","1483064024","1483064004","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064009","1483064010","1483064031","1483064009","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064015","1483064016","1483064039","1483064015","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970329","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064093","1483064095","1483064114","1483064093","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970339","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064122","1483064124","1483064151","1483064122","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064151","1483064152","1483064172","1483064151","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970372","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064234","1483064235","1483064263","1483064234","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064298","1483064300","1483064320","1483064298","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064306","1483064307","1483064327","1483064306","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970394","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064309","1483064310","1483064338","1483064309","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970434","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064438","1483064439","1483064460","1483064438","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064441","1483064442","1483064464","1483064441","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064453","1483064455","1483064477","1483064453","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064498","1483064499","1483064528","1483064498","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064511","1483064512","1483064530","1483064511","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064531","1483064532","1483064558","1483064531","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064581","1483064582","1483064609","1483064581","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064627","1483064630","1483064656","1483064627","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064636","1483064637","1483064655","1483064636","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064641","1483064642","1483064657","1483064641","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064644","1483064645","1483064666","1483064644","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064684","1483064685","1483064702","1483064684","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970527","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064686","1483064688","1483064709","1483064686","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064686","1483064688","1483064706","1483064686","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064822","1483064823","1483064844","1483064822","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064825","1483064826","1483064853","1483064825","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064907","1483064908","1483064930","1483064907","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064941","1483064943","1483064964","1483064941","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064965","1483064966","1483064988","1483064965","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065062","1483065063","1483065092","1483065062","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065079","1483065080","1483065102","1483065079","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065080","1483065083","1483065106","1483065080","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065083","1483065086","1483065107","1483065083","1","8","0","-1","21","3","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065217","1483065218","1483065246","1483065217","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065227","1483065229","1483065252","1483065227","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065517","1483065518","1483065545","1483065517","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065619","1483065620","1483065639","1483065619","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065694","1483065695","1483065715","1483065694","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065745","1483065746","1483065768","1483065745","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065795","1483065796","1483065823","1483065795","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065802","1483065803","1483065831","1483065802","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065805","1483065806","1483065834","1483065805","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065810","1483065811","1483065834","1483065810","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065818","1483065819","1483065835","1483065818","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065835","1483065838","1483065867","1483065835","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065866","1483065867","1483065887","1483065866","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065868","1483065870","1483065895","1483065868","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065917","1483065918","1483065947","1483065917","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065943","1483065945","1483065969","1483065943","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065946","1483065947","1483065972","1483065946","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065947","1483065948","1483065966","1483065947","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970926","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065972","1483065973","1483066001","1483065972","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065983","1483065984","1483066003","1483065983","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970932","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066001","1483066002","1483066020","1483066001","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066004","1483066005","1483066022","1483066004","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066011","1483066012","1483066034","1483066011","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066069","1483066070","1483066095","1483066069","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066081","1483066083","1483066101","1483066081","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066101","1483066102","1483066127","1483066101","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066108","1483066109","1483066128","1483066108","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066110","1483066112","1483066129","1483066110","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066127","1483066128","1483066153","1483066127","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066129","1483066130","1483066148","1483066129","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066149","1483066150","1483066179","1483066149","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066226","1483066227","1483066255","1483066226","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066230","1483066231","1483066256","1483066230","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066335","1483066336","1483066363","1483066335","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066406","1483066407","1483066434","1483066406","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066496","1483066497","1483066522","1483066496","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066578","1483066579","1483066607","1483066578","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067865","1483067866","1483067884","1483067865","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067877","1483067878","1483067894","1483067877","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067884","1483067885","1483067908","1483067884","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067885","1483067888","1483067913","1483067885","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067895","1483067896","1483067923","1483067895","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067897","1483067898","1483067920","1483067897","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067909","1483067910","1483067928","1483067909","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067913","1483067914","1483067943","1483067913","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067957","1483067958","1483067983","1483067957","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067964","1483067965","1483067990","1483067964","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067984","1483067985","1483068014","1483067984","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067986","1483067987","1483068015","1483067986","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068012","1483068013","1483068040","1483068012","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068015","1483068016","1483068034","1483068015","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068018","1483068019","1483068038","1483068018","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068071","1483068072","1483068098","1483068071","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068078","1483068079","1483068096","1483068078","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068079","1483068082","1483068108","1483068079","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068098","1483068099","1483068128","1483068098","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068132","1483068133","1483068162","1483068132","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068164","1483068165","1483068187","1483068164","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068199","1483068202","1483068222","1483068199","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068206","1483068207","1483068227","1483068206","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068222","1483068223","1483068243","1483068222","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068274","1483068275","1483068291","1483068274","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068281","1483068282","1483068308","1483068281","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068290","1483068291","1483068317","1483068290","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068292","1483068293","1483068317","1483068292","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068335","1483068336","1483068353","1483068335","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068336","1483068338","1483068359","1483068336","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068378","1483068379","1483068395","1483068378","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068381","1483068382","1483068401","1483068381","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068398","1483068399","1483068424","1483068398","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068406","1483068407","1483068423","1483068406","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068410","1483068411","1483068424","1483068410","1","8","0","-1","13","1","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068415","1483068416","1483068443","1483068415","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068422","1483068423","1483068437","1483068422","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068423","1483068424","1483068446","1483068423","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068424","1483068426","1483068455","1483068424","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068495","1483068497","1483068518","1483068495","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068519","1483068520","1483068548","1483068519","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068548","1483068549","1483068578","1483068548","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068578","1483068579","1483068601","1483068578","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068586","1483068587","1483068614","1483068586","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068644","1483068645","1483068674","1483068644","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068645","1483068648","1483068673","1483068645","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068674","1483068675","1483068694","1483068674","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068675","1483068678","1483068698","1483068675","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068699","1483068701","1483068729","1483068699","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068752","1483068753","1483068778","1483068752","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068758","1483068759","1483068780","1483068758","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068931","1483068932","1483068959","1483068931","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068960","1483068961","1483068978","1483068960","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068974","1483068975","1483068999","1483068974","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069021","1483069022","1483069040","1483069021","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069024","1483069025","1483069041","1483069024","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069040","1483069041","1483069057","1483069040","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069041","1483069042","1483069071","1483069041","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069071","1483069072","1483069086","1483069071","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971751","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069086","1483069089","1483069116","1483069086","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971755","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069106","1483069107","1483069130","1483069106","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069146","1483069147","1483069174","1483069146","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069149","1483069150","1483069176","1483069149","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971779","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069165","1483069166","1483069191","1483069165","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069567","1483069568","1483069588","1483069567","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069575","1483069576","1483069595","1483069575","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069590","1483069592","1483069613","1483069590","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069608","1483069609","1483069632","1483069608","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069688","1483069690","1483069710","1483069688","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069690","1483069693","1483069713","1483069690","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069715","1483069717","1483069738","1483069715","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069736","1483069737","1483069757","1483069736","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069738","1483069739","1483069757","1483069738","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069739","1483069740","1483069759","1483069739","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069741","1483069743","1483069760","1483069741","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069750","1483069751","1483069770","1483069750","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069786","1483069787","1483069806","1483069786","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069787","1483069789","1483069808","1483069787","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069790","1483069793","1483069812","1483069790","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069798","1483069799","1483069816","1483069798","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069806","1483069807","1483069823","1483069806","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069807","1483069809","1483069829","1483069807","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069809","1483069810","1483069832","1483069809","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069812","1483069813","1483069836","1483069812","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069823","1483069824","1483069843","1483069823","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069825","1483069827","1483069849","1483069825","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069832","1483069833","1483069850","1483069832","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069837","1483069838","1483069855","1483069837","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069850","1483069851","1483069880","1483069850","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069880","1483069882","1483069901","1483069880","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069904","1483069905","1483069921","1483069904","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069910","1483069911","1483069932","1483069910","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069915","1483069916","1483069937","1483069915","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069918","1483069919","1483069940","1483069918","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972019","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069937","1483069938","1483069959","1483069937","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069940","1483069941","1483069958","1483069940","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069952","1483069953","1483069980","1483069952","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069963","1483069965","1483069984","1483069963","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069981","1483069984","1483070002","1483069981","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069985","1483069987","1483070002","1483069985","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070002","1483070003","1483070021","1483070002","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070003","1483070005","1483070024","1483070003","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070005","1483070006","1483070026","1483070005","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070024","1483070025","1483070053","1483070024","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070025","1483070026","1483070052","1483070025","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070027","1483070029","1483070057","1483070027","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070058","1483070060","1483070081","1483070058","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070070","1483070071","1483070094","1483070070","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070075","1483070077","1483070089","1483070075","1","8","0","-1","12","2","96","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070082","1483070083","1483070108","1483070082","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070090","1483070091","1483070113","1483070090","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070095","1483070096","1483070118","1483070095","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070113","1483070115","1483070128","1483070113","1","8","0","-1","13","2","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070121","1483070122","1483070147","1483070121","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070123","1483070125","1483070152","1483070123","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070126","1483070128","1483070155","1483070126","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070129","1483070131","1483070159","1483070129","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070133","1483070134","1483070162","1483070133","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070147","1483070148","1483070169","1483070147","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070155","1483070156","1483070179","1483070155","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070169","1483070170","1483070188","1483070169","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070175","1483070176","1483070200","1483070175","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070179","1483070180","1483070201","1483070179","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070202","1483070204","1483070227","1483070202","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070209","1483070210","1483070230","1483070209","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070223","1483070225","1483070254","1483070223","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070261","1483070263","1483070285","1483070261","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070284","1483070285","1483070307","1483070284","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070286","1483070288","1483070310","1483070286","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070301","1483070302","1483070321","1483070301","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070308","1483070309","1483070327","1483070308","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070311","1483070312","1483070337","1483070311","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070322","1483070323","1483070341","1483070322","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070337","1483070338","1483070366","1483070337","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070370","1483070371","1483070392","1483070370","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070374","1483070375","1483070398","1483070374","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972227","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070377","1483070378","1483070405","1483070377","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070391","1483070392","1483070408","1483070391","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070392","1483070393","1483070417","1483070392","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070396","1483070398","1483070421","1483070396","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070408","1483070409","1483070431","1483070408","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070409","1483070412","1483070431","1483070409","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070418","1483070419","1483070437","1483070418","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070465","1483070466","1483070486","1483070465","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070486","1483070487","1483070505","1483070486","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070493","1483070495","1483070518","1483070493","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070507","1483070509","1483070536","1483070507","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070515","1483070516","1483070540","1483070515","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070523","1483070524","1483070547","1483070523","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070634","1483070636","1483070663","1483070634","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070734","1483070735","1483070755","1483070734","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070756","1483070757","1483070780","1483070756","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070762","1483070763","1483070778","1483070762","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070768","1483070769","1483070789","1483070768","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972372","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070778","1483070779","1483070799","1483070778","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070780","1483070782","1483070804","1483070780","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070796","1483070797","1483070825","1483070796","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972380","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070799","1483070800","1483070821","1483070799","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972388","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070818","1483070820","1483070838","1483070818","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070874","1483070876","1483070897","1483070874","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070877","1483070879","1483070898","1483070877","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070899","1483070900","1483070916","1483070899","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070900","1483070901","1483070917","1483070900","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070943","1483070944","1483070962","1483070943","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070946","1483070947","1483070966","1483070946","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070951","1483070952","1483070976","1483070951","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972455","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070959","1483070960","1483070980","1483070959","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070963","1483070964","1483070977","1483070963","1","8","0","-1","13","1","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070966","1483070967","1483070979","1483070966","1","8","0","-1","12","1","96","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070978","1483070980","1483071002","1483070978","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070980","1483070981","1483071005","1483070980","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070984","1483070986","1483071007","1483070984","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071003","1483071004","1483071021","1483071003","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071005","1483071007","1483071021","1483071005","1","8","0","-1","14","2","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071007","1483071009","1483071027","1483071007","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071054","1483071056","1483071073","1483071054","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071057","1483071058","1483071076","1483071057","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071058","1483071059","1483071083","1483071058","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071073","1483071074","1483071088","1483071073","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071074","1483071076","1483071091","1483071074","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071078","1483071080","1483071109","1483071078","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071089","1483071090","1483071115","1483071089","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071091","1483071093","1483071116","1483071091","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071104","1483071105","1483071122","1483071104","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071108","1483071109","1483071124","1483071108","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071110","1483071112","1483071133","1483071110","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071113","1483071115","1483071129","1483071113","1","8","0","-1","14","2","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071134","1483071136","1483071157","1483071134","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071151","1483071152","1483071174","1483071151","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071158","1483071160","1483071183","1483071158","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071160","1483071161","1483071183","1483071160","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071163","1483071164","1483071178","1483071163","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071175","1483071176","1483071200","1483071175","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071183","1483071186","1483071209","1483071183","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071302","1483071303","1483071325","1483071302","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071306","1483071309","1483071334","1483071306","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071405","1483071406","1483071434","1483071405","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071407","1483071409","1483071435","1483071407","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071419","1483071420","1483071445","1483071419","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071434","1483071435","1483071464","1483071434","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071464","1483071465","1483071491","1483071464","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071468","1483071469","1483071494","1483071468","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071478","1483071479","1483071502","1483071478","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071497","1483071498","1483071527","1483071497","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972677","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071512","1483071513","1483071539","1483071512","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972685","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071539","1483071540","1483071565","1483071539","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071552","1483071553","1483071582","1483071552","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071593","1483071594","1483071619","1483071593","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072144","1483072145","1483072173","1483072144","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072191","1483072192","1483072221","1483072191","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072220","1483072221","1483072248","1483072220","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072222","1483072223","1483072248","1483072222","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072223","1483072224","1483072248","1483072223","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072279","1483072281","1483072309","1483072279","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972924","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072426","1483072427","1483072448","1483072426","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072451","1483072453","1483072474","1483072451","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072802","1483072805","1483072833","1483072802","1","8","0","-1","28","3","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072895","1483072897","1483072918","1483072895","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072948","1483072949","1483072974","1483072948","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072974","1483072975","1483072999","1483072974","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072975","1483072977","1483072998","1483072975","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072989","1483072990","1483073011","1483072989","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073039","1483073042","1483073069","1483073039","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073117","1483073118","1483073136","1483073117","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973139","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073120","1483073121","1483073137","1483073120","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073135","1483073136","1483073163","1483073135","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073137","1483073139","1483073166","1483073137","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073138","1483073139","1483073162","1483073138","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073138","1483073139","1483073156","1483073138","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073157","1483073158","1483073175","1483073157","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073163","1483073164","1483073183","1483073163","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073175","1483073176","1483073202","1483073175","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073197","1483073199","1483073227","1483073197","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073304","1483073305","1483073328","1483073304","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073312","1483073313","1483073335","1483073312","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973220","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073362","1483073363","1483073392","1483073362","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073456","1483073457","1483073480","1483073456","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073468","1483073469","1483073492","1483073468","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073558","1483073559","1483073582","1483073558","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073578","1483073579","1483073600","1483073578","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073629","1483073630","1483073656","1483073629","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073632","1483073633","1483073653","1483073632","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073636","1483073637","1483073662","1483073636","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973339","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073755","1483073757","1483073780","1483073755","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973402","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073986","1483073988","1483074017","1483073986","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074018","1483074019","1483074045","1483074018","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074110","1483074112","1483074131","1483074110","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074175","1483074177","1483074203","1483074175","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074226","1483074227","1483074249","1483074226","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074236","1483074237","1483074260","1483074236","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074237","1483074240","1483074261","1483074237","1","8","0","-1","21","3","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074250","1483074251","1483074270","1483074250","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074261","1483074262","1483074283","1483074261","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973494","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074309","1483074310","1483074333","1483074309","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074311","1483074313","1483074337","1483074311","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074322","1483074323","1483074349","1483074322","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074333","1483074334","1483074356","1483074333","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074349","1483074350","1483074373","1483074349","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973512","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074351","1483074353","1483074376","1483074351","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074356","1483074357","1483074382","1483074356","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074368","1483074369","1483074390","1483074368","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074418","1483074420","1483074444","1483074418","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074441","1483074442","1483074466","1483074441","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074442","1483074445","1483074470","1483074442","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074445","1483074448","1483074477","1483074445","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074489","1483074490","1483074516","1483074489","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074516","1483074517","1483074542","1483074516","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074552","1483074553","1483074578","1483074552","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074554","1483074556","1483074577","1483074554","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074569","1483074570","1483074588","1483074569","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074609","1483074610","1483074634","1483074609","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074633","1483074634","1483074658","1483074633","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074657","1483074659","1483074687","1483074657","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074765","1483074766","1483074793","1483074765","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075761","1483075762","1483075789","1483075761","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076106","1483076107","1483076128","1483076106","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076108","1483076110","1483076131","1483076108","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076158","1483076160","1483076184","1483076158","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076244","1483076245","1483076268","1483076244","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974025","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076323","1483076324","1483076349","1483076323","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076468","1483076469","1483076498","1483076468","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076716","1483076717","1483076741","1483076716","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974135","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076730","1483076731","1483076759","1483076730","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076747","1483076749","1483076776","1483076747","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974153","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076798","1483076799","1483076821","1483076798","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076803","1483076805","1483076824","1483076803","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076805","1483076808","1483076837","1483076805","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076858","1483076859","1483076886","1483076858","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076876","1483076877","1483076903","1483076876","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076877","1483076880","1483076902","1483076877","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076882","1483076883","1483076908","1483076882","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076886","1483076887","1483076912","1483076886","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076904","1483076906","1483076930","1483076904","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076908","1483076909","1483076936","1483076908","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076914","1483076916","1483076940","1483076914","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076944","1483076945","1483076965","1483076944","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077030","1483077031","1483077059","1483077030","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077227","1483077229","1483077254","1483077227","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077255","1483077256","1483077278","1483077255","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077260","1483077261","1483077289","1483077260","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077416","1483077417","1483077443","1483077416","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077481","1483077482","1483077511","1483077481","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077512","1483077513","1483077540","1483077512","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077516","1483077517","1483077543","1483077516","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077523","1483077524","1483077550","1483077523","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077555","1483077556","1483077578","1483077555","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077875","1483077876","1483077895","1483077875","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077883","1483077884","1483077912","1483077883","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077913","1483077914","1483077941","1483077913","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077924","1483077925","1483077947","1483077924","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077933","1483077934","1483077959","1483077933","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077937","1483077938","1483077962","1483077937","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078008","1483078011","1483078038","1483078008","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078016","1483078017","1483078041","1483078016","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078034","1483078037","1483078063","1483078034","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078042","1483078043","1483078072","1483078042","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078073","1483078074","1483078095","1483078073","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078080","1483078081","1483078108","1483078080","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078089","1483078090","1483078112","1483078089","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078178","1483078180","1483078208","1483078178","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078210","1483078212","1483078234","1483078210","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078283","1483078284","1483078308","1483078283","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078285","1483078287","1483078313","1483078285","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078302","1483078303","1483078332","1483078302","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078306","1483078307","1483078335","1483078306","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974605","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078310","1483078311","1483078339","1483078310","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078332","1483078333","1483078353","1483078332","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078336","1483078337","1483078364","1483078336","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078339","1483078340","1483078369","1483078339","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078370","1483078371","1483078396","1483078370","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078396","1483078399","1483078425","1483078396","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078426","1483078427","1483078453","1483078426","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078450","1483078451","1483078475","1483078450","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078451","1483078453","1483078477","1483078451","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974675","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078488","1483078489","1483078518","1483078488","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974703","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078570","1483078572","1483078597","1483078570","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080021","1483080023","1483080040","1483080021","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080089","1483080092","1483080110","1483080089","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080180","1483080183","1483080206","1483080180","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080206","1483080207","1483080235","1483080206","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080225","1483080226","1483080245","1483080225","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080236","1483080238","1483080260","1483080236","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080303","1483080304","1483080328","1483080303","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080306","1483080307","1483080329","1483080306","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080367","1483080369","1483080391","1483080367","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080370","1483080372","1483080391","1483080370","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080374","1483080375","1483080398","1483080374","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975139","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080437","1483080438","1483080458","1483080437","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975153","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080462","1483080464","1483080492","1483080462","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080491","1483080492","1483080518","1483080491","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080551","1483080553","1483080576","1483080551","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080564","1483080565","1483080582","1483080564","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080576","1483080577","1483080606","1483080576","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080583","1483080584","1483080611","1483080583","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080606","1483080607","1483080624","1483080606","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080612","1483080613","1483080630","1483080612","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080612","1483080613","1483080631","1483080612","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080658","1483080659","1483080687","1483080658","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080668","1483080669","1483080694","1483080668","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080671","1483080672","1483080695","1483080671","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080688","1483080689","1483080707","1483080688","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080694","1483080696","1483080725","1483080694","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080696","1483080697","1483080720","1483080696","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080696","1483080697","1483080723","1483080696","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080708","1483080709","1483080735","1483080708","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080720","1483080721","1483080737","1483080720","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080724","1483080725","1483080742","1483080724","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080727","1483080728","1483080747","1483080727","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080743","1483080745","1483080772","1483080743","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080773","1483080775","1483080802","1483080773","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080781","1483080782","1483080803","1483080781","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080844","1483080845","1483080865","1483080844","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080847","1483080849","1483080870","1483080847","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080975","1483080976","1483080997","1483080975","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080976","1483080978","1483081001","1483080976","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080984","1483080985","1483081008","1483080984","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080996","1483080997","1483081018","1483080996","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080998","1483081000","1483081029","1483080998","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081050","1483081052","1483081080","1483081050","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081053","1483081055","1483081083","1483081053","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081074","1483081075","1483081096","1483081074","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081084","1483081085","1483081114","1483081084","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081108","1483081109","1483081131","1483081108","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081115","1483081116","1483081138","1483081115","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081121","1483081122","1483081144","1483081121","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081124","1483081125","1483081146","1483081124","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081187","1483081188","1483081215","1483081187","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081218","1483081219","1483081245","1483081218","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081248","1483081249","1483081269","1483081248","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081526","1483081527","1483081555","1483081526","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081543","1483081544","1483081567","1483081543","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081596","1483081597","1483081620","1483081596","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081686","1483081687","1483081702","1483081686","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081687","1483081690","1483081712","1483081687","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081712","1483081713","1483081730","1483081712","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081726","1483081727","1483081744","1483081726","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081731","1483081732","1483081751","1483081731","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081733","1483081735","1483081752","1483081733","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081739","1483081741","1483081768","1483081739","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081752","1483081753","1483081782","1483081752","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081798","1483081799","1483081820","1483081798","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081805","1483081806","1483081820","1483081805","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081823","1483081824","1483081853","1483081823","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081856","1483081858","1483081877","1483081856","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081858","1483081861","1483081877","1483081858","1","8","0","-1","16","3","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081943","1483081945","1483081972","1483081943","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081970","1483081971","1483081989","1483081970","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081973","1483081974","1483081995","1483081973","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081976","1483081978","1483081997","1483081976","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081979","1483081981","1483081998","1483081979","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082045","1483082046","1483082062","1483082045","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082049","1483082050","1483082076","1483082049","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082061","1483082063","1483082092","1483082061","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082064","1483082067","1483082085","1483082064","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082077","1483082078","1483082096","1483082077","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082085","1483082088","1483082104","1483082085","1","8","0","-1","16","3","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082088","1483082091","1483082113","1483082088","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082149","1483082150","1483082178","1483082149","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082202","1483082204","1483082231","1483082202","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082214","1483082215","1483082239","1483082214","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082218","1483082219","1483082243","1483082218","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082319","1483082321","1483082349","1483082319","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082404","1483082405","1483082427","1483082404","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082457","1483082458","1483082487","1483082457","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082517","1483082518","1483082544","1483082517","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083255","1483083256","1483083282","1483083255","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976043","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083430","1483083431","1483083449","1483083430","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976047","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083444","1483083446","1483083463","1483083444","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976049","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083446","1483083449","1483083464","1483083446","1","8","0","-1","15","3","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083450","1483083452","1483083476","1483083450","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083464","1483083465","1483083483","1483083464","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083476","1483083478","1483083495","1483083476","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083484","1483083485","1483083511","1483083484","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976073","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083484","1483083485","1483083511","1483083484","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976089","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083537","1483083538","1483083554","1483083537","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976091","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083538","1483083541","1483083555","1483083538","1","8","0","-1","14","3","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976093","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083541","1483083544","1483083566","1483083541","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976095","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083549","1483083550","1483083574","1483083549","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083550","1483083553","1483083573","1483083550","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083555","1483083556","1483083578","1483083555","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083556","1483083559","1483083577","1483083556","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083559","1483083562","1483083580","1483083559","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083567","1483083568","1483083584","1483083567","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083574","1483083575","1483083591","1483083574","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083575","1483083577","1483083602","1483083575","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083577","1483083578","1483083604","1483083577","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083578","1483083581","1483083606","1483083578","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083603","1483083604","1483083632","1483083603","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083606","1483083607","1483083627","1483083606","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083627","1483083628","1483083655","1483083627","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083638","1483083639","1483083659","1483083638","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083640","1483083641","1483083662","1483083640","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083641","1483083642","1483083663","1483083641","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083656","1483083658","1483083673","1483083656","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083660","1483083661","1483083677","1483083660","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083662","1483083663","1483083680","1483083662","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083664","1483083667","1483083692","1483083664","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083681","1483083682","1483083708","1483083681","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083693","1483083696","1483083713","1483083693","1","8","0","-1","17","3","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083714","1483083715","1483083736","1483083714","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083716","1483083718","1483083739","1483083716","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083735","1483083736","1483083756","1483083735","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083737","1483083739","1483083759","1483083737","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083740","1483083742","1483083762","1483083740","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083740","1483083742","1483083760","1483083740","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083783","1483083784","1483083799","1483083783","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083800","1483083801","1483083820","1483083800","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083818","1483083819","1483083834","1483083818","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083819","1483083820","1483083834","1483083819","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083821","1483083823","1483083837","1483083821","1","8","0","-1","14","2","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083827","1483083828","1483083842","1483083827","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083834","1483083835","1483083860","1483083834","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083835","1483083837","1483083862","1483083835","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083843","1483083844","1483083872","1483083843","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083860","1483083862","1483083878","1483083860","1","8","0","-1","16","2","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083862","1483083863","1483083879","1483083862","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083873","1483083874","1483083890","1483083873","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083876","1483083877","1483083893","1483083876","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083882","1483083883","1483083896","1483083882","1","8","0","-1","13","1","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083891","1483083892","1483083904","1483083891","1","8","0","-1","12","1","96","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083897","1483083898","1483083920","1483083897","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083900","1483083901","1483083923","1483083900","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083908","1483083909","1483083936","1483083908","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083910","1483083913","1483083936","1483083910","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083921","1483083922","1483083944","1483083921","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083924","1483083925","1483083953","1483083924","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083936","1483083937","1483083959","1483083936","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083942","1483083943","1483083963","1483083942","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083945","1483083946","1483083965","1483083945","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083954","1483083955","1483083975","1483083954","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083958","1483083959","1483083977","1483083958","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083960","1483083962","1483083981","1483083960","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083963","1483083965","1483083994","1483083963","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083969","1483083971","1483083998","1483083969","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084027","1483084028","1483084051","1483084027","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084029","1483084031","1483084053","1483084029","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084045","1483084046","1483084065","1483084045","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084051","1483084052","1483084070","1483084051","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084054","1483084055","1483084082","1483084054","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084089","1483084090","1483084112","1483084089","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084105","1483084108","1483084127","1483084105","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084106","1483084108","1483084126","1483084106","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084125","1483084126","1483084151","1483084125","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084127","1483084128","1483084157","1483084127","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084128","1483084129","1483084157","1483084128","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084152","1483084153","1483084182","1483084152","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084166","1483084167","1483084188","1483084166","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084182","1483084183","1483084200","1483084182","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084187","1483084188","1483084214","1483084187","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084193","1483084194","1483084220","1483084193","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084329","1483084331","1483084348","1483084329","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084365","1483084367","1483084394","1483084365","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084377","1483084378","1483084403","1483084377","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084407","1483084408","1483084424","1483084407","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084425","1483084427","1483084442","1483084425","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084432","1483084433","1483084457","1483084432","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084443","1483084445","1483084469","1483084443","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084468","1483084469","1483084486","1483084468","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084470","1483084471","1483084485","1483084470","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084471","1483084472","1483084496","1483084471","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084479","1483084480","1483084502","1483084479","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084487","1483084488","1483084517","1483084487","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084518","1483084520","1483084541","1483084518","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084521","1483084523","1483084546","1483084521","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084530","1483084531","1483084554","1483084530","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084547","1483084549","1483084575","1483084547","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084571","1483084572","1483084595","1483084571","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976585","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084843","1483084846","1483084868","1483084843","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084869","1483084870","1483084892","1483084869","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084878","1483084879","1483084901","1483084878","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084884","1483084885","1483084907","1483084884","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084892","1483084893","1483084916","1483084892","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084893","1483084894","1483084917","1483084893","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084901","1483084902","1483084924","1483084901","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084907","1483084908","1483084931","1483084907","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976605","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084915","1483084917","1483084941","1483084915","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084993","1483084996","1483085017","1483084993","1","8","0","-1","21","3","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085018","1483085019","1483085040","1483085018","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085038","1483085039","1483085065","1483085038","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085041","1483085042","1483085068","1483085041","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085051","1483085052","1483085074","1483085051","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085062","1483085063","1483085086","1483085062","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085098","1483085101","1483085123","1483085098","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085123","1483085126","1483085148","1483085123","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085127","1483085129","1483085149","1483085127","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085131","1483085132","1483085157","1483085131","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085133","1483085135","1483085159","1483085133","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085148","1483085149","1483085172","1483085148","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085150","1483085152","1483085176","1483085150","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085160","1483085161","1483085185","1483085160","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085177","1483085178","1483085207","1483085177","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085181","1483085182","1483085211","1483085181","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085211","1483085212","1483085236","1483085211","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085239","1483085241","1483085268","1483085239","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085244","1483085245","1483085273","1483085244","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085245","1483085246","1483085270","1483085245","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085250","1483085251","1483085280","1483085250","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085253","1483085254","1483085282","1483085253","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085271","1483085273","1483085300","1483085271","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085273","1483085275","1483085303","1483085273","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085281","1483085282","1483085304","1483085281","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085297","1483085298","1483085326","1483085297","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085341","1483085343","1483085363","1483085341","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085365","1483085367","1483085387","1483085365","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085379","1483085382","1483085400","1483085379","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085388","1483085389","1483085410","1483085388","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085397","1483085398","1483085420","1483085397","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085405","1483085408","1483085426","1483085405","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085453","1483085454","1483085473","1483085453","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085462","1483085463","1483085482","1483085462","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085468","1483085469","1483085484","1483085468","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085471","1483085472","1483085493","1483085471","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085474","1483085475","1483085496","1483085474","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085477","1483085478","1483085498","1483085477","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085494","1483085495","1483085509","1483085494","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085497","1483085498","1483085514","1483085497","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085500","1483085501","1483085526","1483085500","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085504","1483085505","1483085530","1483085504","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085527","1483085528","1483085555","1483085527","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085530","1483085531","1483085554","1483085530","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085548","1483085549","1483085575","1483085548","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085550","1483085552","1483085577","1483085550","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085554","1483085555","1483085579","1483085554","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085556","1483085558","1483085584","1483085556","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085571","1483085573","1483085599","1483085571","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085577","1483085578","1483085603","1483085577","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085580","1483085581","1483085608","1483085580","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085599","1483085600","1483085626","1483085599","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085651","1483085653","1483085666","1483085651","1","8","0","-1","13","2","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085655","1483085656","1483085680","1483085655","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085658","1483085659","1483085682","1483085658","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085662","1483085663","1483085684","1483085662","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085680","1483085681","1483085707","1483085680","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085683","1483085684","1483085710","1483085683","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085685","1483085687","1483085712","1483085685","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085760","1483085761","1483085784","1483085760","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085793","1483085795","1483085820","1483085793","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085807","1483085808","1483085834","1483085807","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085812","1483085813","1483085839","1483085812","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085821","1483085823","1483085847","1483085821","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085823","1483085824","1483085850","1483085823","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085910","1483085911","1483085934","1483085910","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085954","1483085956","1483085978","1483085954","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085962","1483085963","1483085988","1483085962","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086228","1483086229","1483086251","1483086228","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086241","1483086242","1483086262","1483086241","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086263","1483086265","1483086287","1483086263","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977101","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086264","1483086265","1483086288","1483086264","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086272","1483086273","1483086296","1483086272","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977109","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086288","1483086289","1483086308","1483086288","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086302","1483086304","1483086332","1483086302","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086334","1483086336","1483086358","1483086334","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086341","1483086342","1483086364","1483086341","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086347","1483086348","1483086370","1483086347","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086359","1483086361","1483086389","1483086359","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086366","1483086368","1483086391","1483086366","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086371","1483086372","1483086393","1483086371","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086383","1483086384","1483086407","1483086383","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086388","1483086389","1483086412","1483086388","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086389","1483086392","1483086412","1483086389","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086394","1483086395","1483086413","1483086394","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086407","1483086408","1483086437","1483086407","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086455","1483086457","1483086474","1483086455","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086459","1483086460","1483086486","1483086459","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086475","1483086478","1483086505","1483086475","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086500","1483086501","1483086517","1483086500","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086503","1483086504","1483086527","1483086503","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086506","1483086507","1483086536","1483086506","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086536","1483086538","1483086557","1483086536","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086548","1483086549","1483086569","1483086548","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086555","1483086556","1483086575","1483086555","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977227","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086557","1483086559","1483086576","1483086557","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086562","1483086563","1483086579","1483086562","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086569","1483086570","1483086590","1483086569","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086571","1483086573","1483086594","1483086571","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086576","1483086579","1483086599","1483086576","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086579","1483086582","1483086601","1483086579","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086590","1483086591","1483086609","1483086590","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086594","1483086595","1483086612","1483086594","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086596","1483086598","1483086613","1483086596","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086600","1483086601","1483086617","1483086600","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086602","1483086603","1483086621","1483086602","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086608","1483086609","1483086636","1483086608","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086610","1483086612","1483086637","1483086610","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086618","1483086619","1483086647","1483086618","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086621","1483086622","1483086649","1483086621","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086637","1483086638","1483086657","1483086637","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086638","1483086641","1483086661","1483086638","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086650","1483086651","1483086670","1483086650","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086671","1483086673","1483086692","1483086671","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086671","1483086673","1483086692","1483086671","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086680","1483086681","1483086698","1483086680","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086688","1483086689","1483086707","1483086688","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086738","1483086740","1483086769","1483086738","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086769","1483086771","1483086796","1483086769","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086866","1483086868","1483086895","1483086866","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087044","1483087045","1483087074","1483087044","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087839","1483087841","1483087867","1483087839","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087846","1483087847","1483087873","1483087846","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087849","1483087850","1483087878","1483087849","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087856","1483087858","1483087883","1483087856","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087911","1483087912","1483087935","1483087911","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087937","1483087939","1483087964","1483087937","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087949","1483087950","1483087976","1483087949","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087953","1483087954","1483087982","1483087953","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087977","1483087978","1483088003","1483087977","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977721","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088017","1483088018","1483088042","1483088017","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088041","1483088043","1483088068","1483088041","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088043","1483088044","1483088069","1483088043","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088067","1483088068","1483088097","1483088067","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088069","1483088071","1483088099","1483088069","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977807","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088264","1483088267","1483088289","1483088264","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088272","1483088273","1483088295","1483088272","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088289","1483088290","1483088312","1483088289","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088298","1483088299","1483088317","1483088298","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088300","1483088302","1483088326","1483088300","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977821","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088312","1483088313","1483088338","1483088312","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088316","1483088317","1483088341","1483088316","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088318","1483088320","1483088342","1483088318","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088326","1483088327","1483088350","1483088326","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088327","1483088330","1483088351","1483088327","1","8","0","-1","21","3","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088332","1483088333","1483088353","1483088332","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088339","1483088340","1483088358","1483088339","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088342","1483088343","1483088363","1483088342","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088352","1483088353","1483088382","1483088352","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088383","1483088384","1483088404","1483088383","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088386","1483088387","1483088408","1483088386","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088386","1483088387","1483088407","1483088386","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088399","1483088400","1483088418","1483088399","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088405","1483088406","1483088422","1483088405","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088406","1483088407","1483088429","1483088406","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088407","1483088408","1483088430","1483088407","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088408","1483088409","1483088430","1483088408","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088419","1483088420","1483088439","1483088419","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088431","1483088433","1483088452","1483088431","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088434","1483088436","1483088465","1483088434","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088439","1483088440","1483088468","1483088439","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088442","1483088443","1483088470","1483088442","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088471","1483088473","1483088498","1483088471","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088497","1483088499","1483088524","1483088497","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977912","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088513","1483088514","1483088540","1483088513","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088605","1483088608","1483088632","1483088605","1","8","0","-1","24","3","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088621","1483088622","1483088648","1483088621","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088644","1483088645","1483088671","1483088644","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977952","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088645","1483088648","1483088675","1483088645","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088672","1483088673","1483088700","1483088672","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088751","1483088752","1483088779","1483088751","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977994","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088779","1483088780","1483088807","1483088779","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088781","1483088783","1483088809","1483088781","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088784","1483088786","1483088811","1483088784","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978000","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088789","1483088790","1483088819","1483088789","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088791","1483088793","1483088821","1483088791","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088795","1483088796","1483088824","1483088795","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088809","1483088811","1483088839","1483088809","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978010","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088812","1483088814","1483088843","1483088812","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088821","1483088823","1483088847","1483088821","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978016","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088824","1483088826","1483088853","1483088824","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088910","1483088911","1483088940","1483088910","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088928","1483088929","1483088954","1483088928","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088929","1483088932","1483088957","1483088929","1","8","0","-1","25","3","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088974","1483088975","1483088997","1483088974","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089271","1483089272","1483089293","1483089271","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089273","1483089275","1483089298","1483089273","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089294","1483089295","1483089318","1483089294","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089299","1483089300","1483089323","1483089299","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089318","1483089319","1483089341","1483089318","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089323","1483089325","1483089350","1483089323","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089341","1483089342","1483089366","1483089341","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089350","1483089351","1483089375","1483089350","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089353","1483089354","1483089378","1483089353","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089362","1483089365","1483089387","1483089362","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089367","1483089368","1483089389","1483089367","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089376","1483089377","1483089396","1483089376","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089425","1483089426","1483089449","1483089425","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089428","1483089429","1483089451","1483089428","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089449","1483089450","1483089473","1483089449","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089451","1483089453","1483089476","1483089451","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089460","1483089461","1483089480","1483089460","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089477","1483089478","1483089505","1483089477","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089479","1483089481","1483089505","1483089479","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089542","1483089544","1483089567","1483089542","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089546","1483089547","1483089572","1483089546","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089567","1483089568","1483089590","1483089567","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089568","1483089571","1483089590","1483089568","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089596","1483089598","1483089622","1483089596","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089606","1483089608","1483089630","1483089606","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089608","1483089609","1483089631","1483089608","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089660","1483089663","1483089692","1483089660","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089665","1483089666","1483089686","1483089665","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089676","1483089677","1483089697","1483089676","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089687","1483089688","1483089708","1483089687","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089693","1483089694","1483089714","1483089693","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089694","1483089697","1483089715","1483089694","1","8","0","-1","18","3","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089698","1483089700","1483089716","1483089698","1","8","0","-1","16","2","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089704","1483089705","1483089727","1483089704","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089714","1483089715","1483089737","1483089714","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089716","1483089717","1483089739","1483089716","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089717","1483089718","1483089740","1483089717","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089738","1483089739","1483089757","1483089738","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089739","1483089740","1483089760","1483089739","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089749","1483089750","1483089778","1483089749","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089751","1483089753","1483089779","1483089751","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089775","1483089778","1483089807","1483089775","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089779","1483089780","1483089803","1483089779","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089803","1483089804","1483089828","1483089803","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089808","1483089809","1483089831","1483089808","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089817","1483089818","1483089839","1483089817","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089828","1483089829","1483089849","1483089828","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090026","1483090027","1483090056","1483090026","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091152","1483091153","1483091178","1483091152","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091169","1483091170","1483091190","1483091169","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091180","1483091181","1483091200","1483091180","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978739","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091292","1483091293","1483091315","1483091292","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091300","1483091301","1483091323","1483091300","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091321","1483091322","1483091341","1483091321","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978747","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091323","1483091325","1483091354","1483091323","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091359","1483091360","1483091387","1483091359","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091394","1483091395","1483091420","1483091394","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091500","1483091501","1483091520","1483091500","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091527","1483091529","1483091555","1483091527","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978863","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091650","1483091652","1483091670","1483091650","1","8","0","-1","18","2","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978867","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091660","1483091662","1483091691","1483091660","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091692","1483091693","1483091712","1483091692","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091694","1483091695","1483091714","1483091694","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091701","1483091702","1483091718","1483091701","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091703","1483091705","1483091726","1483091703","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091712","1483091713","1483091731","1483091712","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091772","1483091773","1483091799","1483091772","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091774","1483091776","1483091797","1483091774","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091780","1483091782","1483091797","1483091780","1","8","0","-1","15","2","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091791","1483091793","1483091816","1483091791","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091799","1483091801","1483091823","1483091799","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091810","1483091811","1483091828","1483091810","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091817","1483091818","1483091836","1483091817","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091841","1483091843","1483091872","1483091841","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091950","1483091951","1483091976","1483091950","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091954","1483091957","1483091979","1483091954","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092043","1483092044","1483092065","1483092043","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092069","1483092070","1483092092","1483092069","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092093","1483092096","1483092120","1483092093","1","8","0","-1","24","3","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979061","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092236","1483092237","1483092260","1483092236","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092312","1483092314","1483092339","1483092312","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979087","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092317","1483092318","1483092343","1483092317","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979097","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092353","1483092354","1483092383","1483092353","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979105","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092376","1483092379","1483092399","1483092376","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979107","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092384","1483092385","1483092408","1483092384","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979173","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092577","1483092578","1483092605","1483092577","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092660","1483092661","1483092688","1483092660","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092688","1483092689","1483092709","1483092688","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092690","1483092692","1483092716","1483092690","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979199","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092698","1483092699","1483092720","1483092698","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979201","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092706","1483092707","1483092734","1483092706","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092743","1483092745","1483092773","1483092743","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092773","1483092774","1483092796","1483092773","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979227","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092791","1483092794","1483092811","1483092791","1","8","0","-1","17","3","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092796","1483092797","1483092820","1483092796","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092827","1483092829","1483092849","1483092827","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092831","1483092832","1483092851","1483092831","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092852","1483092854","1483092880","1483092852","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092881","1483092884","1483092904","1483092881","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092882","1483092884","1483092909","1483092882","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092886","1483092887","1483092913","1483092886","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092911","1483092912","1483092939","1483092911","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092913","1483092915","1483092938","1483092913","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092916","1483092917","1483092936","1483092916","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092938","1483092939","1483092956","1483092938","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092972","1483092973","1483093000","1483092972","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092974","1483092976","1483092998","1483092974","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092979","1483092980","1483093002","1483092979","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092988","1483092989","1483093008","1483092988","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092996","1483092997","1483093021","1483092996","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092998","1483093000","1483093022","1483092998","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093000","1483093002","1483093018","1483093000","1","8","0","-1","16","2","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093008","1483093009","1483093035","1483093008","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093021","1483093022","1483093042","1483093021","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093023","1483093025","1483093041","1483093023","1","8","0","-1","16","2","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093036","1483093037","1483093052","1483093036","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093113","1483093116","1483093144","1483093113","1","8","0","-1","28","3","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093120","1483093121","1483093142","1483093120","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093122","1483093124","1483093141","1483093122","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093139","1483093141","1483093163","1483093139","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093391","1483093392","1483093421","1483093391","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093401","1483093402","1483093428","1483093401","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093658","1483093659","1483093685","1483093658","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094251","1483094252","1483094280","1483094251","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094349","1483094352","1483094371","1483094349","1","8","0","-1","19","3","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094633","1483094634","1483094659","1483094633","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094719","1483094720","1483094749","1483094719","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094797","1483094798","1483094822","1483094797","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094946","1483094949","1483094975","1483094946","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095016","1483095017","1483095043","1483095016","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095133","1483095134","1483095159","1483095133","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095143","1483095144","1483095172","1483095143","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095158","1483095159","1483095188","1483095158","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095160","1483095162","1483095189","1483095160","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095189","1483095192","1483095218","1483095189","1","8","0","-1","26","3","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095262","1483095264","1483095292","1483095262","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095282","1483095283","1483095311","1483095282","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095308","1483095309","1483095334","1483095308","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095418","1483095419","1483095446","1483095418","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095557","1483095558","1483095587","1483095557","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980033","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095665","1483095667","1483095695","1483095665","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095767","1483095768","1483095796","1483095767","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095795","1483095796","1483095824","1483095795","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095803","1483095804","1483095833","1483095803","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095901","1483095902","1483095929","1483095901","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096068","1483096069","1483096093","1483096068","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096126","1483096127","1483096154","1483096126","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096207","1483096208","1483096228","1483096207","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096225","1483096226","1483096253","1483096225","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980171","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096263","1483096264","1483096289","1483096263","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980331","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096995","1483096998","1483097027","1483096995","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980333","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097003","1483097004","1483097033","1483097003","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097153","1483097155","1483097183","1483097153","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097320","1483097321","1483097350","1483097320","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097596","1483097598","1483097625","1483097596","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097653","1483097655","1483097676","1483097653","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097810","1483097811","1483097840","1483097810","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097935","1483097938","1483097966","1483097935","1","8","0","-1","28","3","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098167","1483098168","1483098196","1483098167","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980649","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098170","1483098171","1483098200","1483098170","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098176","1483098178","1483098206","1483098176","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098310","1483098311","1483098340","1483098310","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098740","1483098741","1483098766","1483098740","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098988","1483098989","1483099013","1483098988","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099051","1483099052","1483099076","1483099051","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099062","1483099063","1483099091","1483099062","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099063","1483099066","1483099089","1483099063","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099075","1483099077","1483099105","1483099075","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099139","1483099140","1483099166","1483099139","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099246","1483099248","1483099273","1483099246","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099254","1483099255","1483099283","1483099254","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099357","1483099358","1483099384","1483099357","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099361","1483099364","1483099391","1483099361","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099379","1483099382","1483099409","1483099379","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980966","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099384","1483099385","1483099412","1483099384","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099392","1483099394","1483099421","1483099392","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099402","1483099403","1483099430","1483099402","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101174","1483101175","1483101196","1483101174","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101190","1483101191","1483101214","1483101190","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101196","1483101197","1483101221","1483101196","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101220","1483101221","1483101244","1483101220","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101286","1483101287","1483101314","1483101286","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101352","1483101353","1483101381","1483101352","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101433","1483101435","1483101463","1483101433","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101442","1483101443","1483101465","1483101442","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101501","1483101502","1483101527","1483101501","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101503","1483101505","1483101531","1483101503","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101509","1483101510","1483101539","1483101509","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101511","1483101513","1483101536","1483101511","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101569","1483101571","1483101598","1483101569","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101598","1483101599","1483101622","1483101598","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101628","1483101629","1483101653","1483101628","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101638","1483101639","1483101661","1483101638","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101642","1483101643","1483101667","1483101642","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101728","1483101729","1483101749","1483101728","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101761","1483101763","1483101792","1483101761","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101843","1483101844","1483101872","1483101843","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101858","1483101859","1483101883","1483101858","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101870","1483101873","1483101896","1483101870","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101873","1483101876","1483101896","1483101873","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101883","1483101884","1483101908","1483101883","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101885","1483101887","1483101911","1483101885","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101912","1483101913","1483101938","1483101912","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101931","1483101932","1483101960","1483101931","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102003","1483102004","1483102031","1483102003","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981605","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102051","1483102052","1483102078","1483102051","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102143","1483102145","1483102174","1483102143","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102175","1483102176","1483102201","1483102175","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102180","1483102181","1483102205","1483102180","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102181","1483102184","1483102213","1483102181","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102326","1483102328","1483102352","1483102326","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981703","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102353","1483102354","1483102380","1483102353","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981705","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102356","1483102357","1483102381","1483102356","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981731","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102441","1483102444","1483102466","1483102441","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102502","1483102504","1483102531","1483102502","1","8","0","-1","27","2","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981747","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102506","1483102507","1483102531","1483102506","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102896","1483102897","1483102924","1483102896","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102917","1483102918","1483102941","1483102917","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102985","1483102986","1483103014","1483102985","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102987","1483102988","1483103016","1483102987","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102999","1483103000","1483103027","1483102999","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103004","1483103005","1483103024","1483103004","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103014","1483103015","1483103044","1483103014","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103019","1483103021","1483103044","1483103019","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103024","1483103025","1483103046","1483103024","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103078","1483103079","1483103106","1483103078","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103096","1483103098","1483103126","1483103096","1","8","0","-1","28","2","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103146","1483103147","1483103176","1483103146","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103152","1483103153","1483103176","1483103152","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103170","1483103171","1483103193","1483103170","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103302","1483103303","1483103323","1483103302","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103307","1483103308","1483103329","1483103307","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103313","1483103314","1483103336","1483103313","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103383","1483103386","1483103406","1483103383","1","8","0","-1","20","3","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982019","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103419","1483103420","1483103440","1483103419","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982025","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103441","1483103443","1483103472","1483103441","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982063","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103558","1483103560","1483103589","1483103558","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105045","1483105046","1483105075","1483105045","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105589","1483105590","1483105619","1483105589","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105590","1483105591","1483105620","1483105590","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105904","1483105905","1483105928","1483105904","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106680","1483106681","1483106710","1483106680","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982755","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106683","1483106684","1483106709","1483106683","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106744","1483106745","1483106768","1483106744","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106813","1483106814","1483106843","1483106813","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982800","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106839","1483106840","1483106867","1483106839","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107476","1483107477","1483107502","1483107476","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107503","1483107504","1483107529","1483107503","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107529","1483107530","1483107558","1483107529","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107693","1483107694","1483107718","1483107693","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107782","1483107784","1483107813","1483107782","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107841","1483107842","1483107869","1483107841","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983053","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107929","1483107930","1483107954","1483107929","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107965","1483107967","1483107993","1483107965","1","8","0","-1","26","2","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108169","1483108170","1483108199","1483108169","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108255","1483108257","1483108279","1483108255","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108280","1483108282","1483108304","1483108280","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108280","1483108282","1483108303","1483108280","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108285","1483108288","1483108311","1483108285","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983187","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108377","1483108378","1483108404","1483108377","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108542","1483108543","1483108570","1483108542","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108592","1483108593","1483108621","1483108592","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108904","1483108906","1483108929","1483108904","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108929","1483108930","1483108959","1483108929","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108973","1483108975","1483109000","1483108973","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983341","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108974","1483108975","1483109002","1483108974","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109304","1483109306","1483109329","1483109304","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109369","1483109370","1483109394","1483109369","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109381","1483109382","1483109405","1483109381","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109383","1483109384","1483109413","1483109383","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109384","1483109385","1483109409","1483109384","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109392","1483109393","1483109416","1483109392","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109486","1483109487","1483109514","1483109486","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109488","1483109490","1483109513","1483109488","1","8","0","-1","23","2","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109504","1483109505","1483109533","1483109504","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109515","1483109516","1483109539","1483109515","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109516","1483109518","1483109543","1483109516","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109534","1483109535","1483109557","1483109534","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109539","1483109540","1483109566","1483109539","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109640","1483109641","1483109664","1483109640","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109660","1483109661","1483109681","1483109660","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109664","1483109667","1483109690","1483109664","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109769","1483109770","1483109790","1483109769","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109790","1483109793","1483109822","1483109790","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109794","1483109796","1483109818","1483109794","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109907","1483109908","1483109934","1483109907","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110115","1483110118","1483110146","1483110115","1","8","0","-1","28","3","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111160","1483111161","1483111188","1483111160","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111901","1483111902","1483111929","1483111901","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111955","1483111956","1483111985","1483111955","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984025","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111986","1483111988","1483112010","1483111986","1","8","0","-1","22","2","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984047","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112062","1483112063","1483112089","1483112062","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984067","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112124","1483112126","1483112150","1483112124","1","8","0","-1","24","2","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112185","1483112186","1483112209","1483112185","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112330","1483112331","1483112353","1483112330","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112342","1483112343","1483112372","1483112342","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112373","1483112374","1483112400","1483112373","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112375","1483112377","1483112396","1483112375","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984171","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112445","1483112446","1483112469","1483112445","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112455","1483112456","1483112475","1483112455","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112458","1483112459","1483112476","1483112458","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112469","1483112470","1483112489","1483112469","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112578","1483112579","1483112603","1483112578","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112591","1483112592","1483112617","1483112591","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112679","1483112680","1483112708","1483112679","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112798","1483112801","1483112830","1483112798","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112849","1483112852","1483112874","1483112849","1","8","0","-1","22","3","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112875","1483112876","1483112897","1483112875","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112881","1483112882","1483112904","1483112881","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113069","1483113070","1483113091","1483113069","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113159","1483113160","1483113182","1483113159","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113177","1483113178","1483113198","1483113177","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113228","1483113229","1483113246","1483113228","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113234","1483113235","1483113251","1483113234","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113246","1483113249","1483113276","1483113246","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113277","1483113278","1483113298","1483113277","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113281","1483113282","1483113302","1483113281","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113288","1483113289","1483113312","1483113288","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113351","1483113352","1483113378","1483113351","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113363","1483113364","1483113393","1483113363","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113764","1483113765","1483113786","1483113764","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113770","1483113771","1483113796","1483113770","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113773","1483113774","1483113793","1483113773","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113981","1483113983","1483114012","1483113981","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114099","1483114100","1483114123","1483114099","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114138","1483114139","1483114168","1483114138","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114142","1483114143","1483114168","1483114142","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114152","1483114153","1483114174","1483114152","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114169","1483114172","1483114201","1483114169","1","8","0","-1","29","3","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114173","1483114174","1483114203","1483114173","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114276","1483114277","1483114300","1483114276","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114279","1483114280","1483114304","1483114279","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114305","1483114306","1483114325","1483114305","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114307","1483114309","1483114329","1483114307","1","8","0","-1","20","2","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114322","1483114323","1483114348","1483114322","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114330","1483114331","1483114360","1483114330","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114404","1483114406","1483114435","1483114404","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114418","1483114419","1483114440","1483114418","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114421","1483114422","1483114449","1483114421","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114470","1483114472","1483114501","1483114470","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114485","1483114488","1483114515","1483114485","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114525","1483114526","1483114551","1483114525","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114616","1483114617","1483114641","1483114616","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114621","1483114622","1483114643","1483114621","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114644","1483114645","1483114673","1483114644","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114731","1483114732","1483114757","1483114731","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114809","1483114810","1483114834","1483114809","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114815","1483114816","1483114837","1483114815","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114816","1483114819","1483114842","1483114816","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114896","1483114898","1483114927","1483114896","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115132","1483115133","1483115152","1483115132","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115189","1483115190","1483115213","1483115189","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115190","1483115191","1483115218","1483115190","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115220","1483115223","1483115246","1483115220","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115620","1483115621","1483115646","1483115620","1","8","0","-1","25","1","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115640","1483115641","1483115660","1483115640","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115652","1483115653","1483115680","1483115652","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115716","1483115717","1483115735","1483115716","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115823","1483115825","1483115854","1483115823","1","8","0","-1","29","2","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115928","1483115929","1483115948","1483115928","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115930","1483115932","1483115951","1483115930","1","8","0","-1","19","2","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116012","1483116013","1483116042","1483116012","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116021","1483116022","1483116041","1483116021","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116036","1483116037","1483116060","1483116036","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116042","1483116043","1483116069","1483116042","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116104","1483116107","1483116131","1483116104","1","8","0","-1","24","3","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116168","1483116170","1483116187","1483116168","1","8","0","-1","17","2","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116188","1483116189","1483116218","1483116188","1","8","0","-1","29","1","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116239","1483116240","1483116260","1483116239","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116240","1483116243","1483116264","1483116240","1","8","0","-1","21","3","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116247","1483116248","1483116270","1483116247","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116265","1483116266","1483116283","1483116265","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116268","1483116269","1483116296","1483116268","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116271","1483116272","1483116295","1483116271","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116279","1483116280","1483116298","1483116279","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116283","1483116284","1483116311","1483116283","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116289","1483116290","1483116309","1483116289","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116296","1483116297","1483116313","1483116296","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116297","1483116298","1483116320","1483116297","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116312","1483116313","1483116336","1483116312","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116314","1483116316","1483116341","1483116314","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116319","1483116320","1483116348","1483116319","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116328","1483116334","1483116354","1483116328","1","8","0","-1","20","6","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116330","1483116358","1483116380","1483116330","1","8","0","-1","22","28","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976874","Mortorq","UTC","","Honey-buzzard","Screwdriver","apple","1483085575","1483085577","1483085602","1483085575","1","8","0","-1","25","2","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["167841","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056704","1483056705","1483056722","1483056704","1","8","0","-1","17","1","136","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168280","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059999","1483060000","1483060029","1483059999","1","8","0","-1","29","1","232","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168350","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060470","1483060471","1483060499","1483060470","1","8","0","-1","28","1","224","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168371","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060638","1483060639","1483060655","1483060638","1","8","0","-1","16","1","128","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169012","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065080","1483065081","1483065109","1483065080","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169173","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066096","1483066099","1483066122","1483066096","1","8","0","-1","23","3","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169183","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066130","1483066131","1483066150","1483066130","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169377","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067913","1483067914","1483067929","1483067913","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170161","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072220","1483072221","1483072240","1483072220","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170291","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073039","1483073040","1483073058","1483073039","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170554","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074635","1483074638","1483074665","1483074635","1","8","0","-1","27","3","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170859","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076959","1483076960","1483076982","1483076959","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171276","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080089","1483080090","1483080104","1483080089","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171372","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080612","1483080613","1483080626","1483080612","1","8","0","-1","13","1","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171391","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080696","1483080698","1483080719","1483080696","1","8","0","-1","21","2","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171554","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081686","1483081687","1483081715","1483081686","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171664","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082280","1483082281","1483082305","1483082280","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171676","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082350","1483082351","1483082374","1483082350","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171775","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083175","1483083176","1483083204","1483083175","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171839","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083549","1483083550","1483083564","1483083549","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171891","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083757","1483083758","1483083775","1483083757","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172214","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085474","1483085475","1483085489","1483085474","1","8","0","-1","14","1","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172364","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086299","1483086300","1483086320","1483086299","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172386","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086394","1483086395","1483086408","1483086394","1","8","0","-1","13","1","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172394","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086414","1483086415","1483086437","1483086414","1","8","0","-1","22","1","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172414","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086506","1483086507","1483086533","1483086506","1","8","0","-1","26","1","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172497","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086869","1483086870","1483086891","1483086869","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172593","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087493","1483087494","1483087518","1483087493","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172666","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087949","1483087950","1483087968","1483087949","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172685","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088017","1483088018","1483088034","1483088017","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172755","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088386","1483088387","1483088402","1483088386","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172985","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089779","1483089780","1483089795","1483089779","1","8","0","-1","15","1","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173021","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089939","1483089940","1483089959","1483089939","1","8","0","-1","19","1","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173066","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090173","1483090174","1483090197","1483090173","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173208","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091281","1483091282","1483091302","1483091281","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173218","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091326","1483091327","1483091350","1483091326","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173353","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092093","1483092094","1483092110","1483092093","1","8","0","-1","16","1","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173513","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093000","1483093001","1483093025","1483093000","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173525","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093043","1483093044","1483093065","1483093043","1","8","0","-1","21","1","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173809","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095158","1483095159","1483095183","1483095158","1","8","0","-1","24","1","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174061","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097153","1483097154","1483097177","1483097153","1","8","0","-1","23","1","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174190","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098102","1483098103","1483098131","1483098102","1","8","0","-1","28","1","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174835","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103033","1483103034","1483103051","1483103033","1","8","0","-1","17","1","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175480","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108246","1483108247","1483108265","1483108246","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175513","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108405","1483108406","1483108426","1483108405","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176073","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112848","1483112849","1483112876","1483112848","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176230","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114048","1483114049","1483114067","1483114048","1","8","0","-1","18","1","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176239","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114100","1483114101","1483114121","1483114100","1","8","0","-1","20","1","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176541","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116042","1483116043","1483116070","1483116042","1","8","0","-1","27","1","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1004480","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483059241","1483059266","1483059279","1483059241","1","8","0","-1","13","25","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004562","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483060223","1483060227","1483060234","1483060223","1","8","0","-1","7","4","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004584","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483060445","1483060468","1483060491","1483060445","1","8","0","-1","23","23","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004750","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483062978","1483062992","1483063008","1483062978","1","8","0","-1","16","14","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005003","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483066696","1483066718","1483066747","1483066696","1","8","0","-1","29","22","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005034","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067310","1483067319","1483067336","1483067310","1","8","0","-1","17","9","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005049","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067665","1483067687","1483067695","1483067665","1","8","0","-1","8","22","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005212","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483069489","1483069490","1483069502","1483069489","1","8","0","-1","12","1","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005246","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483069957","1483069971","1483069987","1483069957","1","8","0","-1","16","14","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005404","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483072118","1483072135","1483072163","1483072118","1","8","0","-1","28","17","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005415","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483072355","1483072375","1483072393","1483072355","1","8","0","-1","18","20","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005545","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483074149","1483074178","1483074205","1483074149","1","8","0","-1","27","29","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005594","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483074874","1483074899","1483074928","1483074874","1","8","0","-1","29","25","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005688","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483075965","1483075981","1483075993","1483075965","1","8","0","-1","12","16","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005713","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483076335","1483076342","1483076349","1483076335","1","8","0","-1","7","7","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005818","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483077883","1483077904","1483077928","1483077883","1","8","0","-1","24","21","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005819","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483077896","1483077904","1483077913","1483077896","1","8","0","-1","9","8","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005859","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483078372","1483078385","1483078394","1483078372","1","8","0","-1","9","13","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005903","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483078840","1483078866","1483078875","1483078840","1","8","0","-1","9","26","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006074","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483081016","1483081030","1483081036","1483081016","1","8","0","-1","6","14","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006410","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483085697","1483085717","1483085745","1483085697","1","8","0","-1","28","20","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006558","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483087856","1483087881","1483087910","1483087856","1","8","0","-1","29","25","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006789","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483091097","1483091126","1483091133","1483091097","1","8","0","-1","7","29","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006790","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483091114","1483091126","1483091152","1483091114","1","8","0","-1","26","12","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006937","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093037","1483093049","1483093078","1483093037","1","8","0","-1","29","12","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006996","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093764","1483093770","1483093792","1483093764","1","8","0","-1","22","6","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007082","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483094961","1483094972","1483094983","1483094961","1","8","0","-1","11","11","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007135","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483095684","1483095693","1483095721","1483095684","1","8","0","-1","28","9","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007216","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483096750","1483096774","1483096803","1483096750","1","8","0","-1","29","24","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007218","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483096772","1483096774","1483096786","1483096772","1","8","0","-1","12","2","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007275","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483097363","1483097375","1483097393","1483097363","1","8","0","-1","18","12","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007732","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483104105","1483104107","1483104113","1483104105","1","8","0","-1","6","2","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008017","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483108053","1483108074","1483108081","1483108053","1","8","0","-1","7","21","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008228","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483111192","1483111200","1483111210","1483111192","1","8","0","-1","10","8","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008273","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483111774","1483111801","1483111815","1483111774","1","8","0","-1","14","27","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008309","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483112273","1483112282","1483112289","1483112273","1","8","0","-1","7","9","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008418","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483113696","1483113724","1483113752","1483113696","1","8","0","-1","28","28","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008445","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483114298","1483114325","1483114331","1483114298","1","8","0","-1","6","27","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008582","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483116344","1483116368","1483116392","1483116344","1","8","0","-1","24","24","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008649","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483116821","1483116849","1483116862","1483116821","1","8","0","-1","13","28","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008917","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483119118","1483119133","1483119141","1483119118","1","8","0","-1","8","15","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008964","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483119492","1483119493","1483119511","1483119492","1","8","0","-1","18","1","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008993","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483119707","1483119733","1483119761","1483119707","1","8","0","-1","28","26","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009356","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483123450","1483123458","1483123466","1483123450","1","8","0","-1","8","8","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009467","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124756","1483124780","1483124809","1483124756","1","8","0","-1","29","24","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009584","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126320","1483126342","1483126351","1483126320","1","8","0","-1","9","22","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009600","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126556","1483126582","1483126590","1483126556","1","8","0","-1","8","26","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009718","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483128254","1483128265","1483128276","1483128254","1","8","0","-1","11","11","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010004","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483131847","1483131869","1483131889","1483131847","1","8","0","-1","20","22","160","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010099","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133181","1483133191","1483133203","1483133181","1","8","0","-1","12","10","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010142","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133648","1483133672","1483133677","1483133648","1","8","0","-1","5","24","40","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010190","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483134377","1483134392","1483134400","1483134377","1","8","0","-1","8","15","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010215","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483134742","1483134753","1483134780","1483134742","1","8","0","-1","27","11","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010244","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483135095","1483135113","1483135134","1483135095","1","8","0","-1","21","18","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010306","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483135813","1483135834","1483135860","1483135813","1","8","0","-1","26","21","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010658","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140620","1483140640","1483140656","1483140620","1","8","0","-1","16","20","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010675","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140865","1483140881","1483140905","1483140865","1","8","0","-1","24","16","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006471","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483086629","1483086630","1483086652","1483086629","1","8","0","-1","22","1","176","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009156","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483121371","1483121375","1483121404","1483121371","1","8","0","-1","29","4","232","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2281771","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114012","1483114013","1483114023","1483114012","1","12","0","-1","10","1","120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281976","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115748","1483115749","1483115757","1483115748","1","12","0","-1","8","1","96","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283356","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127270","1483127271","1483127282","1483127270","1","12","0","-1","11","1","132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284510","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138619","1483138620","1483138631","1483138619","1","12","0","-1","11","1","132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284670","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140308","1483140309","1483140321","1483140308","1","12","0","-1","12","1","144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991371","Mortorq","UTC","","Martin, Crag","Screwdriver","cheese","1483129165","1483129170","1483129172","1483129165","1","20","0","-1","2","5","40","0","0:0","COMPLETED","1","62.50Gn","259200","panettone","Geosciences","Earth Sciences","Geophysics"],["991464","Mortorq","UTC","","Martin, Crag","Screwdriver","cheese","1483129587","1483129591","1483129595","1483129587","1","20","0","-1","4","4","80","0","0:0","COMPLETED","1","62.50Gn","259200","panettone","Geosciences","Earth Sciences","Geophysics"],["1008512","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","banana-cream","1483115256","1483115259","1483115275","1483115256","1","20","0","-1","16","3","320","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1008485","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483114756","1483114759","1483114773","1483114756","1","20","0","-1","14","3","280","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1008494","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483114970","1483114974","1483114988","1483114970","1","20","0","-1","14","4","280","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1007845","Posidriv","UTC","","Warbler, Sardinian","Screwdriver","apple","1483105711","1483105714","1483105719","1483105711","2","16","0","-1","5","3","80","0","0:0","COMPLETED","16","40000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6108348","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","green-grape","1483057648","1483057651","1483057672","1483057648","2","24","0","-1","21","3","504","0","0:0","COMPLETED","24","2147486448Mn","3600","potbrood","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["6108751","Robertson","UTC","","Moorhen","Screwdriver","curry","1483072813","1483072876","1483072889","1483072813","1","1","0","-1","13","63","13","0","0:0","COMPLETED","1","2147486448Mn","18000","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108752","Robertson","UTC","","Moorhen","Screwdriver","curry","1483072827","1483072876","1483072890","1483072827","1","1","0","-1","14","49","14","0","0:0","COMPLETED","1","2147486448Mn","19800","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111037[50]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483126383","1483126395","1483125913","1","1","0","-1","12","471","12","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[55]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483126383","1483126409","1483125913","1","1","0","-1","26","471","26","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[119]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483126944","1483126962","1483125913","1","1","0","-1","18","1032","18","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[120]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483126944","1483126962","1483125913","1","1","0","-1","18","1032","18","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[141]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127093","1483127107","1483125913","1","1","0","-1","14","1181","14","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[185]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127515","1483127542","1483125913","1","1","0","-1","27","1603","27","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[186]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127515","1483127526","1483125913","1","1","0","-1","11","1603","11","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[198]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127515","1483127530","1483125913","1","1","0","-1","15","1603","15","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[203]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127653","1483127676","1483125913","1","1","0","-1","23","1741","23","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[2]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130279","1483130306","1483128563","1","1","0","-1","27","1719","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112235","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483134122","1483134408","1483134426","1483134122","1","1","0","-1","18","286","18","0","0:0","COMPLETED","1","2147531648Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112280","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483134462","1483134542","1483134563","1483134462","1","1","0","-1","21","80","21","0","0:0","COMPLETED","1","2147486448Mn","3600","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[2]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135712","1483135739","1483135648","1","1","0","-1","27","64","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[10]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135840","1483135853","1483135648","1","1","0","-1","13","192","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[15]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135840","1483135868","1483135648","1","1","0","-1","28","192","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[16]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135840","1483135866","1483135648","1","1","0","-1","26","192","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[17]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135968","1483135989","1483135648","1","1","0","-1","21","320","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[22]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483135968","1483135997","1483135648","1","1","0","-1","29","320","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[25]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483136098","1483136123","1483135648","1","1","0","-1","25","450","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[37]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483136228","1483136255","1483135648","1","1","0","-1","27","580","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[45]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483136627","1483136638","1483135648","1","1","0","-1","11","979","11","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[50]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483136905","1483136908","1483135648","1","1","0","-1","3","1257","3","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[52]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137041","1483137058","1483135648","1","1","0","-1","17","1393","17","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[55]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137176","1483137195","1483135648","1","1","0","-1","19","1528","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[61]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137306","1483137334","1483135648","1","1","0","-1","28","1658","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[64]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137306","1483137335","1483135648","1","1","0","-1","29","1658","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[66]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137306","1483137335","1483135648","1","1","0","-1","29","1658","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[78]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137438","1483137467","1483135648","1","1","0","-1","29","1790","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[84]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137438","1483137464","1483135648","1","1","0","-1","26","1790","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6110915[4]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122066","1483122574","1483122578","1483122068","1","1","0","-1","4","508","4","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110916[4]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122115","1483122967","1483122975","1483122115","1","1","0","-1","8","852","8","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110916[7]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122115","1483123513","1483123523","1483122115","1","1","0","-1","10","1398","10","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110917[4]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122187","1483123513","1483123523","1483122187","1","1","0","-1","10","1326","10","0","0:0","COMPLETED","1","8000Mn","72000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110917[7]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122187","1483123513","1483123525","1483122187","1","1","0","-1","12","1326","12","0","0:0","COMPLETED","1","8000Mn","72000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110918[4]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122225","1483123648","1483123658","1483122231","1","1","0","-1","10","1423","10","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110918[7]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483122225","1483123789","1483123798","1483122231","1","1","0","-1","9","1564","9","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["985392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116330","1483116373","1483116394","1483116330","1","8","0","-1","21","43","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116330","1483116379","1483116400","1483116330","1","8","0","-1","21","49","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116331","1483116380","1483116401","1483116331","1","8","0","-1","21","49","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116333","1483116428","1483116457","1483116333","1","8","0","-1","29","95","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116333","1483116460","1483116485","1483116333","1","8","0","-1","25","127","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116336","1483116510","1483116539","1483116336","1","8","0","-1","29","174","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116336","1483116531","1483116551","1483116336","1","8","0","-1","20","195","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116340","1483116569","1483116592","1483116340","1","8","0","-1","23","229","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116340","1483116593","1483116620","1483116340","1","8","0","-1","27","253","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116341","1483116599","1483116625","1483116341","1","8","0","-1","26","258","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116341","1483116606","1483116627","1483116341","1","8","0","-1","21","265","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116342","1483116625","1483116647","1483116342","1","8","0","-1","22","283","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116342","1483116647","1483116670","1483116342","1","8","0","-1","23","305","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116344","1483116683","1483116711","1483116344","1","8","0","-1","28","339","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116345","1483116705","1483116729","1483116345","1","8","0","-1","24","360","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116347","1483116763","1483116791","1483116347","1","8","0","-1","28","416","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116347","1483116773","1483116801","1483116347","1","8","0","-1","28","426","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116348","1483116786","1483116815","1483116348","1","8","0","-1","29","438","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116351","1483116857","1483116878","1483116351","1","8","0","-1","21","506","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116352","1483116896","1483116914","1483116352","1","8","0","-1","18","544","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116353","1483116914","1483116943","1483116353","1","8","0","-1","29","561","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116353","1483116915","1483116938","1483116353","1","8","0","-1","23","562","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116354","1483116922","1483116941","1483116354","1","8","0","-1","19","568","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116354","1483116924","1483116945","1483116354","1","8","0","-1","21","570","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116355","1483116933","1483116962","1483116355","1","8","0","-1","29","578","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116357","1483116962","1483116988","1483116357","1","8","0","-1","26","605","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116358","1483116983","1483117004","1483116358","1","8","0","-1","21","625","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116358","1483116989","1483117018","1483116358","1","8","0","-1","29","631","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116359","1483117005","1483117026","1483116359","1","8","0","-1","21","646","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116359","1483117006","1483117035","1483116359","1","8","0","-1","29","647","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116360","1483117014","1483117033","1483116360","1","8","0","-1","19","654","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116360","1483117019","1483117048","1483116360","1","8","0","-1","29","659","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116363","1483117036","1483117061","1483116363","1","8","0","-1","25","673","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116363","1483117049","1483117073","1483116363","1","8","0","-1","24","686","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116363","1483117061","1483117080","1483116363","1","8","0","-1","19","698","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116364","1483117065","1483117092","1483116364","1","8","0","-1","27","701","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116364","1483117066","1483117091","1483116364","1","8","0","-1","25","702","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116365","1483117071","1483117090","1483116365","1","8","0","-1","19","706","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116365","1483117074","1483117096","1483116365","1","8","0","-1","22","709","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116365","1483117076","1483117096","1483116365","1","8","0","-1","20","711","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116366","1483117081","1483117099","1483116366","1","8","0","-1","18","715","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116366","1483117091","1483117118","1483116366","1","8","0","-1","27","725","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116366","1483117092","1483117117","1483116366","1","8","0","-1","25","726","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116368","1483117118","1483117142","1483116368","1","8","0","-1","24","750","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116369","1483117119","1483117148","1483116369","1","8","0","-1","29","750","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116369","1483117128","1483117147","1483116369","1","8","0","-1","19","759","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116371","1483117146","1483117163","1483116371","1","8","0","-1","17","775","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116374","1483117176","1483117205","1483116374","1","8","0","-1","29","802","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116374","1483117178","1483117197","1483116374","1","8","0","-1","19","804","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116375","1483117181","1483117203","1483116375","1","8","0","-1","22","806","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116375","1483117183","1483117209","1483116375","1","8","0","-1","26","808","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116376","1483117199","1483117222","1483116376","1","8","0","-1","23","823","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985719","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116377","1483117205","1483117225","1483116377","1","8","0","-1","20","828","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985721","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116377","1483117210","1483117227","1483116377","1","8","0","-1","17","833","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116378","1483117214","1483117234","1483116378","1","8","0","-1","20","836","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116378","1483117222","1483117246","1483116378","1","8","0","-1","24","844","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116380","1483117235","1483117261","1483116380","1","8","0","-1","26","855","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116381","1483117246","1483117270","1483116381","1","8","0","-1","24","865","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116381","1483117257","1483117284","1483116381","1","8","0","-1","27","876","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116381","1483117262","1483117288","1483116381","1","8","0","-1","26","881","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116382","1483117280","1483117309","1483116382","1","8","0","-1","29","898","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116382","1483117285","1483117313","1483116382","1","8","0","-1","28","903","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116393","1483117514","1483117540","1483116393","1","8","0","-1","26","1121","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116413","1483118095","1483118124","1483116413","1","8","0","-1","29","1682","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116414","1483118102","1483118129","1483116414","1","8","0","-1","27","1688","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116422","1483118206","1483118227","1483116422","1","8","0","-1","21","1784","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176671","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116339","1483116416","1483116441","1483116339","1","8","0","-1","25","77","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176673","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116339","1483116441","1483116465","1483116339","1","8","0","-1","24","102","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176675","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116339","1483116465","1483116487","1483116339","1","8","0","-1","22","126","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176677","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116339","1483116487","1483116508","1483116339","1","8","0","-1","21","148","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176726","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116352","1483116508","1483116522","1483116352","1","8","0","-1","14","156","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176734","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116353","1483116552","1483116577","1483116353","1","8","0","-1","25","199","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176737","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116354","1483116578","1483116593","1483116354","1","8","0","-1","15","224","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176741","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116355","1483116593","1483116612","1483116355","1","8","0","-1","19","238","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176746","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116356","1483116612","1483116636","1483116356","1","8","0","-1","24","256","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176750","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116357","1483116636","1483116656","1483116357","1","8","0","-1","20","279","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176754","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116357","1483116657","1483116677","1483116357","1","8","0","-1","20","300","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176757","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116358","1483116677","1483116698","1483116358","1","8","0","-1","21","319","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176762","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116359","1483116698","1483116712","1483116359","1","8","0","-1","14","339","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176766","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116360","1483116712","1483116724","1483116360","1","8","0","-1","12","352","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176770","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116360","1483116725","1483116745","1483116360","1","8","0","-1","20","365","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176777","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116362","1483116780","1483116804","1483116362","1","8","0","-1","24","418","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176781","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116362","1483116805","1483116821","1483116362","1","8","0","-1","16","443","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176785","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116363","1483116822","1483116836","1483116363","1","8","0","-1","14","459","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176788","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116364","1483116837","1483116849","1483116364","1","8","0","-1","12","473","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176792","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116364","1483116849","1483116874","1483116364","1","8","0","-1","25","485","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176796","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116365","1483116874","1483116896","1483116365","1","8","0","-1","22","509","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176800","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116366","1483116896","1483116912","1483116366","1","8","0","-1","16","530","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176804","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116367","1483116912","1483116932","1483116367","1","8","0","-1","20","545","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176815","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116369","1483117033","1483117054","1483116369","1","8","0","-1","21","664","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176819","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116369","1483117054","1483117074","1483116369","1","8","0","-1","20","685","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176822","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116370","1483117075","1483117094","1483116370","1","8","0","-1","19","705","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176826","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116371","1483117095","1483117121","1483116371","1","8","0","-1","26","724","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176830","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116372","1483117121","1483117134","1483116372","1","8","0","-1","13","749","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176834","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116372","1483117135","1483117164","1483116372","1","8","0","-1","29","763","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176837","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116373","1483117164","1483117193","1483116373","1","8","0","-1","29","791","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176842","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116374","1483117193","1483117219","1483116374","1","8","0","-1","26","819","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176846","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116375","1483117220","1483117238","1483116375","1","8","0","-1","18","845","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176850","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116375","1483117239","1483117254","1483116375","1","8","0","-1","15","864","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176853","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116376","1483117254","1483117274","1483116376","1","8","0","-1","20","878","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176857","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116377","1483117274","1483117294","1483116377","1","8","0","-1","20","897","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176862","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116378","1483117294","1483117306","1483116378","1","8","0","-1","12","916","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176866","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116378","1483117306","1483117324","1483116378","1","8","0","-1","18","928","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176870","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116379","1483117325","1483117346","1483116379","1","8","0","-1","21","946","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176875","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116380","1483117347","1483117365","1483116380","1","8","0","-1","18","967","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176880","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116381","1483117366","1483117395","1483116381","1","8","0","-1","29","985","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176891","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116383","1483117467","1483117495","1483116383","1","8","0","-1","28","1084","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176895","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116384","1483117495","1483117517","1483116384","1","8","0","-1","22","1111","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176901","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116385","1483117556","1483117582","1483116385","1","8","0","-1","26","1171","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176921","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116389","1483117738","1483117767","1483116389","1","8","0","-1","29","1349","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176943","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116393","1483117976","1483117994","1483116393","1","8","0","-1","18","1583","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176952","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116395","1483118026","1483118048","1483116395","1","8","0","-1","22","1631","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176963","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116397","1483118136","1483118165","1483116397","1","8","0","-1","29","1739","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1004250","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483056101","1483056141","1483056160","1483056101","1","8","0","-1","19","40","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004277","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483056525","1483056621","1483056636","1483056525","1","8","0","-1","15","96","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004291","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483056675","1483056742","1483056759","1483056675","1","8","0","-1","17","67","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004332","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483057243","1483057343","1483057358","1483057243","1","8","0","-1","15","100","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004336","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483057290","1483057343","1483057371","1483057290","1","8","0","-1","28","53","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004376","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483057838","1483057943","1483057950","1483057838","1","8","0","-1","7","105","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004379","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483057938","1483058064","1483058077","1483057938","1","8","0","-1","13","126","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004392","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058149","1483058184","1483058196","1483058149","1","8","0","-1","12","35","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004416","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058366","1483058424","1483058434","1483058366","1","8","0","-1","10","58","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004417","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058388","1483058424","1483058451","1483058388","1","8","0","-1","27","36","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004425","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058553","1483058665","1483058683","1483058553","1","8","0","-1","18","112","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004427","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058577","1483058665","1483058694","1483058577","1","8","0","-1","29","88","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004428","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058587","1483058665","1483058691","1483058587","1","8","0","-1","26","78","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004435","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058669","1483058785","1483058804","1483058669","1","8","0","-1","19","116","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004449","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058865","1483058905","1483058916","1483058865","1","8","0","-1","11","40","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004450","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483058878","1483059025","1483059033","1483058878","1","8","0","-1","8","147","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004486","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483059270","1483059386","1483059402","1483059270","1","8","0","-1","16","116","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004491","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483059329","1483059386","1483059399","1483059329","1","8","0","-1","13","57","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004547","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483060049","1483060107","1483060116","1483060049","1","8","0","-1","9","58","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004637","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483061076","1483061189","1483061201","1483061076","1","8","0","-1","12","113","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004666","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483061431","1483061549","1483061559","1483061431","1","8","0","-1","10","118","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004669","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483061467","1483061549","1483061561","1483061467","1","8","0","-1","12","82","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004689","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483061885","1483062030","1483062052","1483061885","1","8","0","-1","22","145","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004747","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483062889","1483062992","1483062998","1483062889","1","8","0","-1","6","103","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004761","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483063074","1483063112","1483063127","1483063074","1","8","0","-1","15","38","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004777","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483063256","1483063352","1483063374","1483063256","1","8","0","-1","22","96","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004778","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483063285","1483063352","1483063380","1483063285","1","8","0","-1","28","67","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004801","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483063607","1483063713","1483063728","1483063607","1","8","0","-1","15","106","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004820","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483064010","1483064073","1483064082","1483064010","1","8","0","-1","9","63","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004825","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483064105","1483064193","1483064215","1483064105","1","8","0","-1","22","88","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004870","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483064980","1483065035","1483065042","1483064980","1","8","0","-1","7","55","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004911","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483065443","1483065516","1483065528","1483065443","1","8","0","-1","12","73","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004946","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483065792","1483065876","1483065886","1483065792","1","8","0","-1","10","84","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004973","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483066153","1483066237","1483066261","1483066153","1","8","0","-1","24","84","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004974","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483066176","1483066237","1483066260","1483066176","1","8","0","-1","23","61","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004998","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483066653","1483066718","1483066725","1483066653","1","8","0","-1","7","65","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005009","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483066784","1483066838","1483066854","1483066784","1","8","0","-1","16","54","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005048","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067639","1483067687","1483067694","1483067639","1","8","0","-1","7","48","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005052","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067743","1483067807","1483067820","1483067743","1","8","0","-1","13","64","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005070","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067809","1483067927","1483067931","1483067809","1","8","0","-1","4","118","32","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005108","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483068015","1483068168","1483068194","1483068015","1","8","0","-1","26","153","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005112","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483068061","1483068168","1483068194","1483068061","1","8","0","-1","26","107","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005122","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483068217","1483068288","1483068296","1483068217","1","8","0","-1","8","71","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005166","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483068901","1483069009","1483069015","1483068901","1","8","0","-1","6","108","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005169","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483068963","1483069009","1483069028","1483068963","1","8","0","-1","19","46","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005218","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483069540","1483069611","1483069638","1483069540","1","8","0","-1","27","71","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005255","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483070141","1483070212","1483070235","1483070141","1","8","0","-1","23","71","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005281","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483070590","1483070692","1483070708","1483070590","1","8","0","-1","16","102","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005312","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483071021","1483071053","1483071061","1483071021","1","8","0","-1","8","32","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005344","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483071368","1483071413","1483071435","1483071368","1","8","0","-1","22","45","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005364","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483071549","1483071774","1483071780","1483071549","1","8","0","-1","6","225","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005369","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483071600","1483071654","1483071673","1483071600","1","8","0","-1","19","54","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005388","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483071896","1483072014","1483072026","1483071896","1","8","0","-1","12","118","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005413","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483072312","1483072375","1483072388","1483072312","1","8","0","-1","13","63","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005458","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483073011","1483073096","1483073110","1483073011","1","8","0","-1","14","85","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005488","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483073442","1483073577","1483073585","1483073442","1","8","0","-1","8","135","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005498","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483073598","1483073697","1483073725","1483073598","1","8","0","-1","28","99","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005544","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483074136","1483074178","1483074186","1483074136","1","8","0","-1","8","42","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005589","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483074788","1483074899","1483074907","1483074788","1","8","0","-1","8","111","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005621","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483075190","1483075260","1483075269","1483075190","1","8","0","-1","9","70","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005677","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483075805","1483075981","1483075990","1483075805","1","8","0","-1","9","176","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005678","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483075845","1483075981","1483076004","1483075845","1","8","0","-1","23","136","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005703","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483076140","1483076222","1483076233","1483076140","1","8","0","-1","11","82","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005711","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483076250","1483076342","1483076365","1483076250","1","8","0","-1","23","92","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005723","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483076487","1483076582","1483076603","1483076487","1","8","0","-1","21","95","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005767","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483077100","1483077303","1483077315","1483077100","1","8","0","-1","12","203","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005781","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483077284","1483077424","1483077438","1483077284","1","8","0","-1","14","140","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005830","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483078028","1483078145","1483078156","1483078028","1","8","0","-1","11","117","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005839","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483078162","1483078265","1483078281","1483078162","1","8","0","-1","16","103","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005958","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483079410","1483079467","1483079475","1483079410","1","8","0","-1","8","57","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005973","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483079569","1483079707","1483079713","1483079569","1","8","0","-1","6","138","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006022","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483080315","1483080429","1483080439","1483080315","1","8","0","-1","10","114","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006027","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483080361","1483080429","1483080457","1483080361","1","8","0","-1","28","68","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006115","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483081557","1483081630","1483081638","1483081557","1","8","0","-1","8","73","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006154","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483082191","1483082232","1483082247","1483082191","1","8","0","-1","15","41","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006175","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483082587","1483082712","1483082720","1483082587","1","8","0","-1","8","125","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006176","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483082629","1483082712","1483082732","1483082629","1","8","0","-1","20","83","160","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006236","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483083204","1483083313","1483083337","1483083204","1","8","0","-1","24","109","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006240","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483083234","1483083313","1483083322","1483083234","1","8","0","-1","9","79","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006282","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483083976","1483084035","1483084049","1483083976","1","8","0","-1","14","59","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006335","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483084716","1483084756","1483084764","1483084716","1","8","0","-1","8","40","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006336","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483084730","1483084876","1483084890","1483084730","1","8","0","-1","14","146","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006378","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483085281","1483085357","1483085364","1483085281","1","8","0","-1","7","76","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006392","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483085407","1483085477","1483085484","1483085407","1","8","0","-1","7","70","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006406","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483085605","1483085717","1483085746","1483085605","1","8","0","-1","29","112","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006408","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483085657","1483085717","1483085735","1483085657","1","8","0","-1","18","60","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006446","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483086227","1483086318","1483086328","1483086227","1","8","0","-1","10","91","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006469","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483086591","1483086679","1483086707","1483086591","1","8","0","-1","28","88","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006501","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483087091","1483087160","1483087166","1483087091","1","8","0","-1","6","69","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006546","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483087587","1483087761","1483087771","1483087587","1","8","0","-1","10","174","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006559","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483087896","1483088001","1483088008","1483087896","1","8","0","-1","7","105","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006581","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483088172","1483088242","1483088248","1483088172","1","8","0","-1","6","70","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006595","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483088376","1483088482","1483088491","1483088376","1","8","0","-1","9","106","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006636","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483088987","1483089083","1483089092","1483088987","1","8","0","-1","9","96","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006702","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483089676","1483089804","1483089815","1483089676","1","8","0","-1","11","128","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006726","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483090129","1483090164","1483090185","1483090129","1","8","0","-1","21","35","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006737","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483090372","1483090405","1483090418","1483090372","1","8","0","-1","13","33","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006756","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483090570","1483090645","1483090674","1483090570","1","8","0","-1","29","75","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006793","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483091130","1483091246","1483091268","1483091130","1","8","0","-1","22","116","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006796","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483091146","1483091246","1483091268","1483091146","1","8","0","-1","22","100","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006837","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483091596","1483091727","1483091735","1483091596","1","8","0","-1","8","131","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006890","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483092375","1483092448","1483092454","1483092375","1","8","0","-1","6","73","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006922","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483092863","1483092929","1483092935","1483092863","1","8","0","-1","6","66","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006946","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093204","1483093289","1483093298","1483093204","1","8","0","-1","9","85","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006951","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093247","1483093289","1483093296","1483093247","1","8","0","-1","7","42","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006969","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093427","1483093530","1483093540","1483093427","1","8","0","-1","10","103","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006971","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093490","1483093530","1483093538","1483093490","1","8","0","-1","8","40","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006997","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483093775","1483093890","1483093898","1483093775","1","8","0","-1","8","115","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007036","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483094132","1483094251","1483094263","1483094132","1","8","0","-1","12","119","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007085","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483095004","1483095092","1483095106","1483095004","1","8","0","-1","14","88","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007157","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483095971","1483096053","1483096061","1483095971","1","8","0","-1","8","82","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007205","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483096619","1483096654","1483096661","1483096619","1","8","0","-1","7","35","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007224","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483096846","1483096895","1483096924","1483096846","1","8","0","-1","29","49","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007246","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483097094","1483097135","1483097160","1483097094","1","8","0","-1","25","41","200","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007308","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483097910","1483097976","1483097996","1483097910","1","8","0","-1","20","66","160","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007313","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483097946","1483097976","1483097990","1483097946","1","8","0","-1","14","30","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007386","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483098969","1483099058","1483099069","1483098969","1","8","0","-1","11","89","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007409","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483099235","1483099299","1483099313","1483099235","1","8","0","-1","14","64","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007454","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483099947","1483100020","1483100028","1483099947","1","8","0","-1","8","73","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007479","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483100224","1483100260","1483100272","1483100224","1","8","0","-1","12","36","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007511","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483100641","1483100741","1483100763","1483100641","1","8","0","-1","22","100","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007526","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483100781","1483100861","1483100868","1483100781","1","8","0","-1","7","80","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007566","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483101339","1483101462","1483101469","1483101339","1","8","0","-1","7","123","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007611","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483102115","1483102183","1483102188","1483102115","1","8","0","-1","5","68","40","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007652","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483102592","1483102664","1483102677","1483102592","1","8","0","-1","13","72","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007677","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483102950","1483103145","1483103152","1483102950","1","8","0","-1","7","195","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007685","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483103092","1483103145","1483103163","1483103092","1","8","0","-1","18","53","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007698","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483103256","1483103385","1483103404","1483103256","1","8","0","-1","19","129","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007772","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483104569","1483104708","1483104714","1483104569","1","8","0","-1","6","139","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007788","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483104790","1483104948","1483104966","1483104790","1","8","0","-1","18","158","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007818","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483105256","1483105309","1483105318","1483105256","1","8","0","-1","9","53","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007873","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483106031","1483106150","1483106164","1483106031","1","8","0","-1","14","119","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007881","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483106178","1483106271","1483106295","1483106178","1","8","0","-1","24","93","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007900","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483106531","1483106631","1483106653","1483106531","1","8","0","-1","22","100","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007922","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483106717","1483106751","1483106770","1483106717","1","8","0","-1","19","34","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007935","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483106912","1483106992","1483107017","1483106912","1","8","0","-1","25","80","200","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007941","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483107003","1483107112","1483107130","1483107003","1","8","0","-1","18","109","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007964","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483107410","1483107473","1483107483","1483107410","1","8","0","-1","10","63","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007971","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483107522","1483107593","1483107622","1483107522","1","8","0","-1","29","71","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008002","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483107851","1483107954","1483107961","1483107851","1","8","0","-1","7","103","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008015","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483107997","1483108074","1483108089","1483107997","1","8","0","-1","15","77","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008022","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483108140","1483108194","1483108222","1483108140","1","8","0","-1","28","54","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008035","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483108314","1483108435","1483108450","1483108314","1","8","0","-1","15","121","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008066","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483108710","1483108795","1483108802","1483108710","1","8","0","-1","7","85","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008103","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483109350","1483109396","1483109403","1483109350","1","8","0","-1","7","46","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008160","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483110153","1483110238","1483110247","1483110153","1","8","0","-1","9","85","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008181","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483110548","1483110598","1483110622","1483110548","1","8","0","-1","24","50","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008215","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483110982","1483111079","1483111089","1483110982","1","8","0","-1","10","97","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008220","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483111082","1483111200","1483111205","1483111082","1","8","0","-1","5","118","40","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008229","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483111201","1483111320","1483111347","1483111201","1","8","0","-1","27","119","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008261","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483111621","1483111681","1483111691","1483111621","1","8","0","-1","10","60","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008367","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483113068","1483113123","1483113131","1483113068","1","8","0","-1","8","55","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008385","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483113272","1483113364","1483113367","1483113272","1","8","0","-1","3","92","24","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008399","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483113455","1483113604","1483113613","1483113455","1","8","0","-1","9","149","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008402","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483113479","1483113604","1483113608","1483113479","1","8","0","-1","4","125","32","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008446","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483114337","1483114445","1483114471","1483114337","1","8","0","-1","26","108","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008505","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483115126","1483115167","1483115174","1483115126","1","8","0","-1","7","41","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008522","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483115318","1483115407","1483115421","1483115318","1","8","0","-1","14","89","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008539","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483115569","1483115647","1483115665","1483115569","1","8","0","-1","18","78","144","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008547","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483115607","1483115647","1483115674","1483115607","1","8","0","-1","27","40","216","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008569","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483116071","1483116128","1483116141","1483116071","1","8","0","-1","13","57","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008635","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483116690","1483116729","1483116757","1483116690","1","8","0","-1","28","39","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008752","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483117589","1483117690","1483117719","1483117589","1","8","0","-1","29","101","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008761","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483117708","1483117811","1483117835","1483117708","1","8","0","-1","24","103","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008835","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483118300","1483118411","1483118428","1483118300","1","8","0","-1","17","111","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008899","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483118941","1483119012","1483119021","1483118941","1","8","0","-1","9","71","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008901","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483118971","1483119012","1483119018","1483118971","1","8","0","-1","6","41","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008938","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483119331","1483119373","1483119385","1483119331","1","8","0","-1","12","42","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009011","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483119863","1483119974","1483120000","1483119863","1","8","0","-1","26","111","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009045","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483120108","1483120214","1483120231","1483120108","1","8","0","-1","17","106","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009052","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483120224","1483120334","1483120358","1483120224","1","8","0","-1","24","110","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009082","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483120563","1483120695","1483120708","1483120563","1","8","0","-1","13","132","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009090","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483120671","1483120815","1483120835","1483120671","1","8","0","-1","20","144","160","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009139","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483121139","1483121175","1483121184","1483121139","1","8","0","-1","9","36","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009196","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483121772","1483121896","1483121905","1483121772","1","8","0","-1","9","124","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009204","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483121858","1483121896","1483121921","1483121858","1","8","0","-1","25","38","200","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009226","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483122056","1483122137","1483122163","1483122056","1","8","0","-1","26","81","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009282","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483122548","1483122617","1483122627","1483122548","1","8","0","-1","10","69","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009298","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483122682","1483122737","1483122752","1483122682","1","8","0","-1","15","55","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009379","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483123708","1483123819","1483123834","1483123708","1","8","0","-1","15","111","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009416","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124190","1483124299","1483124308","1483124190","1","8","0","-1","9","109","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009441","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124484","1483124540","1483124563","1483124484","1","8","0","-1","23","56","184","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009450","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124569","1483124660","1483124688","1483124569","1","8","0","-1","28","91","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009465","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124724","1483124780","1483124797","1483124724","1","8","0","-1","17","56","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009477","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124862","1483124900","1483124917","1483124862","1","8","0","-1","17","38","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009478","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483124872","1483125020","1483125029","1483124872","1","8","0","-1","9","148","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009589","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126409","1483126462","1483126470","1483126409","1","8","0","-1","8","53","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009592","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126428","1483126462","1483126479","1483126428","1","8","0","-1","17","34","136","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009613","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126677","1483126823","1483126829","1483126677","1","8","0","-1","6","146","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009640","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483126978","1483127063","1483127082","1483126978","1","8","0","-1","19","85","152","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009650","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483127162","1483127303","1483127325","1483127162","1","8","0","-1","22","141","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009679","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483127574","1483127784","1483127813","1483127574","1","8","0","-1","29","210","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009721","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483128277","1483128385","1483128407","1483128277","1","8","0","-1","22","108","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009746","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483128523","1483128625","1483128633","1483128523","1","8","0","-1","8","102","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009753","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483128685","1483128745","1483128766","1483128685","1","8","0","-1","21","60","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009802","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483129248","1483129346","1483129357","1483129248","1","8","0","-1","11","98","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009826","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483129642","1483129707","1483129736","1483129642","1","8","0","-1","29","65","232","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009841","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483129869","1483129947","1483129973","1483129869","1","8","0","-1","26","78","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009898","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483130558","1483130668","1483130693","1483130558","1","8","0","-1","25","110","200","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009905","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483130620","1483130668","1483130678","1483130620","1","8","0","-1","10","48","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009907","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483130636","1483130668","1483130692","1483130636","1","8","0","-1","24","32","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009955","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483131189","1483131269","1483131291","1483131189","1","8","0","-1","22","80","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009966","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483131291","1483131389","1483131396","1483131291","1","8","0","-1","7","98","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009975","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483131469","1483131509","1483131518","1483131469","1","8","0","-1","9","40","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010028","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483132299","1483132350","1483132356","1483132299","1","8","0","-1","6","51","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010073","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483132903","1483132951","1483132961","1483132903","1","8","0","-1","10","48","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010100","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133197","1483133311","1483133327","1483133197","1","8","0","-1","16","114","128","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010105","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133234","1483133311","1483133332","1483133234","1","8","0","-1","21","77","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010118","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133380","1483133431","1483133441","1483133380","1","8","0","-1","10","51","80","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010120","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483133395","1483133431","1483133457","1483133395","1","8","0","-1","26","36","208","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010192","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483134427","1483134513","1483134526","1483134427","1","8","0","-1","13","86","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010211","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483134649","1483134753","1483134767","1483134649","1","8","0","-1","14","104","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010267","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483135405","1483135474","1483135483","1483135405","1","8","0","-1","9","69","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010329","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483136080","1483136195","1483136207","1483136080","1","8","0","-1","12","115","96","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010345","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483136333","1483136435","1483136456","1483136333","1","8","0","-1","21","102","168","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010376","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483136824","1483137036","1483137064","1483136824","1","8","0","-1","28","212","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010392","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483137073","1483137156","1483137165","1483137073","1","8","0","-1","9","83","72","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010423","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483137426","1483137516","1483137529","1483137426","1","8","0","-1","13","90","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010466","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483137955","1483137997","1483138011","1483137955","1","8","0","-1","14","42","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010469","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483138023","1483138237","1483138259","1483138023","1","8","0","-1","22","214","176","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010518","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483138750","1483138838","1483138844","1483138750","1","8","0","-1","6","88","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010570","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483139349","1483139439","1483139447","1483139349","1","8","0","-1","8","90","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010572","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483139426","1483139559","1483139587","1483139426","1","8","0","-1","28","133","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010598","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483139887","1483139919","1483139926","1483139887","1","8","0","-1","7","32","56","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010608","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140001","1483140039","1483140050","1483140001","1","8","0","-1","11","38","88","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010610","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140041","1483140160","1483140174","1483140041","1","8","0","-1","14","119","112","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010617","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140146","1483140280","1483140304","1483140146","1","8","0","-1","24","134","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010633","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140361","1483140400","1483140420","1483140361","1","8","0","-1","20","39","160","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010653","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140535","1483140640","1483140648","1483140535","1","8","0","-1","8","105","64","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010678","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140881","1483141001","1483141014","1483140881","1","8","0","-1","13","120","104","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010679","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483140898","1483141001","1483141029","1483140898","1","8","0","-1","28","103","224","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010713","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483141161","1483141241","1483141265","1483141161","1","8","0","-1","24","80","192","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010746","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483141603","1483141722","1483141728","1483141603","1","8","0","-1","6","119","48","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010776","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483142080","1483142202","1483142217","1483142080","1","8","0","-1","15","122","120","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1004945","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483065770","1483065876","1483065895","1483065770","1","8","0","-1","19","106","152","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6111037[221]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483127791","1483127810","1483125913","1","1","0","-1","19","1879","19","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[268]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483128080","1483128102","1483125913","1","1","0","-1","22","2168","22","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[325]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483128501","1483128528","1483125913","1","1","0","-1","27","2589","27","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[395]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483129063","1483129085","1483125913","1","1","0","-1","22","3151","22","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[431]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483129321","1483129347","1483125913","1","1","0","-1","26","3409","26","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[460]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483129461","1483129481","1483125913","1","1","0","-1","20","3549","20","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[10]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130411","1483130430","1483128563","1","1","0","-1","19","1851","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[15]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130411","1483130440","1483128563","1","1","0","-1","29","1851","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[16]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130411","1483130433","1483128563","1","1","0","-1","22","1851","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[17]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130411","1483130431","1483128563","1","1","0","-1","20","1851","20","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[25]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130539","1483130567","1483128563","1","1","0","-1","28","1979","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[37]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130539","1483130567","1483128563","1","1","0","-1","28","1979","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[45]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130676","1483130695","1483128563","1","1","0","-1","19","2116","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[50]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130676","1483130689","1483128563","1","1","0","-1","13","2116","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[52]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130676","1483130695","1483128563","1","1","0","-1","19","2116","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[54]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130676","1483130702","1483128563","1","1","0","-1","26","2116","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[55]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130676","1483130695","1483128563","1","1","0","-1","19","2116","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[61]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130808","1483130836","1483128563","1","1","0","-1","28","2248","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[84]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130937","1483130964","1483128563","1","1","0","-1","27","2377","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[98]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483130937","1483130957","1483128563","1","1","0","-1","20","2377","20","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[106]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131062","1483131090","1483128563","1","1","0","-1","28","2502","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[119]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131192","1483131207","1483128563","1","1","0","-1","15","2632","15","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[120]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131192","1483131208","1483128563","1","1","0","-1","16","2632","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[127]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131192","1483131219","1483128563","1","1","0","-1","27","2632","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[131]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131192","1483131220","1483128563","1","1","0","-1","28","2632","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[138]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131327","1483131356","1483128563","1","1","0","-1","29","2767","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[141]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131327","1483131332","1483128563","1","1","0","-1","5","2767","5","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[149]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131327","1483131351","1483128563","1","1","0","-1","24","2767","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[159]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131464","1483131489","1483128563","1","1","0","-1","25","2904","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[161]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131464","1483131492","1483128563","1","1","0","-1","28","2904","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[166]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131464","1483131489","1483128563","1","1","0","-1","25","2904","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[185]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131602","1483131623","1483128563","1","1","0","-1","21","3042","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[186]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131602","1483131612","1483128563","1","1","0","-1","10","3042","10","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[187]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131602","1483131623","1483128563","1","1","0","-1","21","3042","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[193]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131738","1483131766","1483128563","1","1","0","-1","28","3178","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[198]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131738","1483131744","1483128563","1","1","0","-1","6","3178","6","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[203]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131738","1483131756","1483128563","1","1","0","-1","18","3178","18","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[204]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131738","1483131761","1483128563","1","1","0","-1","23","3178","23","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[206]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131738","1483131766","1483128563","1","1","0","-1","28","3178","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[212]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131895","1483128563","1","1","0","-1","28","3307","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[217]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131888","1483128563","1","1","0","-1","21","3307","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[221]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131880","1483128563","1","1","0","-1","13","3307","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[222]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131895","1483128563","1","1","0","-1","28","3307","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[224]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131895","1483128563","1","1","0","-1","28","3307","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[225]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131867","1483131890","1483128563","1","1","0","-1","23","3307","23","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[226]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131997","1483132026","1483128563","1","1","0","-1","29","3437","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[236]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131997","1483132026","1483128563","1","1","0","-1","29","3437","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[241]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483131997","1483132023","1483128563","1","1","0","-1","26","3437","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[254]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132136","1483132156","1483128563","1","1","0","-1","20","3576","20","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[255]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132136","1483132162","1483128563","1","1","0","-1","26","3576","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[256]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132136","1483132163","1483128563","1","1","0","-1","27","3576","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[263]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132136","1483132163","1483128563","1","1","0","-1","27","3576","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[98]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137566","1483137582","1483135648","1","1","0","-1","16","1918","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[106]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137566","1483137594","1483135648","1","1","0","-1","28","1918","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[119]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137692","1483137712","1483135648","1","1","0","-1","20","2044","20","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[120]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137692","1483137712","1483135648","1","1","0","-1","20","2044","20","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[127]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137824","1483137853","1483135648","1","1","0","-1","29","2176","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[129]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137824","1483137851","1483135648","1","1","0","-1","27","2176","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[138]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137824","1483137853","1483135648","1","1","0","-1","29","2176","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[141]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137824","1483137835","1483135648","1","1","0","-1","11","2176","11","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[149]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137956","1483137981","1483135648","1","1","0","-1","25","2308","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[159]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137956","1483137983","1483135648","1","1","0","-1","27","2308","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[161]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483137956","1483137985","1483135648","1","1","0","-1","29","2308","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[166]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138083","1483138105","1483135648","1","1","0","-1","22","2435","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[167]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138083","1483138111","1483135648","1","1","0","-1","28","2435","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[173]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138083","1483138111","1483135648","1","1","0","-1","28","2435","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[175]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138083","1483138111","1483135648","1","1","0","-1","28","2435","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[185]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138210","1483138232","1483135648","1","1","0","-1","22","2562","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[186]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138210","1483138218","1483135648","1","1","0","-1","8","2562","8","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[187]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138210","1483138226","1483135648","1","1","0","-1","16","2562","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[193]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138210","1483138235","1483135648","1","1","0","-1","25","2562","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[198]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138210","1483138220","1483135648","1","1","0","-1","10","2562","10","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[203]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138342","1483138356","1483135648","1","1","0","-1","14","2694","14","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[204]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138342","1483138366","1483135648","1","1","0","-1","24","2694","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[217]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138342","1483138355","1483135648","1","1","0","-1","13","2694","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[221]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138470","1483138483","1483135648","1","1","0","-1","13","2822","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[224]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138470","1483138499","1483135648","1","1","0","-1","29","2822","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[241]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138601","1483138623","1483135648","1","1","0","-1","22","2953","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[254]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138601","1483138617","1483135648","1","1","0","-1","16","2953","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[255]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138601","1483138623","1483135648","1","1","0","-1","22","2953","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[256]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138601","1483138628","1483135648","1","1","0","-1","27","2953","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[268]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138737","1483138746","1483135648","1","1","0","-1","9","3089","9","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[277]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138737","1483138764","1483135648","1","1","0","-1","27","3089","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[281]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138862","1483138884","1483135648","1","1","0","-1","22","3214","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[294]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138862","1483138885","1483135648","1","1","0","-1","23","3214","23","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[310]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483138992","1483139008","1483135648","1","1","0","-1","16","3344","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[325]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139123","1483139130","1483135648","1","1","0","-1","7","3475","7","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[326]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139123","1483139145","1483135648","1","1","0","-1","22","3475","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["986006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116423","1483118225","1483118246","1483116423","1","8","0","-1","21","1802","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116424","1483118234","1483118251","1483116424","1","8","0","-1","17","1810","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116424","1483118246","1483118270","1483116424","1","8","0","-1","24","1822","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986016","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116424","1483118252","1483118273","1483116424","1","8","0","-1","21","1828","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116425","1483118254","1483118277","1483116425","1","8","0","-1","23","1829","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116425","1483118262","1483118281","1483116425","1","8","0","-1","19","1837","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116426","1483118268","1483118290","1483116426","1","8","0","-1","22","1842","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116426","1483118270","1483118289","1483116426","1","8","0","-1","19","1844","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116427","1483118278","1483118307","1483116427","1","8","0","-1","29","1851","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986041","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116428","1483118291","1483118313","1483116428","1","8","0","-1","22","1863","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116429","1483118298","1483118319","1483116429","1","8","0","-1","21","1869","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986049","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116429","1483118313","1483118332","1483116429","1","8","0","-1","19","1884","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986051","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116430","1483118314","1483118336","1483116430","1","8","0","-1","22","1884","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116430","1483118320","1483118341","1483116430","1","8","0","-1","21","1890","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986059","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116431","1483118336","1483118356","1483116431","1","8","0","-1","20","1905","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986061","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116431","1483118337","1483118357","1483116431","1","8","0","-1","20","1906","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116432","1483118339","1483118358","1483116432","1","8","0","-1","19","1907","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986079","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116434","1483118358","1483118379","1483116434","1","8","0","-1","21","1924","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116435","1483118371","1483118389","1483116435","1","8","0","-1","18","1936","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986087","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116435","1483118374","1483118390","1483116435","1","8","0","-1","16","1939","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116436","1483118380","1483118403","1483116436","1","8","0","-1","23","1944","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986097","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116437","1483118391","1483118413","1483116437","1","8","0","-1","22","1954","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116437","1483118391","1483118410","1483116437","1","8","0","-1","19","1954","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116438","1483118395","1483118413","1483116438","1","8","0","-1","18","1957","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116440","1483118427","1483118447","1483116440","1","8","0","-1","20","1987","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116441","1483118436","1483118457","1483116441","1","8","0","-1","21","1995","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116441","1483118446","1483118465","1483116441","1","8","0","-1","19","2005","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986129","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116442","1483118448","1483118469","1483116442","1","8","0","-1","21","2006","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116443","1483118458","1483118479","1483116443","1","8","0","-1","21","2015","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116443","1483118466","1483118485","1483116443","1","8","0","-1","19","2023","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986139","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116444","1483118470","1483118488","1483116444","1","8","0","-1","18","2026","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116444","1483118479","1483118507","1483116444","1","8","0","-1","28","2035","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116445","1483118481","1483118509","1483116445","1","8","0","-1","28","2036","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986155","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116446","1483118495","1483118517","1483116446","1","8","0","-1","22","2049","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116446","1483118507","1483118527","1483116446","1","8","0","-1","20","2061","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116447","1483118509","1483118526","1483116447","1","8","0","-1","17","2062","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116448","1483118517","1483118546","1483116448","1","8","0","-1","29","2069","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116448","1483118525","1483118553","1483116448","1","8","0","-1","28","2077","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116448","1483118526","1483118550","1483116448","1","8","0","-1","24","2078","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116449","1483118528","1483118551","1483116449","1","8","0","-1","23","2079","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986173","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116449","1483118528","1483118552","1483116449","1","8","0","-1","24","2079","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116449","1483118546","1483118564","1483116449","1","8","0","-1","18","2097","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116451","1483118552","1483118578","1483116451","1","8","0","-1","26","2101","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116452","1483118555","1483118577","1483116452","1","8","0","-1","22","2103","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986199","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116453","1483118578","1483118591","1483116453","1","8","0","-1","13","2125","104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116454","1483118592","1483118613","1483116454","1","8","0","-1","21","2138","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116455","1483118604","1483118619","1483116455","1","8","0","-1","15","2149","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116456","1483118614","1483118631","1483116456","1","8","0","-1","17","2158","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116458","1483118625","1483118647","1483116458","1","8","0","-1","22","2167","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116458","1483118629","1483118652","1483116458","1","8","0","-1","23","2171","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116459","1483118631","1483118653","1483116459","1","8","0","-1","22","2172","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116459","1483118631","1483118651","1483116459","1","8","0","-1","20","2172","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116459","1483118647","1483118666","1483116459","1","8","0","-1","19","2188","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116460","1483118650","1483118674","1483116460","1","8","0","-1","24","2190","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116460","1483118651","1483118675","1483116460","1","8","0","-1","24","2191","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116461","1483118653","1483118674","1483116461","1","8","0","-1","21","2192","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116462","1483118654","1483118681","1483116462","1","8","0","-1","27","2192","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116462","1483118667","1483118687","1483116462","1","8","0","-1","20","2205","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116464","1483118688","1483118710","1483116464","1","8","0","-1","22","2224","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116465","1483118706","1483118727","1483116465","1","8","0","-1","21","2241","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116466","1483118706","1483118732","1483116466","1","8","0","-1","26","2240","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116466","1483118710","1483118734","1483116466","1","8","0","-1","24","2244","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116467","1483118728","1483118751","1483116467","1","8","0","-1","23","2261","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116468","1483118728","1483118748","1483116468","1","8","0","-1","20","2260","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116468","1483118732","1483118753","1483116468","1","8","0","-1","21","2264","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116471","1483118753","1483118775","1483116471","1","8","0","-1","22","2282","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116471","1483118754","1483118776","1483116471","1","8","0","-1","22","2283","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116471","1483118769","1483118794","1483116471","1","8","0","-1","25","2298","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116472","1483118775","1483118796","1483116472","1","8","0","-1","21","2303","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116472","1483118777","1483118801","1483116472","1","8","0","-1","24","2305","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116472","1483118779","1483118803","1483116472","1","8","0","-1","24","2307","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116473","1483118790","1483118814","1483116473","1","8","0","-1","24","2317","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116474","1483118795","1483118815","1483116474","1","8","0","-1","20","2321","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116474","1483118797","1483118816","1483116474","1","8","0","-1","19","2323","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116474","1483118801","1483118820","1483116474","1","8","0","-1","19","2327","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116477","1483118821","1483118842","1483116477","1","8","0","-1","21","2344","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116477","1483118834","1483118861","1483116477","1","8","0","-1","27","2357","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116478","1483118843","1483118863","1483116478","1","8","0","-1","20","2365","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116478","1483118847","1483118871","1483116478","1","8","0","-1","24","2369","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116478","1483118859","1483118883","1483116478","1","8","0","-1","24","2381","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116480","1483118871","1483118892","1483116480","1","8","0","-1","21","2391","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116480","1483118882","1483118903","1483116480","1","8","0","-1","21","2402","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116481","1483118884","1483118904","1483116481","1","8","0","-1","20","2403","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116485","1483118942","1483118970","1483116485","1","8","0","-1","28","2457","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116489","1483119023","1483119043","1483116489","1","8","0","-1","20","2534","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116489","1483119027","1483119048","1483116489","1","8","0","-1","21","2538","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116490","1483119044","1483119061","1483116490","1","8","0","-1","17","2554","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116490","1483119049","1483119065","1483116490","1","8","0","-1","16","2559","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116491","1483119062","1483119088","1483116491","1","8","0","-1","26","2571","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116491","1483119066","1483119090","1483116491","1","8","0","-1","24","2575","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116491","1483119070","1483119092","1483116491","1","8","0","-1","22","2579","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116492","1483119088","1483119108","1483116492","1","8","0","-1","20","2596","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116492","1483119091","1483119107","1483116492","1","8","0","-1","16","2599","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116493","1483119092","1483119111","1483116493","1","8","0","-1","19","2599","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116495","1483119108","1483119136","1483116495","1","8","0","-1","28","2613","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116495","1483119111","1483119133","1483116495","1","8","0","-1","22","2616","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116496","1483119119","1483119141","1483116496","1","8","0","-1","22","2623","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116496","1483119129","1483119146","1483116496","1","8","0","-1","17","2633","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116496","1483119134","1483119161","1483116496","1","8","0","-1","27","2638","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116497","1483119134","1483119163","1483116497","1","8","0","-1","29","2637","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116497","1483119136","1483119159","1483116497","1","8","0","-1","23","2639","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116498","1483119141","1483119164","1483116498","1","8","0","-1","23","2643","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116498","1483119146","1483119166","1483116498","1","8","0","-1","20","2648","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116498","1483119153","1483119169","1483116498","1","8","0","-1","16","2655","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116499","1483119159","1483119178","1483116499","1","8","0","-1","19","2660","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116501","1483119179","1483119199","1483116501","1","8","0","-1","20","2678","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116502","1483119197","1483119218","1483116502","1","8","0","-1","21","2695","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116502","1483119197","1483119211","1483116502","1","8","0","-1","14","2695","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116502","1483119199","1483119226","1483116502","1","8","0","-1","27","2697","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116503","1483119199","1483119225","1483116503","1","8","0","-1","26","2696","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116504","1483119201","1483119230","1483116504","1","8","0","-1","29","2697","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116504","1483119209","1483119227","1483116504","1","8","0","-1","18","2705","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116504","1483119211","1483119226","1483116504","1","8","0","-1","15","2707","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116505","1483119218","1483119233","1483116505","1","8","0","-1","15","2713","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116505","1483119225","1483119249","1483116505","1","8","0","-1","24","2720","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116506","1483119226","1483119252","1483116506","1","8","0","-1","26","2720","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116506","1483119227","1483119255","1483116506","1","8","0","-1","28","2721","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116507","1483119249","1483119268","1483116507","1","8","0","-1","19","2742","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116508","1483119256","1483119272","1483116508","1","8","0","-1","16","2748","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116508","1483119267","1483119282","1483116508","1","8","0","-1","15","2759","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116510","1483119271","1483119289","1483116510","1","8","0","-1","18","2761","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986556","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116511","1483119272","1483119289","1483116511","1","8","0","-1","17","2761","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116511","1483119282","1483119307","1483116511","1","8","0","-1","25","2771","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116511","1483119286","1483119315","1483116511","1","8","0","-1","29","2775","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116513","1483119308","1483119330","1483116513","1","8","0","-1","22","2795","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116514","1483119316","1483119338","1483116514","1","8","0","-1","22","2802","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116515","1483119329","1483119356","1483116515","1","8","0","-1","27","2814","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116516","1483119339","1483119365","1483116516","1","8","0","-1","26","2823","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116516","1483119344","1483119364","1483116516","1","8","0","-1","20","2828","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116517","1483119345","1483119366","1483116517","1","8","0","-1","21","2828","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116517","1483119356","1483119378","1483116517","1","8","0","-1","22","2839","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116517","1483119359","1483119387","1483116517","1","8","0","-1","28","2842","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116519","1483119367","1483119394","1483116519","1","8","0","-1","27","2848","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116525","1483119460","1483119488","1483116525","1","8","0","-1","28","2935","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116528","1483119489","1483119518","1483116528","1","8","0","-1","29","2961","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116528","1483119500","1483119526","1483116528","1","8","0","-1","26","2972","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116529","1483119507","1483119532","1483116529","1","8","0","-1","25","2978","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116532","1483119565","1483119592","1483116532","1","8","0","-1","27","3033","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986687","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116532","1483119565","1483119594","1483116532","1","8","0","-1","29","3033","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116533","1483119578","1483119601","1483116533","1","8","0","-1","23","3045","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116535","1483119602","1483119630","1483116535","1","8","0","-1","28","3067","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116535","1483119608","1483119631","1483116535","1","8","0","-1","23","3073","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116557","1483120079","1483120108","1483116557","1","8","0","-1","29","3522","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116558","1483120099","1483120126","1483116558","1","8","0","-1","27","3541","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116560","1483120134","1483120160","1483116560","1","8","0","-1","26","3574","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177000","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116405","1483118831","1483118856","1483116405","1","8","0","-1","25","2426","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177004","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116405","1483118857","1483118885","1483116405","1","8","0","-1","28","2452","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177008","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116406","1483118886","1483118913","1483116406","1","8","0","-1","27","2480","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177011","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116407","1483118913","1483118939","1483116407","1","8","0","-1","26","2506","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177015","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116408","1483118940","1483118964","1483116408","1","8","0","-1","24","2532","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177035","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116412","1483119136","1483119158","1483116412","1","8","0","-1","22","2724","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177039","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116412","1483119159","1483119186","1483116412","1","8","0","-1","27","2747","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177046","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116414","1483119230","1483119247","1483116414","1","8","0","-1","17","2816","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177050","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116414","1483119248","1483119273","1483116414","1","8","0","-1","25","2834","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177082","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116420","1483119613","1483119640","1483116420","1","8","0","-1","27","3193","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177093","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116423","1483119783","1483119797","1483116423","1","8","0","-1","14","3360","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177097","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116423","1483119798","1483119811","1483116423","1","8","0","-1","13","3375","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177101","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116424","1483119811","1483119826","1483116424","1","8","0","-1","15","3387","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177105","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116425","1483119826","1483119844","1483116425","1","8","0","-1","18","3401","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177108","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116425","1483119844","1483119858","1483116425","1","8","0","-1","14","3419","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177112","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116426","1483119858","1483119871","1483116426","1","8","0","-1","13","3432","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177116","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116427","1483119872","1483119893","1483116427","1","8","0","-1","21","3445","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177124","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116428","1483119935","1483119949","1483116428","1","8","0","-1","14","3507","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177128","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116429","1483119950","1483119963","1483116429","1","8","0","-1","13","3521","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177132","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116430","1483119963","1483119979","1483116430","1","8","0","-1","16","3533","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177136","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116431","1483119979","1483119998","1483116431","1","8","0","-1","19","3548","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177140","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116431","1483119998","1483120016","1483116431","1","8","0","-1","18","3567","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177143","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116432","1483120016","1483120030","1483116432","1","8","0","-1","14","3584","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177147","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116433","1483120030","1483120048","1483116433","1","8","0","-1","18","3597","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108545","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483064269","1483080379","1483080389","1483064269","1","1","0","-1","10","16110","10","0","0:0","COMPLETED","1","125Gn","86400","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6111037[521]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483129882","1483129901","1483125913","1","1","0","-1","19","3970","19","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[550]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483130147","1483130170","1483125913","1","1","0","-1","23","4235","23","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[556]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483130147","1483130169","1483125913","1","1","0","-1","22","4235","22","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[557]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483130147","1483130157","1483125913","1","1","0","-1","10","4235","10","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111037[559]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483125912","1483130279","1483130296","1483125913","1","1","0","-1","17","4367","17","0","0:0","COMPLETED","1","2147487648Mn","900","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[268]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132272","1483132285","1483128563","1","1","0","-1","13","3712","13","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[281]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132272","1483132297","1483128563","1","1","0","-1","25","3712","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[286]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132410","1483132437","1483128563","1","1","0","-1","27","3850","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[291]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132410","1483132436","1483128563","1","1","0","-1","26","3850","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[292]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132410","1483132437","1483128563","1","1","0","-1","27","3850","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[293]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132410","1483132436","1483128563","1","1","0","-1","26","3850","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[310]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132547","1483132563","1483128563","1","1","0","-1","16","3987","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[311]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132547","1483132576","1483128563","1","1","0","-1","29","3987","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[319]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132681","1483132708","1483128563","1","1","0","-1","27","4121","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[321]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132681","1483132710","1483128563","1","1","0","-1","29","4121","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[325]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132681","1483132688","1483128563","1","1","0","-1","7","4121","7","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[326]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132681","1483132705","1483128563","1","1","0","-1","24","4121","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[331]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132681","1483132710","1483128563","1","1","0","-1","29","4121","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[336]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132814","1483132839","1483128563","1","1","0","-1","25","4254","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[355]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132949","1483132973","1483128563","1","1","0","-1","24","4389","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[356]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132949","1483132974","1483128563","1","1","0","-1","25","4389","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[365]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483132949","1483132964","1483128563","1","1","0","-1","15","4389","15","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[388]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133083","1483133104","1483128563","1","1","0","-1","21","4523","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[395]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133218","1483133234","1483128563","1","1","0","-1","16","4658","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[414]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133352","1483133380","1483128563","1","1","0","-1","28","4792","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[415]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133352","1483133378","1483128563","1","1","0","-1","26","4792","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[425]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133352","1483133364","1483128563","1","1","0","-1","12","4792","12","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[431]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133483","1483133498","1483128563","1","1","0","-1","15","4923","15","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[436]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133483","1483133507","1483128563","1","1","0","-1","24","4923","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[437]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133483","1483133509","1483128563","1","1","0","-1","26","4923","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[440]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133483","1483133508","1483128563","1","1","0","-1","25","4923","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[441]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133483","1483133505","1483128563","1","1","0","-1","22","4923","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[450]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133616","1483133643","1483128563","1","1","0","-1","27","5056","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[453]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133616","1483133643","1483128563","1","1","0","-1","27","5056","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[460]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133616","1483133639","1483128563","1","1","0","-1","23","5056","23","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[469]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133748","1483133777","1483128563","1","1","0","-1","29","5188","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[470]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133748","1483133770","1483128563","1","1","0","-1","22","5188","22","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[477]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133748","1483133776","1483128563","1","1","0","-1","28","5188","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[482]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133882","1483133907","1483128563","1","1","0","-1","25","5322","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[483]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483133882","1483133906","1483128563","1","1","0","-1","24","5322","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[514]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134016","1483134042","1483128563","1","1","0","-1","26","5456","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[521]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134160","1483128563","1","1","0","-1","16","5584","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[526]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134169","1483128563","1","1","0","-1","25","5584","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[527]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134168","1483128563","1","1","0","-1","24","5584","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[528]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134165","1483128563","1","1","0","-1","21","5584","21","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[533]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134170","1483128563","1","1","0","-1","26","5584","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[538]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134144","1483134168","1483128563","1","1","0","-1","24","5584","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[547]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134282","1483134311","1483128563","1","1","0","-1","29","5722","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[550]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134282","1483134299","1483128563","1","1","0","-1","17","5722","17","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[555]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134282","1483134308","1483128563","1","1","0","-1","26","5722","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[556]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134282","1483134290","1483128563","1","1","0","-1","8","5722","8","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6111392[558]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483128560","1483134408","1483134415","1483128563","1","1","0","-1","7","5848","7","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[336]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139250","1483139275","1483135648","1","1","0","-1","25","3602","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[341]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139250","1483139279","1483135648","1","1","0","-1","29","3602","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[355]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139383","1483139409","1483135648","1","1","0","-1","26","3735","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[356]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139383","1483139409","1483135648","1","1","0","-1","26","3735","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[365]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139383","1483139395","1483135648","1","1","0","-1","12","3735","12","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[379]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139509","1483139538","1483135648","1","1","0","-1","29","3861","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[388]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139509","1483139527","1483135648","1","1","0","-1","18","3861","18","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[395]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139645","1483139663","1483135648","1","1","0","-1","18","3997","18","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[414]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139776","1483139802","1483135648","1","1","0","-1","26","4128","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[415]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139776","1483139800","1483135648","1","1","0","-1","24","4128","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[425]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139777","1483139793","1483135648","1","1","0","-1","16","4129","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[431]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139927","1483135648","1","1","0","-1","14","4265","14","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[435]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139940","1483135648","1","1","0","-1","27","4265","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[436]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139937","1483135648","1","1","0","-1","24","4265","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[437]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139939","1483135648","1","1","0","-1","26","4265","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[440]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139939","1483135648","1","1","0","-1","26","4265","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[441]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139937","1483135648","1","1","0","-1","24","4265","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[447]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483139913","1483139940","1483135648","1","1","0","-1","27","4265","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[450]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140044","1483140071","1483135648","1","1","0","-1","27","4396","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[453]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140044","1483140072","1483135648","1","1","0","-1","28","4396","28","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[460]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140044","1483140056","1483135648","1","1","0","-1","12","4396","12","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[470]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140171","1483140196","1483135648","1","1","0","-1","25","4523","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[482]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140171","1483140196","1483135648","1","1","0","-1","25","4523","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[483]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140171","1483140196","1483135648","1","1","0","-1","25","4523","25","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[508]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140441","1483140470","1483135648","1","1","0","-1","29","4793","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[511]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140441","1483140470","1483135648","1","1","0","-1","29","4793","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[514]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140441","1483140470","1483135648","1","1","0","-1","29","4793","29","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[521]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140441","1483140451","1483135648","1","1","0","-1","10","4793","10","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[526]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140572","1483140598","1483135648","1","1","0","-1","26","4924","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[527]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140572","1483140596","1483135648","1","1","0","-1","24","4924","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[528]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140572","1483140588","1483135648","1","1","0","-1","16","4924","16","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[538]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140572","1483140596","1483135648","1","1","0","-1","24","4924","24","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[546]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140727","1483135648","1","1","0","-1","27","5052","27","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[547]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140726","1483135648","1","1","0","-1","26","5052","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[550]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140711","1483135648","1","1","0","-1","11","5052","11","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[555]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140726","1483135648","1","1","0","-1","26","5052","26","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[556]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140719","1483135648","1","1","0","-1","19","5052","19","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["6112283[558]","Robertson","UTC","","Grey, Great","Screwdriver","curry","1483135648","1483140700","1483140709","1483135648","1","1","0","-1","9","5052","9","0","0:0","COMPLETED","1","48000Mn","10800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Decision, Risk, and Management Science"],["986877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116563","1483120174","1483120203","1483116563","1","8","0","-1","29","3611","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116566","1483120223","1483120246","1483116566","1","8","0","-1","23","3657","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116569","1483120303","1483120329","1483116569","1","8","0","-1","26","3734","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116572","1483120332","1483120356","1483116572","1","8","0","-1","24","3760","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116572","1483120342","1483120362","1483116572","1","8","0","-1","20","3770","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116576","1483120418","1483120442","1483116576","1","8","0","-1","24","3842","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116576","1483120436","1483120457","1483116576","1","8","0","-1","21","3860","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116578","1483120454","1483120481","1483116578","1","8","0","-1","27","3876","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116582","1483120536","1483120564","1483116582","1","8","0","-1","28","3954","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116582","1483120540","1483120567","1483116582","1","8","0","-1","27","3958","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116582","1483120543","1483120565","1483116582","1","8","0","-1","22","3961","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["986998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116583","1483120552","1483120581","1483116583","1","8","0","-1","29","3969","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987000","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116583","1483120564","1483120593","1483116583","1","8","0","-1","29","3981","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116584","1483120565","1483120592","1483116584","1","8","0","-1","27","3981","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116584","1483120567","1483120592","1483116584","1","8","0","-1","25","3983","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116588","1483120640","1483120667","1483116588","1","8","0","-1","27","4052","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116588","1483120642","1483120662","1483116588","1","8","0","-1","20","4054","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987039","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116590","1483120662","1483120688","1483116590","1","8","0","-1","26","4072","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987047","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116591","1483120682","1483120704","1483116591","1","8","0","-1","22","4091","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987065","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116594","1483120730","1483120750","1483116594","1","8","0","-1","20","4136","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116595","1483120741","1483120765","1483116595","1","8","0","-1","24","4146","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116597","1483120766","1483120785","1483116597","1","8","0","-1","19","4169","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116602","1483120858","1483120887","1483116602","1","8","0","-1","29","4256","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116603","1483120868","1483120890","1483116603","1","8","0","-1","22","4265","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116607","1483120952","1483120981","1483116607","1","8","0","-1","29","4345","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116609","1483120969","1483120993","1483116609","1","8","0","-1","24","4360","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116610","1483120982","1483121004","1483116610","1","8","0","-1","22","4372","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116615","1483121075","1483121100","1483116615","1","8","0","-1","25","4460","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116620","1483121174","1483121202","1483116620","1","8","0","-1","28","4554","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116622","1483121203","1483121232","1483116622","1","8","0","-1","29","4581","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116627","1483121318","1483121347","1483116627","1","8","0","-1","29","4691","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116632","1483121398","1483121424","1483116632","1","8","0","-1","26","4766","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116632","1483121413","1483121440","1483116632","1","8","0","-1","27","4781","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116633","1483121424","1483121453","1483116633","1","8","0","-1","29","4791","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116633","1483121433","1483121461","1483116633","1","8","0","-1","28","4800","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116634","1483121441","1483121470","1483116634","1","8","0","-1","29","4807","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116634","1483121446","1483121469","1483116634","1","8","0","-1","23","4812","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987329","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116637","1483121488","1483121517","1483116637","1","8","0","-1","29","4851","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116639","1483121509","1483121538","1483116639","1","8","0","-1","29","4870","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116640","1483121521","1483121543","1483116640","1","8","0","-1","22","4881","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116644","1483121581","1483121608","1483116644","1","8","0","-1","27","4937","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116644","1483121585","1483121605","1483116644","1","8","0","-1","20","4941","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116645","1483121595","1483121619","1483116645","1","8","0","-1","24","4950","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116646","1483121608","1483121634","1483116646","1","8","0","-1","26","4962","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116646","1483121619","1483121647","1483116646","1","8","0","-1","28","4973","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987386","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116647","1483121629","1483121651","1483116647","1","8","0","-1","22","4982","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116647","1483121631","1483121656","1483116647","1","8","0","-1","25","4984","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116650","1483121670","1483121697","1483116650","1","8","0","-1","27","5020","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116650","1483121677","1483121704","1483116650","1","8","0","-1","27","5027","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116652","1483121698","1483121723","1483116652","1","8","0","-1","25","5046","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116652","1483121704","1483121733","1483116652","1","8","0","-1","29","5052","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116654","1483121723","1483121741","1483116654","1","8","0","-1","18","5069","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116656","1483121754","1483121781","1483116656","1","8","0","-1","27","5098","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116657","1483121761","1483121783","1483116657","1","8","0","-1","22","5104","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116659","1483121784","1483121812","1483116659","1","8","0","-1","28","5125","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116660","1483121787","1483121816","1483116660","1","8","0","-1","29","5127","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116664","1483121817","1483121844","1483116664","1","8","0","-1","27","5153","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116664","1483121830","1483121859","1483116664","1","8","0","-1","29","5166","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116665","1483121860","1483121886","1483116665","1","8","0","-1","26","5195","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116666","1483121875","1483121902","1483116666","1","8","0","-1","27","5209","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116673","1483121989","1483122018","1483116673","1","8","0","-1","29","5316","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116678","1483122070","1483122097","1483116678","1","8","0","-1","27","5392","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116738","1483122611","1483122635","1483116738","1","8","0","-1","24","5873","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116801","1483122675","1483122702","1483116801","1","8","0","-1","27","5874","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116878","1483122743","1483122763","1483116878","1","8","0","-1","20","5865","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116922","1483122793","1483122813","1483116922","1","8","0","-1","20","5871","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116938","1483122813","1483122837","1483116938","1","8","0","-1","24","5875","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116943","1483122837","1483122865","1483116943","1","8","0","-1","28","5894","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116945","1483122847","1483122876","1483116945","1","8","0","-1","29","5902","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117026","1483122892","1483122911","1483117026","1","8","0","-1","19","5866","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117030","1483122902","1483122923","1483117030","1","8","0","-1","21","5872","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117034","1483122912","1483122940","1483117034","1","8","0","-1","28","5878","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117036","1483122921","1483122942","1483117036","1","8","0","-1","21","5885","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117065","1483122940","1483122961","1483117065","1","8","0","-1","21","5875","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987824","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117073","1483122956","1483122980","1483117073","1","8","0","-1","24","5883","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117081","1483122962","1483122981","1483117081","1","8","0","-1","19","5881","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117090","1483122975","1483122994","1483117090","1","8","0","-1","19","5885","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117091","1483122976","1483122990","1483117091","1","8","0","-1","14","5885","112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117099","1483122991","1483123009","1483117099","1","8","0","-1","18","5892","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117118","1483122995","1483123015","1483117118","1","8","0","-1","20","5877","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117118","1483122996","1483123015","1483117118","1","8","0","-1","19","5878","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117142","1483123020","1483123046","1483117142","1","8","0","-1","26","5878","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117145","1483123043","1483123062","1483117145","1","8","0","-1","19","5898","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117147","1483123046","1483123070","1483117147","1","8","0","-1","24","5899","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117148","1483123051","1483123068","1483117148","1","8","0","-1","17","5903","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117154","1483123063","1483123081","1483117154","1","8","0","-1","18","5909","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117178","1483123071","1483123098","1483117178","1","8","0","-1","27","5893","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117240","1483123178","1483123202","1483117240","1","8","0","-1","24","5938","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117288","1483123213","1483123231","1483117288","1","8","0","-1","18","5925","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117289","1483123229","1483123254","1483117289","1","8","0","-1","25","5940","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117301","1483123232","1483123260","1483117301","1","8","0","-1","28","5931","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117376","1483123310","1483123336","1483117376","1","8","0","-1","26","5934","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117381","1483123311","1483123335","1483117381","1","8","0","-1","24","5930","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117447","1483123372","1483123400","1483117447","1","8","0","-1","28","5925","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987966","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117514","1483123399","1483123421","1483117514","1","8","0","-1","22","5885","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117523","1483123400","1483123415","1483117523","1","8","0","-1","15","5877","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117530","1483123416","1483123437","1483117530","1","8","0","-1","21","5886","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987980","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117585","1483123438","1483123458","1483117585","1","8","0","-1","20","5853","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117585","1483123439","1483123459","1483117585","1","8","0","-1","20","5854","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["987994","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117657","1483123493","1483123517","1483117657","1","8","0","-1","24","5836","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117749","1483123503","1483123528","1483117749","1","8","0","-1","25","5754","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117769","1483123518","1483123544","1483117769","1","8","0","-1","26","5749","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117785","1483123529","1483123554","1483117785","1","8","0","-1","25","5744","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117880","1483123562","1483123584","1483117880","1","8","0","-1","22","5682","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117935","1483123599","1483123620","1483117935","1","8","0","-1","21","5664","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117942","1483123619","1483123645","1483117942","1","8","0","-1","26","5677","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117943","1483123621","1483123644","1483117943","1","8","0","-1","23","5678","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118023","1483123645","1483123661","1483118023","1","8","0","-1","16","5622","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118067","1483123674","1483123701","1483118067","1","8","0","-1","27","5607","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118071","1483123681","1483123704","1483118071","1","8","0","-1","23","5610","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118076","1483123683","1483123707","1483118076","1","8","0","-1","24","5607","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118155","1483123770","1483123796","1483118155","1","8","0","-1","26","5615","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118178","1483123820","1483123845","1483118178","1","8","0","-1","25","5642","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118227","1483123886","1483123914","1483118227","1","8","0","-1","28","5659","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118233","1483123891","1483123920","1483118233","1","8","0","-1","29","5658","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118356","1483124048","1483124072","1483118356","1","8","0","-1","24","5692","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118375","1483124080","1483124099","1483118375","1","8","0","-1","19","5705","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118436","1483124169","1483124189","1483118436","1","8","0","-1","20","5733","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118436","1483124170","1483124191","1483118436","1","8","0","-1","21","5734","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118564","1483124399","1483124425","1483118564","1","8","0","-1","26","5835","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118578","1483124421","1483124448","1483118578","1","8","0","-1","27","5843","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118652","1483124559","1483124587","1483118652","1","8","0","-1","28","5907","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118705","1483124632","1483124655","1483118705","1","8","0","-1","23","5927","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118720","1483124655","1483124676","1483118720","1","8","0","-1","21","5935","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118728","1483124665","1483124686","1483118728","1","8","0","-1","21","5937","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118734","1483124677","1483124697","1483118734","1","8","0","-1","20","5943","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118751","1483124697","1483124726","1483118751","1","8","0","-1","29","5946","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118769","1483124713","1483124732","1483118769","1","8","0","-1","19","5944","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118782","1483124728","1483124757","1483118782","1","8","0","-1","29","5946","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118804","1483124758","1483124778","1483118804","1","8","0","-1","20","5954","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118821","1483124787","1483124812","1483118821","1","8","0","-1","25","5966","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118883","1483124840","1483124862","1483118883","1","8","0","-1","22","5957","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118884","1483124847","1483124866","1483118884","1","8","0","-1","19","5963","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118935","1483124894","1483124913","1483118935","1","8","0","-1","19","5959","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118942","1483124898","1483124919","1483118942","1","8","0","-1","21","5956","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119001","1483124953","1483124973","1483119001","1","8","0","-1","20","5952","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988432","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119002","1483124953","1483124970","1483119002","1","8","0","-1","17","5951","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119023","1483124970","1483124996","1483119023","1","8","0","-1","26","5947","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119027","1483124974","1483124990","1483119027","1","8","0","-1","16","5947","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119070","1483124997","1483125014","1483119070","1","8","0","-1","17","5927","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119088","1483124997","1483125019","1483119088","1","8","0","-1","22","5909","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119090","1483125015","1483125042","1483119090","1","8","0","-1","27","5925","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119092","1483125020","1483125047","1483119092","1","8","0","-1","27","5928","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119152","1483125124","1483125148","1483119152","1","8","0","-1","24","5972","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119159","1483125143","1483125171","1483119159","1","8","0","-1","28","5984","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119169","1483125163","1483125190","1483119169","1","8","0","-1","27","5994","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119218","1483125240","1483125260","1483119218","1","8","0","-1","20","6022","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119225","1483125251","1483125277","1483119225","1","8","0","-1","26","6026","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119226","1483125258","1483125279","1483119226","1","8","0","-1","21","6032","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119226","1483125259","1483125283","1483119226","1","8","0","-1","24","6033","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119230","1483125266","1483125291","1483119230","1","8","0","-1","25","6036","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119282","1483125364","1483125390","1483119282","1","8","0","-1","26","6082","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119289","1483125374","1483125401","1483119289","1","8","0","-1","27","6085","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119308","1483125402","1483125431","1483119308","1","8","0","-1","29","6094","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119338","1483125443","1483125472","1483119338","1","8","0","-1","29","6105","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119366","1483125473","1483125499","1483119366","1","8","0","-1","26","6107","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119366","1483125496","1483125524","1483119366","1","8","0","-1","28","6130","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119415","1483125536","1483125565","1483119415","1","8","0","-1","29","6121","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119438","1483125558","1483125584","1483119438","1","8","0","-1","26","6120","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119459","1483125569","1483125597","1483119459","1","8","0","-1","28","6110","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119462","1483125584","1483125610","1483119462","1","8","0","-1","26","6122","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119492","1483125600","1483125625","1483119492","1","8","0","-1","25","6108","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119500","1483125611","1483125631","1483119500","1","8","0","-1","20","6111","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119505","1483125616","1483125634","1483119505","1","8","0","-1","18","6111","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119506","1483125625","1483125650","1483119506","1","8","0","-1","25","6119","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119566","1483125670","1483125699","1483119566","1","8","0","-1","29","6104","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119594","1483125696","1483125717","1483119594","1","8","0","-1","21","6102","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119607","1483125708","1483125731","1483119607","1","8","0","-1","23","6101","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119608","1483125718","1483125747","1483119608","1","8","0","-1","29","6110","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119651","1483125763","1483125782","1483119651","1","8","0","-1","19","6112","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119664","1483125778","1483125795","1483119664","1","8","0","-1","17","6114","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119665","1483125781","1483125808","1483119665","1","8","0","-1","27","6116","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119710","1483125784","1483125802","1483119710","1","8","0","-1","18","6074","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119718","1483125796","1483125823","1483119718","1","8","0","-1","27","6078","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119725","1483125802","1483125822","1483119725","1","8","0","-1","20","6077","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119734","1483125804","1483125825","1483119734","1","8","0","-1","21","6070","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119796","1483125826","1483125850","1483119796","1","8","0","-1","24","6030","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119799","1483125828","1483125852","1483119799","1","8","0","-1","24","6029","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119865","1483125858","1483125886","1483119865","1","8","0","-1","28","5993","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119943","1483125919","1483125948","1483119943","1","8","0","-1","29","5976","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119956","1483125941","1483125969","1483119956","1","8","0","-1","28","5985","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120010","1483125989","1483126015","1483120010","1","8","0","-1","26","5979","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120079","1483126095","1483126119","1483120079","1","8","0","-1","24","6016","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120099","1483126106","1483126132","1483120099","1","8","0","-1","26","6007","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120102","1483126106","1483126135","1483120102","1","8","0","-1","29","6004","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120103","1483126113","1483126142","1483120103","1","8","0","-1","29","6010","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120136","1483126136","1483126154","1483120136","1","8","0","-1","18","6000","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120136","1483126143","1483126161","1483120136","1","8","0","-1","18","6007","144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120157","1483126154","1483126174","1483120157","1","8","0","-1","20","5997","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120166","1483126162","1483126189","1483120166","1","8","0","-1","27","5996","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120210","1483126204","1483126225","1483120210","1","8","0","-1","21","5994","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120215","1483126216","1483126233","1483120215","1","8","0","-1","17","6001","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120230","1483126234","1483126256","1483120230","1","8","0","-1","22","6004","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120253","1483126248","1483126267","1483120253","1","8","0","-1","19","5995","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120306","1483126271","1483126291","1483120306","1","8","0","-1","20","5965","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120320","1483126292","1483126321","1483120320","1","8","0","-1","29","5972","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120331","1483126311","1483126338","1483120331","1","8","0","-1","27","5980","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120356","1483126322","1483126350","1483120356","1","8","0","-1","28","5966","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120361","1483126338","1483126362","1483120361","1","8","0","-1","24","5977","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120362","1483126344","1483126359","1483120362","1","8","0","-1","15","5982","120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988860","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120436","1483126371","1483126398","1483120436","1","8","0","-1","27","5935","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120454","1483126398","1483126415","1483120454","1","8","0","-1","17","5944","136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120457","1483126416","1483126444","1483120457","1","8","0","-1","28","5959","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120490","1483126428","1483126457","1483120490","1","8","0","-1","29","5938","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120496","1483126429","1483126455","1483120496","1","8","0","-1","26","5933","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120497","1483126448","1483126474","1483120497","1","8","0","-1","26","5951","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120570","1483126502","1483126529","1483120570","1","8","0","-1","27","5932","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120592","1483126516","1483126540","1483120592","1","8","0","-1","24","5924","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120592","1483126517","1483126542","1483120592","1","8","0","-1","25","5925","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120593","1483126530","1483126549","1483120593","1","8","0","-1","19","5937","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120659","1483126556","1483126572","1483120659","1","8","0","-1","16","5897","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988922","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120662","1483126572","1483126596","1483120662","1","8","0","-1","24","5910","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120764","1483126692","1483126717","1483120764","1","8","0","-1","25","5928","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120785","1483126718","1483126746","1483120785","1","8","0","-1","28","5933","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120797","1483126723","1483126750","1483120797","1","8","0","-1","27","5926","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120805","1483126741","1483126768","1483120805","1","8","0","-1","27","5936","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["988984","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120858","1483126788","1483126817","1483120858","1","8","0","-1","29","5930","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120926","1483126852","1483126877","1483120926","1","8","0","-1","25","5926","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120934","1483126854","1483126879","1483120934","1","8","0","-1","25","5920","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120959","1483126877","1483126902","1483120959","1","8","0","-1","25","5918","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989010","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120960","1483126880","1483126901","1483120960","1","8","0","-1","21","5920","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121000","1483126920","1483126945","1483121000","1","8","0","-1","25","5920","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121000","1483126922","1483126945","1483121000","1","8","0","-1","23","5922","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121142","1483127036","1483127065","1483121142","1","8","0","-1","29","5894","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121156","1483127042","1483127071","1483121156","1","8","0","-1","29","5886","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121174","1483127062","1483127086","1483121174","1","8","0","-1","24","5888","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121231","1483127089","1483127112","1483121231","1","8","0","-1","23","5858","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121318","1483127177","1483127204","1483121318","1","8","0","-1","27","5859","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121318","1483127200","1483127227","1483121318","1","8","0","-1","27","5882","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121323","1483127205","1483127227","1483121323","1","8","0","-1","22","5882","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121324","1483127207","1483127231","1483121324","1","8","0","-1","24","5883","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121343","1483127212","1483127228","1483121343","1","8","0","-1","16","5869","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121389","1483127246","1483127271","1483121389","1","8","0","-1","25","5857","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121467","1483127320","1483127339","1483121467","1","8","0","-1","19","5853","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121469","1483127321","1483127350","1483121469","1","8","0","-1","29","5852","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121470","1483127334","1483127357","1483121470","1","8","0","-1","23","5864","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121487","1483127339","1483127363","1483121487","1","8","0","-1","24","5852","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121584","1483127449","1483127478","1483121584","1","8","0","-1","29","5865","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121595","1483127455","1483127480","1483121595","1","8","0","-1","25","5860","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121608","1483127478","1483127497","1483121608","1","8","0","-1","19","5870","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121647","1483127501","1483127529","1483121647","1","8","0","-1","28","5854","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121651","1483127522","1483127549","1483121651","1","8","0","-1","27","5871","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121670","1483127530","1483127546","1483121670","1","8","0","-1","16","5860","128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121789","1483127733","1483127761","1483121789","1","8","0","-1","28","5944","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121798","1483127743","1483127770","1483121798","1","8","0","-1","27","5945","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121811","1483127761","1483127786","1483121811","1","8","0","-1","25","5950","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121814","1483127766","1483127789","1483121814","1","8","0","-1","23","5952","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121814","1483127770","1483127790","1483121814","1","8","0","-1","20","5956","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121877","1483127847","1483127873","1483121877","1","8","0","-1","26","5970","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121888","1483127873","1483127899","1483121888","1","8","0","-1","26","5985","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122003","1483128027","1483128054","1483122003","1","8","0","-1","27","6024","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122006","1483128041","1483128065","1483122006","1","8","0","-1","24","6035","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122012","1483128055","1483128076","1483122012","1","8","0","-1","21","6043","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122052","1483128076","1483128097","1483122052","1","8","0","-1","21","6024","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122073","1483128099","1483128120","1483122073","1","8","0","-1","21","6026","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122095","1483128121","1483128148","1483122095","1","8","0","-1","27","6026","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122274","1483128228","1483128257","1483122274","1","8","0","-1","29","5954","232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122579","1483128514","1483128534","1483122579","1","8","0","-1","20","5935","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122675","1483128591","1483128611","1483122675","1","8","0","-1","20","5916","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122702","1483128612","1483128631","1483122702","1","8","0","-1","19","5910","152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122734","1483128647","1483128669","1483122734","1","8","0","-1","22","5913","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122750","1483128673","1483128697","1483122750","1","8","0","-1","24","5923","192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122847","1483128737","1483128765","1483122847","1","8","0","-1","28","5890","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122867","1483128815","1483128842","1483122867","1","8","0","-1","27","5948","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122892","1483128854","1483128876","1483122892","1","8","0","-1","22","5962","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122902","1483128861","1483128887","1483122902","1","8","0","-1","26","5959","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122924","1483128877","1483128902","1483122924","1","8","0","-1","25","5953","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122942","1483128897","1483128922","1483122942","1","8","0","-1","25","5955","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122956","1483128903","1483128930","1483122956","1","8","0","-1","27","5947","216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123051","1483129050","1483129078","1483123051","1","8","0","-1","28","5999","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123146","1483129147","1483129167","1483123146","1","8","0","-1","20","6001","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123202","1483129212","1483129240","1483123202","1","8","0","-1","28","6010","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123500","1483129633","1483129661","1483123500","1","8","0","-1","28","6133","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123515","1483129662","1483129690","1483123515","1","8","0","-1","28","6147","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123534","1483129694","1483129714","1483123534","1","8","0","-1","20","6160","160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123544","1483129714","1483129736","1483123544","1","8","0","-1","22","6170","176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123571","1483129727","1483129747","1483123571","1","8","0","-1","20","6156","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123661","1483129849","1483129878","1483123661","1","8","0","-1","29","6188","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123694","1483129882","1483129911","1483123694","1","8","0","-1","29","6188","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123700","1483129907","1483129931","1483123700","1","8","0","-1","24","6207","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123792","1483129998","1483130021","1483123792","1","8","0","-1","23","6206","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123886","1483130088","1483130114","1483123886","1","8","0","-1","26","6202","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123949","1483130207","1483130230","1483123949","1","8","0","-1","23","6258","184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123960","1483130232","1483130258","1483123960","1","8","0","-1","26","6272","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124012","1483130273","1483130296","1483124012","1","8","0","-1","23","6261","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124050","1483130308","1483130332","1483124050","1","8","0","-1","24","6258","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124072","1483130332","1483130352","1483124072","1","8","0","-1","20","6260","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124079","1483130339","1483130355","1483124079","1","8","0","-1","16","6260","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989924","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124093","1483130356","1483130383","1483124093","1","8","0","-1","27","6263","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124160","1483130402","1483130423","1483124160","1","8","0","-1","21","6242","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124171","1483130424","1483130452","1483124171","1","8","0","-1","28","6253","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124189","1483130436","1483130457","1483124189","1","8","0","-1","21","6247","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124196","1483130453","1483130475","1483124196","1","8","0","-1","22","6257","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124205","1483130457","1483130482","1483124205","1","8","0","-1","25","6252","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124227","1483130458","1483130476","1483124227","1","8","0","-1","18","6231","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124242","1483130461","1483130486","1483124242","1","8","0","-1","25","6219","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124306","1483130483","1483130505","1483124306","1","8","0","-1","22","6177","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124313","1483130487","1483130515","1483124313","1","8","0","-1","28","6174","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989974","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124314","1483130495","1483130516","1483124314","1","8","0","-1","21","6181","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124315","1483130506","1483130526","1483124315","1","8","0","-1","20","6191","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989978","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124318","1483130506","1483130532","1483124318","1","8","0","-1","26","6188","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["989980","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124320","1483130507","1483130529","1483124320","1","8","0","-1","22","6187","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124425","1483130552","1483130581","1483124425","1","8","0","-1","29","6127","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124437","1483130564","1483130589","1483124437","1","8","0","-1","25","6127","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124514","1483130630","1483130653","1483124514","1","8","0","-1","23","6116","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124593","1483130685","1483130714","1483124593","1","8","0","-1","29","6092","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124655","1483130700","1483130721","1483124655","1","8","0","-1","21","6045","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124664","1483130714","1483130743","1483124664","1","8","0","-1","29","6050","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124670","1483130722","1483130746","1483124670","1","8","0","-1","24","6052","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124713","1483130773","1483130797","1483124713","1","8","0","-1","24","6060","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124727","1483130795","1483130820","1483124727","1","8","0","-1","25","6068","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124732","1483130808","1483130826","1483124732","1","8","0","-1","18","6076","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124775","1483130847","1483130873","1483124775","1","8","0","-1","26","6072","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124792","1483130864","1483130879","1483124792","1","8","0","-1","15","6072","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124821","1483130880","1483130901","1483124821","1","8","0","-1","21","6059","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124821","1483130882","1483130902","1483124821","1","8","0","-1","20","6061","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124822","1483130887","1483130904","1483124822","1","8","0","-1","17","6065","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124829","1483130901","1483130919","1483124829","1","8","0","-1","18","6072","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124833","1483130902","1483130922","1483124833","1","8","0","-1","20","6069","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124839","1483130902","1483130921","1483124839","1","8","0","-1","19","6063","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124862","1483130908","1483130931","1483124862","1","8","0","-1","23","6046","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124864","1483130920","1483130937","1483124864","1","8","0","-1","17","6056","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124865","1483130922","1483130935","1483124865","1","8","0","-1","13","6057","104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124866","1483130923","1483130936","1483124866","1","8","0","-1","13","6057","104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124877","1483130928","1483130947","1483124877","1","8","0","-1","19","6051","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124894","1483130936","1483130956","1483124894","1","8","0","-1","20","6042","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124894","1483130938","1483130964","1483124894","1","8","0","-1","26","6044","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124951","1483130983","1483131006","1483124951","1","8","0","-1","23","6032","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124962","1483130996","1483131024","1483124962","1","8","0","-1","28","6034","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124997","1483131034","1483131052","1483124997","1","8","0","-1","18","6037","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124997","1483131046","1483131070","1483124997","1","8","0","-1","24","6049","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125014","1483131053","1483131080","1483125014","1","8","0","-1","27","6039","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125019","1483131057","1483131078","1483125019","1","8","0","-1","21","6038","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125078","1483131106","1483131133","1483125078","1","8","0","-1","27","6028","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990218","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125084","1483131123","1483131151","1483125084","1","8","0","-1","28","6039","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125123","1483131134","1483131158","1483125123","1","8","0","-1","24","6011","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125143","1483131148","1483131173","1483125143","1","8","0","-1","25","6005","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125148","1483131152","1483131177","1483125148","1","8","0","-1","25","6004","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125155","1483131169","1483131189","1483125155","1","8","0","-1","20","6014","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125240","1483131233","1483131259","1483125240","1","8","0","-1","26","5993","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125251","1483131249","1483131266","1483125251","1","8","0","-1","17","5998","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125259","1483131260","1483131288","1483125259","1","8","0","-1","28","6001","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125260","1483131263","1483131292","1483125260","1","8","0","-1","29","6003","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125266","1483131267","1483131285","1483125266","1","8","0","-1","18","6001","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125284","1483131286","1483131303","1483125284","1","8","0","-1","17","6002","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125290","1483131288","1483131304","1483125290","1","8","0","-1","16","5998","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125308","1483131293","1483131315","1483125308","1","8","0","-1","22","5985","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125315","1483131300","1483131328","1483125315","1","8","0","-1","28","5985","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125363","1483131304","1483131320","1483125363","1","8","0","-1","16","5941","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125372","1483131309","1483131328","1483125372","1","8","0","-1","19","5937","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125374","1483131316","1483131339","1483125374","1","8","0","-1","23","5942","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125389","1483131320","1483131349","1483125389","1","8","0","-1","29","5931","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125391","1483131328","1483131354","1483125391","1","8","0","-1","26","5937","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125392","1483131329","1483131356","1483125392","1","8","0","-1","27","5937","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125401","1483131331","1483131346","1483125401","1","8","0","-1","15","5930","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125426","1483131339","1483131366","1483125426","1","8","0","-1","27","5913","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125431","1483131346","1483131365","1483125431","1","8","0","-1","19","5915","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125443","1483131355","1483131378","1483125443","1","8","0","-1","23","5912","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125448","1483131357","1483131380","1483125448","1","8","0","-1","23","5909","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125463","1483131367","1483131396","1483125463","1","8","0","-1","29","5904","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125464","1483131379","1483131402","1483125464","1","8","0","-1","23","5915","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125473","1483131381","1483131404","1483125473","1","8","0","-1","23","5908","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125473","1483131391","1483131413","1483125473","1","8","0","-1","22","5918","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125495","1483131403","1483131423","1483125495","1","8","0","-1","20","5908","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125497","1483131404","1483131425","1483125497","1","8","0","-1","21","5907","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125499","1483131414","1483131431","1483125499","1","8","0","-1","17","5915","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125513","1483131422","1483131441","1483125513","1","8","0","-1","19","5909","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125517","1483131424","1483131439","1483125517","1","8","0","-1","15","5907","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125518","1483131425","1483131449","1483125518","1","8","0","-1","24","5907","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125535","1483131440","1483131468","1483125535","1","8","0","-1","28","5905","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125569","1483131468","1483131490","1483125569","1","8","0","-1","22","5899","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125584","1483131473","1483131498","1483125584","1","8","0","-1","25","5889","200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125595","1483131490","1483131511","1483125595","1","8","0","-1","21","5895","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125599","1483131498","1483131523","1483125599","1","8","0","-1","25","5899","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125616","1483131512","1483131535","1483125616","1","8","0","-1","23","5896","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125631","1483131523","1483131541","1483125631","1","8","0","-1","18","5892","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990372","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125632","1483131528","1483131551","1483125632","1","8","0","-1","23","5896","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125635","1483131538","1483131567","1483125635","1","8","0","-1","29","5903","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125650","1483131542","1483131562","1483125650","1","8","0","-1","20","5892","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125717","1483131640","1483131656","1483125717","1","8","0","-1","16","5923","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125732","1483131646","1483131665","1483125732","1","8","0","-1","19","5914","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125748","1483131657","1483131678","1483125748","1","8","0","-1","21","5909","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990412","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125762","1483131666","1483131687","1483125762","1","8","0","-1","21","5904","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125777","1483131671","1483131695","1483125777","1","8","0","-1","24","5894","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125781","1483131676","1483131692","1483125781","1","8","0","-1","16","5895","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125782","1483131679","1483131706","1483125782","1","8","0","-1","27","5897","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990422","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125784","1483131687","1483131702","1483125784","1","8","0","-1","15","5903","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990424","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125795","1483131693","1483131719","1483125795","1","8","0","-1","26","5898","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125802","1483131695","1483131723","1483125802","1","8","0","-1","28","5893","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125864","1483131804","1483131832","1483125864","1","8","0","-1","28","5940","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125891","1483131832","1483131857","1483125891","1","8","0","-1","25","5941","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125898","1483131850","1483131877","1483125898","1","8","0","-1","27","5952","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125990","1483131915","1483131938","1483125990","1","8","0","-1","23","5925","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126075","1483131954","1483131977","1483126075","1","8","0","-1","23","5879","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126105","1483131977","1483132002","1483126105","1","8","0","-1","25","5872","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126106","1483131986","1483132006","1483126106","1","8","0","-1","20","5880","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126132","1483132004","1483132026","1483126132","1","8","0","-1","22","5872","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126133","1483132007","1483132027","1483126133","1","8","0","-1","20","5874","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126142","1483132022","1483132050","1483126142","1","8","0","-1","28","5880","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126154","1483132028","1483132057","1483126154","1","8","0","-1","29","5874","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126154","1483132028","1483132057","1483126154","1","8","0","-1","29","5874","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126204","1483132076","1483132103","1483126204","1","8","0","-1","27","5872","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126233","1483132100","1483132125","1483126233","1","8","0","-1","25","5867","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126237","1483132107","1483132135","1483126237","1","8","0","-1","28","5870","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126259","1483132126","1483132153","1483126259","1","8","0","-1","27","5867","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126298","1483132156","1483132184","1483126298","1","8","0","-1","28","5858","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126350","1483132249","1483132277","1483126350","1","8","0","-1","28","5899","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126359","1483132258","1483132278","1483126359","1","8","0","-1","20","5899","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126370","1483132277","1483132304","1483126370","1","8","0","-1","27","5907","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126427","1483132328","1483132349","1483126427","1","8","0","-1","21","5901","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126444","1483132350","1483132379","1483126444","1","8","0","-1","29","5906","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126448","1483132359","1483132377","1483126448","1","8","0","-1","18","5911","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126455","1483132378","1483132406","1483126455","1","8","0","-1","28","5923","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126457","1483132380","1483132401","1483126457","1","8","0","-1","21","5923","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126474","1483132386","1483132402","1483126474","1","8","0","-1","16","5912","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126482","1483132402","1483132420","1483126482","1","8","0","-1","18","5920","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126515","1483132435","1483132460","1483126515","1","8","0","-1","25","5920","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126545","1483132465","1483132484","1483126545","1","8","0","-1","19","5920","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126547","1483132466","1483132493","1483126547","1","8","0","-1","27","5919","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126572","1483132510","1483132528","1483126572","1","8","0","-1","18","5938","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126592","1483132519","1483132541","1483126592","1","8","0","-1","22","5927","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126596","1483132529","1483132545","1483126596","1","8","0","-1","16","5933","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126611","1483132542","1483132559","1483126611","1","8","0","-1","17","5931","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126633","1483132557","1483132576","1483126633","1","8","0","-1","19","5924","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126648","1483132560","1483132584","1483126648","1","8","0","-1","24","5912","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126653","1483132572","1483132589","1483126653","1","8","0","-1","17","5919","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126670","1483132585","1483132613","1483126670","1","8","0","-1","28","5915","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126677","1483132589","1483132618","1483126677","1","8","0","-1","29","5912","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126698","1483132606","1483132629","1483126698","1","8","0","-1","23","5908","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126702","1483132613","1483132641","1483126702","1","8","0","-1","28","5911","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126723","1483132624","1483132649","1483126723","1","8","0","-1","25","5901","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126741","1483132629","1483132642","1483126741","1","8","0","-1","13","5888","104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126746","1483132641","1483132660","1483126746","1","8","0","-1","19","5895","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126750","1483132643","1483132661","1483126750","1","8","0","-1","18","5893","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126750","1483132643","1483132661","1483126750","1","8","0","-1","18","5893","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126767","1483132650","1483132678","1483126767","1","8","0","-1","28","5883","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126784","1483132662","1483132674","1483126784","1","8","0","-1","12","5878","96","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126786","1483132662","1483132676","1483126786","1","8","0","-1","14","5876","112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126788","1483132675","1483132686","1483126788","1","8","0","-1","11","5887","88","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126800","1483132676","1483132691","1483126800","1","8","0","-1","15","5876","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126819","1483132686","1483132711","1483126819","1","8","0","-1","25","5867","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126851","1483132718","1483132745","1483126851","1","8","0","-1","27","5867","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126860","1483132727","1483132747","1483126860","1","8","0","-1","20","5867","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126877","1483132745","1483132773","1483126877","1","8","0","-1","28","5868","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126879","1483132748","1483132771","1483126879","1","8","0","-1","23","5869","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126901","1483132772","1483132797","1483126901","1","8","0","-1","25","5871","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126921","1483132794","1483132818","1483126921","1","8","0","-1","24","5873","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126939","1483132802","1483132824","1483126939","1","8","0","-1","22","5863","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126963","1483132824","1483132853","1483126963","1","8","0","-1","29","5861","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127026","1483132891","1483132917","1483127026","1","8","0","-1","26","5865","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127036","1483132919","1483132946","1483127036","1","8","0","-1","27","5883","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127062","1483132934","1483132960","1483127062","1","8","0","-1","26","5872","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127083","1483132955","1483132978","1483127083","1","8","0","-1","23","5872","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127089","1483132976","1483132999","1483127089","1","8","0","-1","23","5887","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990826","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127142","1483132997","1483133017","1483127142","1","8","0","-1","20","5855","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127143","1483132999","1483133022","1483127143","1","8","0","-1","23","5856","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127176","1483133023","1483133040","1483127176","1","8","0","-1","17","5847","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990842","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127204","1483133041","1483133058","1483127204","1","8","0","-1","17","5837","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127211","1483133051","1483133071","1483127211","1","8","0","-1","20","5840","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127231","1483133089","1483133108","1483127231","1","8","0","-1","19","5858","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127300","1483133160","1483133186","1483127300","1","8","0","-1","26","5860","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127320","1483133178","1483133207","1483127320","1","8","0","-1","29","5858","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990882","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127334","1483133189","1483133218","1483127334","1","8","0","-1","29","5855","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127358","1483133208","1483133225","1483127358","1","8","0","-1","17","5850","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127373","1483133216","1483133232","1483127373","1","8","0","-1","16","5843","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127379","1483133218","1483133232","1483127379","1","8","0","-1","14","5839","112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127383","1483133221","1483133235","1483127383","1","8","0","-1","14","5838","112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127398","1483133226","1483133241","1483127398","1","8","0","-1","15","5828","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127401","1483133233","1483133261","1483127401","1","8","0","-1","28","5832","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127402","1483133233","1483133254","1483127402","1","8","0","-1","21","5831","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127425","1483133235","1483133260","1483127425","1","8","0","-1","25","5810","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127434","1483133239","1483133255","1483127434","1","8","0","-1","16","5805","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127449","1483133242","1483133263","1483127449","1","8","0","-1","21","5793","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127489","1483133264","1483133289","1483127489","1","8","0","-1","25","5775","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127497","1483133288","1483133307","1483127497","1","8","0","-1","19","5791","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127500","1483133290","1483133312","1483127500","1","8","0","-1","22","5790","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127521","1483133295","1483133308","1483127521","1","8","0","-1","13","5774","104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990942","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127527","1483133303","1483133324","1483127527","1","8","0","-1","21","5776","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127529","1483133308","1483133334","1483127529","1","8","0","-1","26","5779","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127532","1483133308","1483133332","1483127532","1","8","0","-1","24","5776","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990952","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127546","1483133322","1483133345","1483127546","1","8","0","-1","23","5776","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127549","1483133324","1483133350","1483127549","1","8","0","-1","26","5775","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127587","1483133333","1483133353","1483127587","1","8","0","-1","20","5746","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127590","1483133346","1483133361","1483127590","1","8","0","-1","15","5756","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127645","1483133353","1483133378","1483127645","1","8","0","-1","25","5708","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127661","1483133360","1483133389","1483127661","1","8","0","-1","29","5699","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127663","1483133361","1483133382","1483127663","1","8","0","-1","21","5698","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127668","1483133373","1483133391","1483127668","1","8","0","-1","18","5705","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127713","1483133393","1483133421","1483127713","1","8","0","-1","28","5680","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127723","1483133406","1483133429","1483127723","1","8","0","-1","23","5683","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127725","1483133413","1483133432","1483127725","1","8","0","-1","19","5688","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["990996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127742","1483133429","1483133454","1483127742","1","8","0","-1","25","5687","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991010","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127782","1483133464","1483133480","1483127782","1","8","0","-1","16","5682","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127786","1483133468","1483133493","1483127786","1","8","0","-1","25","5682","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127789","1483133481","1483133508","1483127789","1","8","0","-1","27","5692","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127802","1483133494","1483133522","1483127802","1","8","0","-1","28","5692","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127816","1483133504","1483133524","1483127816","1","8","0","-1","20","5688","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127847","1483133516","1483133526","1483127847","1","8","0","-1","10","5669","80","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127853","1483133517","1483133532","1483127853","1","8","0","-1","15","5664","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127856","1483133520","1483133535","1483127856","1","8","0","-1","15","5664","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127873","1483133523","1483133545","1483127873","1","8","0","-1","22","5650","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127875","1483133524","1483133549","1483127875","1","8","0","-1","25","5649","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127893","1483133526","1483133547","1483127893","1","8","0","-1","21","5633","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127936","1483133546","1483133566","1483127936","1","8","0","-1","20","5610","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127940","1483133548","1483133562","1483127940","1","8","0","-1","14","5608","112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127944","1483133549","1483133568","1483127944","1","8","0","-1","19","5605","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128027","1483133569","1483133587","1483128027","1","8","0","-1","18","5542","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128040","1483133587","1483133606","1483128040","1","8","0","-1","19","5547","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128065","1483133607","1483133623","1483128065","1","8","0","-1","16","5542","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128076","1483133627","1483133640","1483128076","1","8","0","-1","13","5551","104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128096","1483133637","1483133664","1483128096","1","8","0","-1","27","5541","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128097","1483133638","1483133662","1483128097","1","8","0","-1","24","5541","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128103","1483133641","1483133663","1483128103","1","8","0","-1","22","5538","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128142","1483133688","1483133715","1483128142","1","8","0","-1","27","5546","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128148","1483133696","1483133722","1483128148","1","8","0","-1","26","5548","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128176","1483133696","1483133720","1483128176","1","8","0","-1","24","5520","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128182","1483133699","1483133723","1483128182","1","8","0","-1","24","5517","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128220","1483133721","1483133739","1483128220","1","8","0","-1","18","5501","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128228","1483133723","1483133739","1483128228","1","8","0","-1","16","5495","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128298","1483133766","1483133784","1483128298","1","8","0","-1","18","5468","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128299","1483133784","1483133802","1483128299","1","8","0","-1","18","5485","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128310","1483133789","1483133817","1483128310","1","8","0","-1","28","5479","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128315","1483133790","1483133810","1483128315","1","8","0","-1","20","5475","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128324","1483133802","1483133823","1483128324","1","8","0","-1","21","5478","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128355","1483133809","1483133827","1483128355","1","8","0","-1","18","5454","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128367","1483133811","1483133827","1483128367","1","8","0","-1","16","5444","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128372","1483133811","1483133828","1483128372","1","8","0","-1","17","5439","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128384","1483133817","1483133843","1483128384","1","8","0","-1","26","5433","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128410","1483133824","1483133847","1483128410","1","8","0","-1","23","5414","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128412","1483133827","1483133852","1483128412","1","8","0","-1","25","5415","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128434","1483133829","1483133849","1483128434","1","8","0","-1","20","5395","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128481","1483133882","1483133906","1483128481","1","8","0","-1","24","5401","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128484","1483133886","1483133913","1483128484","1","8","0","-1","27","5402","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128572","1483133997","1483134024","1483128572","1","8","0","-1","27","5425","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128646","1483134091","1483134109","1483128646","1","8","0","-1","18","5445","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128672","1483134110","1483134130","1483128672","1","8","0","-1","20","5438","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128684","1483134125","1483134147","1483128684","1","8","0","-1","22","5441","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128691","1483134130","1483134157","1483128691","1","8","0","-1","27","5439","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128696","1483134131","1483134149","1483128696","1","8","0","-1","18","5435","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128715","1483134150","1483134167","1483128715","1","8","0","-1","17","5435","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128722","1483134157","1483134177","1483128722","1","8","0","-1","20","5435","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128727","1483134168","1483134182","1483128727","1","8","0","-1","14","5441","112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128728","1483134172","1483134191","1483128728","1","8","0","-1","19","5444","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128737","1483134177","1483134201","1483128737","1","8","0","-1","24","5440","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128865","1483134282","1483134303","1483128865","1","8","0","-1","21","5417","168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128869","1483134304","1483134326","1483128869","1","8","0","-1","22","5435","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128871","1483134304","1483134326","1483128871","1","8","0","-1","22","5433","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128877","1483134309","1483134336","1483128877","1","8","0","-1","27","5432","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128884","1483134326","1483134352","1483128884","1","8","0","-1","26","5442","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128887","1483134327","1483134348","1483128887","1","8","0","-1","21","5440","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128896","1483134327","1483134345","1483128896","1","8","0","-1","18","5431","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128945","1483134349","1483134371","1483128945","1","8","0","-1","22","5404","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128945","1483134352","1483134370","1483128945","1","8","0","-1","18","5407","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128948","1483134363","1483134392","1483128948","1","8","0","-1","29","5415","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129036","1483134427","1483134448","1483129036","1","8","0","-1","21","5391","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129049","1483134442","1483134461","1483129049","1","8","0","-1","19","5393","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129052","1483134461","1483134480","1483129052","1","8","0","-1","19","5409","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991356","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129116","1483134528","1483134553","1483129116","1","8","0","-1","25","5412","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129141","1483134554","1483134579","1483129141","1","8","0","-1","25","5413","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129168","1483134589","1483134612","1483129168","1","8","0","-1","23","5421","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129184","1483134605","1483134625","1483129184","1","8","0","-1","20","5421","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129194","1483134612","1483134641","1483129194","1","8","0","-1","29","5418","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129212","1483134626","1483134649","1483129212","1","8","0","-1","23","5414","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129233","1483134643","1483134671","1483129233","1","8","0","-1","28","5410","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129240","1483134649","1483134672","1483129240","1","8","0","-1","23","5409","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129240","1483134660","1483134686","1483129240","1","8","0","-1","26","5420","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129254","1483134670","1483134694","1483129254","1","8","0","-1","24","5416","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129333","1483134722","1483134737","1483129333","1","8","0","-1","15","5389","120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129360","1483134728","1483134752","1483129360","1","8","0","-1","24","5368","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129361","1483134737","1483134759","1483129361","1","8","0","-1","22","5376","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129413","1483134753","1483134779","1483129413","1","8","0","-1","26","5340","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129456","1483134783","1483134810","1483129456","1","8","0","-1","27","5327","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129501","1483134825","1483134847","1483129501","1","8","0","-1","22","5324","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129519","1483134848","1483134873","1483129519","1","8","0","-1","25","5329","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129686","1483134991","1483135017","1483129686","1","8","0","-1","26","5305","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129747","1483135096","1483135120","1483129747","1","8","0","-1","24","5349","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129778","1483135150","1483135176","1483129778","1","8","0","-1","26","5372","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129803","1483135198","1483135220","1483129803","1","8","0","-1","22","5395","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129804","1483135201","1483135230","1483129804","1","8","0","-1","29","5397","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129815","1483135220","1483135241","1483129815","1","8","0","-1","21","5405","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129829","1483135226","1483135248","1483129829","1","8","0","-1","22","5397","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129878","1483135252","1483135272","1483129878","1","8","0","-1","20","5374","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129979","1483135335","1483135355","1483129979","1","8","0","-1","20","5356","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129998","1483135347","1483135370","1483129998","1","8","0","-1","23","5349","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129999","1483135356","1483135382","1483129999","1","8","0","-1","26","5357","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130030","1483135383","1483135406","1483130030","1","8","0","-1","23","5353","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130103","1483135460","1483135487","1483130103","1","8","0","-1","27","5357","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130182","1483135514","1483135541","1483130182","1","8","0","-1","27","5332","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130234","1483135569","1483135593","1483130234","1","8","0","-1","24","5335","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130376","1483135769","1483135796","1483130376","1","8","0","-1","27","5393","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130385","1483135797","1483135824","1483130385","1","8","0","-1","27","5412","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130423","1483135823","1483135852","1483130423","1","8","0","-1","29","5400","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130450","1483135878","1483135901","1483130450","1","8","0","-1","23","5428","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130486","1483135932","1483135961","1483130486","1","8","0","-1","29","5446","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130515","1483135965","1483135988","1483130515","1","8","0","-1","23","5450","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130516","1483135978","1483136001","1483130516","1","8","0","-1","23","5462","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130526","1483135982","1483135999","1483130526","1","8","0","-1","17","5456","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130532","1483135987","1483136009","1483130532","1","8","0","-1","22","5455","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130552","1483135989","1483136007","1483130552","1","8","0","-1","18","5437","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130569","1483136010","1483136028","1483130569","1","8","0","-1","18","5441","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130577","1483136010","1483136027","1483130577","1","8","0","-1","17","5433","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130587","1483136028","1483136057","1483130587","1","8","0","-1","29","5441","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130589","1483136030","1483136056","1483130589","1","8","0","-1","26","5441","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130590","1483136045","1483136073","1483130590","1","8","0","-1","28","5455","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130590","1483136055","1483136079","1483130590","1","8","0","-1","24","5465","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130601","1483136062","1483136087","1483130601","1","8","0","-1","25","5461","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130619","1483136096","1483136113","1483130619","1","8","0","-1","17","5477","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130619","1483136113","1483136135","1483130619","1","8","0","-1","22","5494","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130621","1483136116","1483136136","1483130621","1","8","0","-1","20","5495","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130655","1483136159","1483136181","1483130655","1","8","0","-1","22","5504","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130662","1483136169","1483136194","1483130662","1","8","0","-1","25","5507","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130734","1483136247","1483136276","1483130734","1","8","0","-1","29","5513","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130795","1483136294","1483136321","1483130795","1","8","0","-1","27","5499","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130797","1483136301","1483136330","1483130797","1","8","0","-1","29","5504","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130808","1483136301","1483136326","1483130808","1","8","0","-1","25","5493","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130820","1483136316","1483136338","1483130820","1","8","0","-1","22","5496","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130902","1483136404","1483136421","1483130902","1","8","0","-1","17","5502","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130939","1483136489","1483136514","1483130939","1","8","0","-1","25","5550","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130964","1483136518","1483136537","1483130964","1","8","0","-1","19","5554","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["991936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131034","1483136614","1483136642","1483131034","1","8","0","-1","28","5580","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131249","1483136993","1483137019","1483131249","1","8","0","-1","26","5744","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131304","1483137058","1483137082","1483131304","1","8","0","-1","24","5754","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131309","1483137077","1483137105","1483131309","1","8","0","-1","28","5768","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131329","1483137106","1483137135","1483131329","1","8","0","-1","29","5777","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131519","1483137388","1483137414","1483131519","1","8","0","-1","26","5869","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131614","1483137485","1483137505","1483131614","1","8","0","-1","20","5871","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131640","1483137487","1483137508","1483131640","1","8","0","-1","21","5847","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131646","1483137506","1483137531","1483131646","1","8","0","-1","25","5860","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131675","1483137582","1483137608","1483131675","1","8","0","-1","26","5907","208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131678","1483137586","1483137608","1483131678","1","8","0","-1","22","5908","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131807","1483137696","1483137722","1483131807","1","8","0","-1","26","5889","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131832","1483137712","1483137741","1483131832","1","8","0","-1","29","5880","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992220","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131873","1483137738","1483137766","1483131873","1","8","0","-1","28","5865","224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131892","1483137789","1483137813","1483131892","1","8","0","-1","24","5897","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131903","1483137795","1483137821","1483131903","1","8","0","-1","26","5892","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131915","1483137808","1483137833","1483131915","1","8","0","-1","25","5893","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131929","1483137813","1483137838","1483131929","1","8","0","-1","25","5884","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131931","1483137822","1483137843","1483131931","1","8","0","-1","21","5891","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131954","1483137844","1483137872","1483131954","1","8","0","-1","28","5890","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132082","1483137980","1483138007","1483132082","1","8","0","-1","27","5898","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132099","1483138003","1483138029","1483132099","1","8","0","-1","26","5904","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132103","1483138007","1483138031","1483132103","1","8","0","-1","24","5904","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132311","1483138252","1483138273","1483132311","1","8","0","-1","21","5941","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132338","1483138285","1483138310","1483132338","1","8","0","-1","25","5947","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132379","1483138321","1483138349","1483132379","1","8","0","-1","28","5942","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132485","1483138421","1483138447","1483132485","1","8","0","-1","26","5936","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992410","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132519","1483138448","1483138469","1483132519","1","8","0","-1","21","5929","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132528","1483138451","1483138474","1483132528","1","8","0","-1","23","5923","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132529","1483138474","1483138494","1483132529","1","8","0","-1","20","5945","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992424","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132545","1483138494","1483138519","1483132545","1","8","0","-1","25","5949","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132557","1483138494","1483138515","1483132557","1","8","0","-1","21","5937","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132571","1483138499","1483138520","1483132571","1","8","0","-1","21","5928","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132584","1483138520","1483138538","1483132584","1","8","0","-1","18","5936","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132589","1483138521","1483138548","1483132589","1","8","0","-1","27","5932","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132589","1483138521","1483138548","1483132589","1","8","0","-1","27","5932","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132606","1483138535","1483138563","1483132606","1","8","0","-1","28","5929","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132618","1483138549","1483138576","1483132618","1","8","0","-1","27","5931","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132661","1483138625","1483138652","1483132661","1","8","0","-1","27","5964","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132676","1483138650","1483138674","1483132676","1","8","0","-1","24","5974","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132748","1483138727","1483138756","1483132748","1","8","0","-1","29","5979","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132810","1483138817","1483138846","1483132810","1","8","0","-1","29","6007","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132853","1483138880","1483138908","1483132853","1","8","0","-1","28","6027","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132884","1483138883","1483138906","1483132884","1","8","0","-1","23","5999","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132890","1483138891","1483138920","1483132890","1","8","0","-1","29","6001","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133091","1483139167","1483139191","1483133091","1","8","0","-1","24","6076","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133101","1483139189","1483139210","1483133101","1","8","0","-1","21","6088","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133110","1483139211","1483139238","1483133110","1","8","0","-1","27","6101","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133112","1483139224","1483139248","1483133112","1","8","0","-1","24","6112","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133177","1483139268","1483139293","1483133177","1","8","0","-1","25","6091","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133190","1483139293","1483139321","1483133190","1","8","0","-1","28","6103","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133201","1483139294","1483139319","1483133201","1","8","0","-1","25","6093","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133202","1483139300","1483139329","1483133202","1","8","0","-1","29","6098","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133220","1483139330","1483139359","1483133220","1","8","0","-1","29","6110","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133232","1483139342","1483139363","1483133232","1","8","0","-1","21","6110","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133233","1483139360","1483139382","1483133233","1","8","0","-1","22","6127","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133235","1483139364","1483139386","1483133235","1","8","0","-1","22","6129","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133324","1483139517","1483139536","1483133324","1","8","0","-1","19","6193","152","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133373","1483139579","1483139607","1483133373","1","8","0","-1","28","6206","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133378","1483139580","1483139603","1483133378","1","8","0","-1","23","6202","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133382","1483139591","1483139613","1483133382","1","8","0","-1","22","6209","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133435","1483139694","1483139716","1483133435","1","8","0","-1","22","6259","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133511","1483139775","1483139799","1483133511","1","8","0","-1","24","6264","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133517","1483139789","1483139806","1483133517","1","8","0","-1","17","6272","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133519","1483139790","1483139819","1483133519","1","8","0","-1","29","6271","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133522","1483139792","1483139812","1483133522","1","8","0","-1","20","6270","160","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992788","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133525","1483139800","1483139823","1483133525","1","8","0","-1","23","6275","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133682","1483140057","1483140084","1483133682","1","8","0","-1","27","6375","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133732","1483140176","1483140202","1483133732","1","8","0","-1","26","6444","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133809","1483140316","1483140343","1483133809","1","8","0","-1","27","6507","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133817","1483140361","1483140385","1483133817","1","8","0","-1","24","6544","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133823","1483140365","1483140388","1483133823","1","8","0","-1","23","6542","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133824","1483140373","1483140397","1483133824","1","8","0","-1","24","6549","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["992932","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133885","1483140461","1483140482","1483133885","1","8","0","-1","21","6576","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134167","1483140795","1483140819","1483134167","1","8","0","-1","24","6628","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134171","1483140796","1483140821","1483134171","1","8","0","-1","25","6625","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134177","1483140803","1483140825","1483134177","1","8","0","-1","22","6626","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134191","1483140821","1483140848","1483134191","1","8","0","-1","27","6630","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134303","1483140879","1483140908","1483134303","1","8","0","-1","29","6576","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134348","1483140943","1483140968","1483134348","1","8","0","-1","25","6595","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134371","1483140964","1483140981","1483134371","1","8","0","-1","17","6593","136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134443","1483141027","1483141049","1483134443","1","8","0","-1","22","6584","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134461","1483141047","1483141069","1483134461","1","8","0","-1","22","6586","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134477","1483141050","1483141072","1483134477","1","8","0","-1","22","6573","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134511","1483141065","1483141094","1483134511","1","8","0","-1","29","6554","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134528","1483141070","1483141098","1483134528","1","8","0","-1","28","6542","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134660","1483141200","1483141229","1483134660","1","8","0","-1","29","6540","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134787","1483141408","1483141433","1483134787","1","8","0","-1","25","6621","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134942","1483141537","1483141563","1483134942","1","8","0","-1","26","6595","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134954","1483141549","1483141570","1483134954","1","8","0","-1","21","6595","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134960","1483141555","1483141580","1483134960","1","8","0","-1","25","6595","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135017","1483141588","1483141613","1483135017","1","8","0","-1","25","6571","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135037","1483141609","1483141633","1483135037","1","8","0","-1","24","6572","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135060","1483141622","1483141651","1483135060","1","8","0","-1","29","6562","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135093","1483141631","1483141658","1483135093","1","8","0","-1","27","6538","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135105","1483141637","1483141660","1483135105","1","8","0","-1","23","6532","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135114","1483141652","1483141675","1483135114","1","8","0","-1","23","6538","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135134","1483141661","1483141689","1483135134","1","8","0","-1","28","6527","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135146","1483141671","1483141687","1483135146","1","8","0","-1","16","6525","128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135151","1483141676","1483141701","1483135151","1","8","0","-1","25","6525","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135154","1483141686","1483141704","1483135154","1","8","0","-1","18","6532","144","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135166","1483141688","1483141710","1483135166","1","8","0","-1","22","6522","176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135176","1483141690","1483141717","1483135176","1","8","0","-1","27","6514","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135304","1483141831","1483141860","1483135304","1","8","0","-1","29","6527","232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135307","1483141837","1483141860","1483135307","1","8","0","-1","23","6530","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135355","1483141861","1483141886","1483135355","1","8","0","-1","25","6506","200","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135438","1483141933","1483141957","1483135438","1","8","0","-1","24","6495","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135514","1483142009","1483142035","1483135514","1","8","0","-1","26","6495","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135538","1483142036","1483142062","1483135538","1","8","0","-1","26","6498","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993406","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135634","1483142132","1483142153","1483135634","1","8","0","-1","21","6498","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135658","1483142140","1483142151","1483135658","1","8","0","-1","11","6482","88","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135680","1483142154","1483142175","1483135680","1","8","0","-1","21","6474","168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993422","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135714","1483142196","1483142224","1483135714","1","8","0","-1","28","6482","224","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135796","1483142270","1483142294","1483135796","1","8","0","-1","24","6474","192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135802","1483142288","1483142311","1483135802","1","8","0","-1","23","6486","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135877","1483142325","1483142348","1483135877","1","8","0","-1","23","6448","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135918","1483142349","1483142376","1483135918","1","8","0","-1","27","6431","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135919","1483142350","1483142377","1483135919","1","8","0","-1","27","6431","216","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135923","1483142368","1483142394","1483135923","1","8","0","-1","26","6445","208","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["993478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135935","1483142378","1483142401","1483135935","1","8","0","-1","23","6443","184","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177155","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116434","1483120090","1483120104","1483116434","1","8","0","-1","14","3656","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177158","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116435","1483120105","1483120124","1483116435","1","8","0","-1","19","3670","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177162","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116436","1483120125","1483120140","1483116436","1","8","0","-1","15","3689","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177166","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116436","1483120140","1483120159","1483116436","1","8","0","-1","19","3704","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177170","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116437","1483120159","1483120173","1483116437","1","8","0","-1","14","3722","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177173","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116438","1483120173","1483120187","1483116438","1","8","0","-1","14","3735","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177177","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116438","1483120187","1483120206","1483116438","1","8","0","-1","19","3749","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177181","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116439","1483120206","1483120228","1483116439","1","8","0","-1","22","3767","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177185","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116440","1483120228","1483120242","1483116440","1","8","0","-1","14","3788","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177191","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116441","1483120243","1483120254","1483116441","1","8","0","-1","11","3802","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177193","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116442","1483120254","1483120269","1483116442","1","8","0","-1","15","3812","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177195","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116442","1483120269","1483120285","1483116442","1","8","0","-1","16","3827","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177198","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116442","1483120285","1483120308","1483116442","1","8","0","-1","23","3843","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177202","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116443","1483120309","1483120322","1483116443","1","8","0","-1","13","3866","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177206","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116444","1483120322","1483120336","1483116444","1","8","0","-1","14","3878","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177209","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116444","1483120336","1483120356","1483116444","1","8","0","-1","20","3892","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177213","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116445","1483120356","1483120378","1483116445","1","8","0","-1","22","3911","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177217","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116446","1483120378","1483120391","1483116446","1","8","0","-1","13","3932","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177221","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116447","1483120392","1483120408","1483116447","1","8","0","-1","16","3945","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177224","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116447","1483120408","1483120420","1483116447","1","8","0","-1","12","3961","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177228","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116448","1483120420","1483120437","1483116448","1","8","0","-1","17","3972","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177232","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116449","1483120438","1483120452","1483116449","1","8","0","-1","14","3989","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177236","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116450","1483120453","1483120464","1483116450","1","8","0","-1","11","4003","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177239","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116450","1483120464","1483120487","1483116450","1","8","0","-1","23","4014","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177247","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116452","1483120524","1483120549","1483116452","1","8","0","-1","25","4072","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177251","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116453","1483120549","1483120568","1483116453","1","8","0","-1","19","4096","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177254","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116453","1483120568","1483120579","1483116453","1","8","0","-1","11","4115","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177259","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116454","1483120580","1483120605","1483116454","1","8","0","-1","25","4126","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177263","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116455","1483120606","1483120618","1483116455","1","8","0","-1","12","4151","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177267","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116456","1483120618","1483120628","1483116456","1","8","0","-1","10","4162","80","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177271","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116457","1483120629","1483120654","1483116457","1","8","0","-1","25","4172","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177283","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116459","1483120724","1483120740","1483116459","1","8","0","-1","16","4265","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177288","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116460","1483120740","1483120757","1483116460","1","8","0","-1","17","4280","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177291","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116461","1483120758","1483120785","1483116461","1","8","0","-1","27","4297","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177295","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116461","1483120785","1483120799","1483116461","1","8","0","-1","14","4324","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177299","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116462","1483120800","1483120814","1483116462","1","8","0","-1","14","4338","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177311","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116465","1483120893","1483120909","1483116465","1","8","0","-1","16","4428","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177317","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116466","1483120941","1483120954","1483116466","1","8","0","-1","13","4475","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177321","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116466","1483120954","1483120970","1483116466","1","8","0","-1","16","4488","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177325","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116467","1483120970","1483120986","1483116467","1","8","0","-1","16","4503","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177328","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116468","1483120986","1483121000","1483116468","1","8","0","-1","14","4518","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177332","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116469","1483121000","1483121021","1483116469","1","8","0","-1","21","4531","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177340","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116470","1483121077","1483121104","1483116470","1","8","0","-1","27","4607","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177343","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116471","1483121104","1483121120","1483116471","1","8","0","-1","16","4633","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177348","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116472","1483121120","1483121132","1483116472","1","8","0","-1","12","4648","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177352","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116473","1483121133","1483121149","1483116473","1","8","0","-1","16","4660","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177356","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116473","1483121149","1483121164","1483116473","1","8","0","-1","15","4676","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177359","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116474","1483121164","1483121185","1483116474","1","8","0","-1","21","4690","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177363","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116475","1483121185","1483121207","1483116475","1","8","0","-1","22","4710","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177368","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116476","1483121208","1483121232","1483116476","1","8","0","-1","24","4732","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177372","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116477","1483121233","1483121248","1483116477","1","8","0","-1","15","4756","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177375","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116477","1483121248","1483121263","1483116477","1","8","0","-1","15","4771","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177379","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116478","1483121263","1483121276","1483116478","1","8","0","-1","13","4785","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177383","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116479","1483121276","1483121292","1483116479","1","8","0","-1","16","4797","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177387","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116480","1483121292","1483121306","1483116480","1","8","0","-1","14","4812","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177391","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116480","1483121306","1483121319","1483116480","1","8","0","-1","13","4826","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177394","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116481","1483121319","1483121348","1483116481","1","8","0","-1","29","4838","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177402","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116482","1483121389","1483121410","1483116482","1","8","0","-1","21","4907","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177410","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116484","1483121446","1483121470","1483116484","1","8","0","-1","24","4962","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177414","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116485","1483121470","1483121498","1483116485","1","8","0","-1","28","4985","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177423","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116487","1483121537","1483121562","1483116487","1","8","0","-1","25","5050","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177438","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116490","1483121778","1483121799","1483116490","1","8","0","-1","21","5288","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177442","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116490","1483121799","1483121816","1483116490","1","8","0","-1","17","5309","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177446","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116491","1483121817","1483121834","1483116491","1","8","0","-1","17","5326","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177449","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116492","1483121834","1483121848","1483116492","1","8","0","-1","14","5342","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177453","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116492","1483121849","1483121861","1483116492","1","8","0","-1","12","5357","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177457","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116493","1483121862","1483121884","1483116493","1","8","0","-1","22","5369","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177461","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116494","1483121885","1483121906","1483116494","1","8","0","-1","21","5391","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177464","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116495","1483121907","1483121932","1483116495","1","8","0","-1","25","5412","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177468","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116495","1483121932","1483121947","1483116495","1","8","0","-1","15","5437","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177472","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116496","1483121948","1483121959","1483116496","1","8","0","-1","11","5452","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177476","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116497","1483121959","1483121976","1483116497","1","8","0","-1","17","5462","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177479","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116497","1483121976","1483121991","1483116497","1","8","0","-1","15","5479","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177483","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116498","1483121991","1483122010","1483116498","1","8","0","-1","19","5493","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177487","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116499","1483122010","1483122032","1483116499","1","8","0","-1","22","5511","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177498","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116501","1483122114","1483122129","1483116501","1","8","0","-1","15","5613","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177502","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116502","1483122130","1483122141","1483116502","1","8","0","-1","11","5628","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177506","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116503","1483122142","1483122157","1483116503","1","8","0","-1","15","5639","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177509","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116503","1483122158","1483122172","1483116503","1","8","0","-1","14","5655","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177513","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116504","1483122173","1483122185","1483116504","1","8","0","-1","12","5669","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177517","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116505","1483122185","1483122196","1483116505","1","8","0","-1","11","5680","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177527","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116507","1483122261","1483122274","1483116507","1","8","0","-1","13","5754","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177530","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116507","1483122274","1483122294","1483116507","1","8","0","-1","20","5767","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177535","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116509","1483122294","1483122310","1483116509","1","8","0","-1","16","5785","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177537","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116509","1483122310","1483122328","1483116509","1","8","0","-1","18","5801","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177540","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116509","1483122329","1483122350","1483116509","1","8","0","-1","21","5820","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177545","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116510","1483122351","1483122364","1483116510","1","8","0","-1","13","5841","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177548","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116511","1483122365","1483122376","1483116511","1","8","0","-1","11","5854","88","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177552","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116512","1483122377","1483122402","1483116512","1","8","0","-1","25","5865","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177556","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116513","1483122402","1483122423","1483116513","1","8","0","-1","21","5889","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177560","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116513","1483122424","1483122442","1483116513","1","8","0","-1","18","5911","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177563","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116514","1483122442","1483122460","1483116514","1","8","0","-1","18","5928","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177567","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116515","1483122460","1483122482","1483116515","1","8","0","-1","22","5945","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177571","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116515","1483122482","1483122501","1483116515","1","8","0","-1","19","5967","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177575","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116516","1483122502","1483122517","1483116516","1","8","0","-1","15","5986","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177578","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116517","1483122517","1483122530","1483116517","1","8","0","-1","13","6000","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177582","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116518","1483122530","1483122552","1483116518","1","8","0","-1","22","6012","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177586","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116518","1483122553","1483122578","1483116518","1","8","0","-1","25","6035","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177590","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116519","1483122578","1483122598","1483116519","1","8","0","-1","20","6059","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177597","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116521","1483122636","1483122651","1483116521","1","8","0","-1","15","6115","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177607","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116523","1483122688","1483122710","1483116523","1","8","0","-1","22","6165","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177611","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116523","1483122740","1483122762","1483116523","1","8","0","-1","22","6217","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177623","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116526","1483122839","1483122857","1483116526","1","8","0","-1","18","6313","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177627","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116526","1483122857","1483122876","1483116526","1","8","0","-1","19","6331","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177630","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116527","1483122876","1483122896","1483116527","1","8","0","-1","20","6349","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177634","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116528","1483122897","1483122924","1483116528","1","8","0","-1","27","6369","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177638","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116529","1483122924","1483122943","1483116529","1","8","0","-1","19","6395","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177642","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116529","1483122943","1483122961","1483116529","1","8","0","-1","18","6414","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177645","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116530","1483122961","1483122987","1483116530","1","8","0","-1","26","6431","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177654","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116532","1483123035","1483123054","1483116532","1","8","0","-1","19","6503","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177658","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116533","1483123054","1483123071","1483116533","1","8","0","-1","17","6521","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177662","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116533","1483123071","1483123091","1483116533","1","8","0","-1","20","6538","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177665","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116534","1483123092","1483123113","1483116534","1","8","0","-1","21","6558","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177669","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116535","1483123114","1483123131","1483116535","1","8","0","-1","17","6579","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177673","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116536","1483123131","1483123149","1483116536","1","8","0","-1","18","6595","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177677","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116536","1483123149","1483123173","1483116536","1","8","0","-1","24","6613","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177717","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116545","1483123619","1483123643","1483116545","1","8","0","-1","24","7074","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177721","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116546","1483123644","1483123670","1483116546","1","8","0","-1","26","7098","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177725","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116546","1483123670","1483123697","1483116546","1","8","0","-1","27","7124","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177729","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116547","1483123697","1483123724","1483116547","1","8","0","-1","27","7150","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177732","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116548","1483123725","1483123747","1483116548","1","8","0","-1","22","7177","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177752","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116552","1483123887","1483123906","1483116552","1","8","0","-1","19","7335","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177778","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116557","1483124137","1483124158","1483116557","1","8","0","-1","21","7580","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177783","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116558","1483124159","1483124175","1483116558","1","8","0","-1","16","7601","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177786","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116558","1483124175","1483124196","1483116558","1","8","0","-1","21","7617","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177790","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116559","1483124196","1483124220","1483116559","1","8","0","-1","24","7637","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177798","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116561","1483124254","1483124281","1483116561","1","8","0","-1","27","7693","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177801","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116561","1483124281","1483124307","1483116561","1","8","0","-1","26","7720","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177805","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116562","1483124308","1483124335","1483116562","1","8","0","-1","27","7746","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177813","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116564","1483124368","1483124388","1483116564","1","8","0","-1","20","7804","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177820","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116565","1483124424","1483124444","1483116565","1","8","0","-1","20","7859","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177824","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116566","1483124444","1483124460","1483116566","1","8","0","-1","16","7878","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177828","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116567","1483124460","1483124484","1483116567","1","8","0","-1","24","7893","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177835","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116568","1483124530","1483124554","1483116568","1","8","0","-1","24","7962","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177839","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116569","1483124554","1483124578","1483116569","1","8","0","-1","24","7985","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177844","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116570","1483124579","1483124600","1483116570","1","8","0","-1","21","8009","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177855","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116572","1483124672","1483124688","1483116572","1","8","0","-1","16","8100","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177859","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116573","1483124688","1483124706","1483116573","1","8","0","-1","18","8115","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177866","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116574","1483124746","1483124773","1483116574","1","8","0","-1","27","8172","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177870","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116575","1483124773","1483124793","1483116575","1","8","0","-1","20","8198","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177874","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116576","1483124793","1483124816","1483116576","1","8","0","-1","23","8217","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177885","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116578","1483124888","1483124910","1483116578","1","8","0","-1","22","8310","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177887","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116578","1483124910","1483124930","1483116578","1","8","0","-1","20","8332","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177891","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116579","1483124931","1483124949","1483116579","1","8","0","-1","18","8352","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177895","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116580","1483124950","1483124979","1483116580","1","8","0","-1","29","8370","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177898","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116580","1483124979","1483125004","1483116580","1","8","0","-1","25","8399","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177902","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116581","1483125005","1483125024","1483116581","1","8","0","-1","19","8424","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177906","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116582","1483125024","1483125052","1483116582","1","8","0","-1","28","8442","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177910","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116583","1483125052","1483125075","1483116583","1","8","0","-1","23","8469","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177917","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116584","1483125108","1483125129","1483116584","1","8","0","-1","21","8524","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177921","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116585","1483125129","1483125149","1483116585","1","8","0","-1","20","8544","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177932","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116587","1483125212","1483125239","1483116587","1","8","0","-1","27","8625","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177940","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116589","1483125270","1483125289","1483116589","1","8","0","-1","19","8681","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177944","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116589","1483125290","1483125309","1483116589","1","8","0","-1","19","8701","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177947","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116590","1483125309","1483125330","1483116590","1","8","0","-1","21","8719","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177951","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116591","1483125330","1483125344","1483116591","1","8","0","-1","14","8739","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177955","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116592","1483125344","1483125371","1483116592","1","8","0","-1","27","8752","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177960","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116593","1483125372","1483125395","1483116593","1","8","0","-1","23","8779","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177964","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116593","1483125395","1483125412","1483116593","1","8","0","-1","17","8802","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177966","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116594","1483125412","1483125428","1483116594","1","8","0","-1","16","8818","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177970","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116595","1483125428","1483125450","1483116595","1","8","0","-1","22","8833","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177974","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116595","1483125450","1483125467","1483116595","1","8","0","-1","17","8855","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177978","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116596","1483125467","1483125493","1483116596","1","8","0","-1","26","8871","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177982","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116597","1483125494","1483125511","1483116597","1","8","0","-1","17","8897","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177985","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116598","1483125512","1483125525","1483116598","1","8","0","-1","13","8914","104","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177989","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116598","1483125525","1483125549","1483116598","1","8","0","-1","24","8927","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177995","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116600","1483125549","1483125572","1483116600","1","8","0","-1","23","8949","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["177999","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116601","1483125572","1483125591","1483116601","1","8","0","-1","19","8971","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178002","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116601","1483125592","1483125609","1483116601","1","8","0","-1","17","8991","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178015","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116604","1483125680","1483125708","1483116604","1","8","0","-1","28","9076","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178027","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116606","1483125786","1483125804","1483116606","1","8","0","-1","18","9180","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178031","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116607","1483125804","1483125822","1483116607","1","8","0","-1","18","9197","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178038","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116609","1483125860","1483125887","1483116609","1","8","0","-1","27","9251","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178042","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116609","1483125887","1483125906","1483116609","1","8","0","-1","19","9278","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178046","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116610","1483125906","1483125922","1483116610","1","8","0","-1","16","9296","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178053","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116611","1483125955","1483125984","1483116611","1","8","0","-1","29","9344","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178057","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116612","1483125985","1483126004","1483116612","1","8","0","-1","19","9373","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178059","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116613","1483126005","1483126025","1483116613","1","8","0","-1","20","9392","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178067","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116614","1483126059","1483126087","1483116614","1","8","0","-1","28","9445","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178070","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116615","1483126087","1483126109","1483116615","1","8","0","-1","22","9472","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178074","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116615","1483126109","1483126127","1483116615","1","8","0","-1","18","9494","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178078","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116616","1483126128","1483126151","1483116616","1","8","0","-1","23","9512","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178085","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116618","1483126197","1483126224","1483116618","1","8","0","-1","27","9579","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178089","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116618","1483126224","1483126248","1483116618","1","8","0","-1","24","9606","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178093","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116619","1483126249","1483126267","1483116619","1","8","0","-1","18","9630","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178097","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116620","1483126268","1483126287","1483116620","1","8","0","-1","19","9648","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178105","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116622","1483126323","1483126340","1483116622","1","8","0","-1","17","9701","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178109","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116622","1483126341","1483126360","1483116622","1","8","0","-1","19","9719","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178120","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116625","1483126450","1483126475","1483116625","1","8","0","-1","25","9825","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178137","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116628","1483126586","1483126607","1483116628","1","8","0","-1","21","9958","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178152","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116631","1483126828","1483126849","1483116631","1","8","0","-1","21","10197","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178156","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116632","1483126849","1483126876","1483116632","1","8","0","-1","27","10217","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178160","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116633","1483126877","1483126895","1483116633","1","8","0","-1","18","10244","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178164","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116633","1483126895","1483126912","1483116633","1","8","0","-1","17","10262","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178168","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116634","1483126912","1483126928","1483116634","1","8","0","-1","16","10278","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178171","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116635","1483126928","1483126952","1483116635","1","8","0","-1","24","10293","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178175","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116636","1483126952","1483126980","1483116636","1","8","0","-1","28","10316","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178181","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116637","1483127012","1483127036","1483116637","1","8","0","-1","24","10375","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178185","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116638","1483127036","1483127052","1483116638","1","8","0","-1","16","10398","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178188","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116638","1483127052","1483127074","1483116638","1","8","0","-1","22","10414","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178192","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116639","1483127075","1483127100","1483116639","1","8","0","-1","25","10436","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178196","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116640","1483127100","1483127124","1483116640","1","8","0","-1","24","10460","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178200","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116641","1483127124","1483127138","1483116641","1","8","0","-1","14","10483","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178203","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116641","1483127138","1483127154","1483116641","1","8","0","-1","16","10497","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178215","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116644","1483127228","1483127245","1483116644","1","8","0","-1","17","10584","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178218","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116644","1483127245","1483127262","1483116644","1","8","0","-1","17","10601","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178222","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116645","1483127262","1483127279","1483116645","1","8","0","-1","17","10617","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178226","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116646","1483127279","1483127304","1483116646","1","8","0","-1","25","10633","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178230","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116647","1483127304","1483127321","1483116647","1","8","0","-1","17","10657","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178233","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116647","1483127322","1483127334","1483116647","1","8","0","-1","12","10675","96","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178238","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116648","1483127335","1483127357","1483116648","1","8","0","-1","22","10687","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178242","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116649","1483127357","1483127383","1483116649","1","8","0","-1","26","10708","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178247","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116650","1483127384","1483127401","1483116650","1","8","0","-1","17","10734","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178251","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116651","1483127401","1483127425","1483116651","1","8","0","-1","24","10750","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178254","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116652","1483127425","1483127446","1483116652","1","8","0","-1","21","10773","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178259","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116653","1483127446","1483127464","1483116653","1","8","0","-1","18","10793","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178263","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116653","1483127464","1483127478","1483116653","1","8","0","-1","14","10811","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178280","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116657","1483127630","1483127658","1483116657","1","8","0","-1","28","10973","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178282","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116657","1483127658","1483127675","1483116657","1","8","0","-1","17","11001","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178288","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116658","1483127708","1483127731","1483116658","1","8","0","-1","23","11050","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178292","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116659","1483127732","1483127748","1483116659","1","8","0","-1","16","11073","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178296","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116660","1483127748","1483127765","1483116660","1","8","0","-1","17","11088","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178305","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116662","1483127817","1483127841","1483116662","1","8","0","-1","24","11155","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178316","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116664","1483127918","1483127939","1483116664","1","8","0","-1","21","11254","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178321","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116665","1483127940","1483127960","1483116665","1","8","0","-1","20","11275","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178324","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116666","1483127960","1483127977","1483116666","1","8","0","-1","17","11294","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178339","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116669","1483128127","1483128154","1483116669","1","8","0","-1","27","11458","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178348","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116671","1483128195","1483128224","1483116671","1","8","0","-1","29","11524","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178352","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116671","1483128225","1483128248","1483116671","1","8","0","-1","23","11554","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178355","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116672","1483128248","1483128276","1483116672","1","8","0","-1","28","11576","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178371","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116675","1483128443","1483128470","1483116675","1","8","0","-1","27","11768","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178374","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116676","1483128470","1483128491","1483116676","1","8","0","-1","21","11794","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178447","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116691","1483129542","1483129569","1483116691","1","8","0","-1","27","12851","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178451","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116691","1483129569","1483129596","1483116691","1","8","0","-1","27","12878","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178473","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116696","1483129811","1483129840","1483116696","1","8","0","-1","29","13115","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178481","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116697","1483129886","1483129912","1483116697","1","8","0","-1","26","13189","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178494","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116700","1483130046","1483130074","1483116700","1","8","0","-1","28","13346","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178502","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116701","1483130204","1483130230","1483116701","1","8","0","-1","26","13503","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178508","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116702","1483130310","1483130339","1483116702","1","8","0","-1","29","13608","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178512","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116702","1483130373","1483130399","1483116702","1","8","0","-1","26","13671","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178514","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116702","1483130399","1483130425","1483116702","1","8","0","-1","26","13697","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178519","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116703","1483130459","1483130484","1483116703","1","8","0","-1","25","13756","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178527","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116704","1483130590","1483130618","1483116704","1","8","0","-1","28","13886","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178540","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116706","1483130886","1483130912","1483116706","1","8","0","-1","26","14180","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178546","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116707","1483130979","1483130995","1483116707","1","8","0","-1","16","14272","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178548","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116707","1483130995","1483131017","1483116707","1","8","0","-1","22","14288","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178550","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116708","1483131017","1483131040","1483116708","1","8","0","-1","23","14309","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178558","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116709","1483131150","1483131169","1483116709","1","8","0","-1","19","14441","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178560","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116709","1483131169","1483131188","1483116709","1","8","0","-1","19","14460","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178562","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116709","1483131189","1483131210","1483116709","1","8","0","-1","21","14480","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178564","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116710","1483131210","1483131226","1483116710","1","8","0","-1","16","14500","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178566","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116710","1483131226","1483131245","1483116710","1","8","0","-1","19","14516","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178570","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116711","1483131278","1483131300","1483116711","1","8","0","-1","22","14567","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178583","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116713","1483131503","1483131532","1483116713","1","8","0","-1","29","14790","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178589","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116714","1483131601","1483131616","1483116714","1","8","0","-1","15","14887","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178591","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116714","1483131616","1483131635","1483116714","1","8","0","-1","19","14902","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178603","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116715","1483131821","1483131846","1483116715","1","8","0","-1","25","15106","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178607","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116716","1483131880","1483131897","1483116716","1","8","0","-1","17","15164","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178609","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116716","1483131898","1483131918","1483116716","1","8","0","-1","20","15182","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178611","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116717","1483131919","1483131937","1483116717","1","8","0","-1","18","15202","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178613","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116717","1483131937","1483131963","1483116717","1","8","0","-1","26","15220","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178627","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116719","1483132265","1483132289","1483116719","1","8","0","-1","24","15546","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178633","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116720","1483132361","1483132387","1483116720","1","8","0","-1","26","15641","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178635","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116720","1483132388","1483132411","1483116720","1","8","0","-1","23","15668","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178637","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116720","1483132411","1483132436","1483116720","1","8","0","-1","25","15691","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178639","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116720","1483132436","1483132464","1483116720","1","8","0","-1","28","15716","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178645","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116721","1483132531","1483132551","1483116721","1","8","0","-1","20","15810","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178647","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116722","1483132552","1483132578","1483116722","1","8","0","-1","26","15830","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178650","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116722","1483132579","1483132596","1483116722","1","8","0","-1","17","15857","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178652","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116722","1483132596","1483132614","1483116722","1","8","0","-1","18","15874","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178654","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116723","1483132614","1483132635","1483116723","1","8","0","-1","21","15891","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178658","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116723","1483132669","1483132693","1483116723","1","8","0","-1","24","15946","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178666","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116724","1483132871","1483132896","1483116724","1","8","0","-1","25","16147","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178671","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116725","1483132944","1483132966","1483116725","1","8","0","-1","22","16219","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178673","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116725","1483132966","1483132993","1483116725","1","8","0","-1","27","16241","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178678","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116726","1483133029","1483133049","1483116726","1","8","0","-1","20","16303","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178680","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116726","1483133049","1483133077","1483116726","1","8","0","-1","28","16323","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178682","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116727","1483133077","1483133099","1483116727","1","8","0","-1","22","16350","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178686","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116727","1483133137","1483133159","1483116727","1","8","0","-1","22","16410","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178688","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116728","1483133159","1483133178","1483116728","1","8","0","-1","19","16431","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178690","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116728","1483133179","1483133199","1483116728","1","8","0","-1","20","16451","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178692","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116728","1483133199","1483133222","1483116728","1","8","0","-1","23","16471","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178694","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116728","1483133222","1483133243","1483116728","1","8","0","-1","21","16494","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178696","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116729","1483133243","1483133260","1483116729","1","8","0","-1","17","16514","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178698","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116729","1483133260","1483133280","1483116729","1","8","0","-1","20","16531","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178703","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116730","1483133313","1483133339","1483116730","1","8","0","-1","26","16583","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178711","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116731","1483133489","1483133515","1483116731","1","8","0","-1","26","16758","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178715","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116731","1483133545","1483133567","1483116731","1","8","0","-1","22","16814","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178717","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116732","1483133567","1483133590","1483116732","1","8","0","-1","23","16835","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178719","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116732","1483133590","1483133608","1483116732","1","8","0","-1","18","16858","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178721","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116732","1483133608","1483133631","1483116732","1","8","0","-1","23","16876","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178723","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116732","1483133631","1483133659","1483116732","1","8","0","-1","28","16899","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178725","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116733","1483133660","1483133686","1483116733","1","8","0","-1","26","16927","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178727","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116733","1483133687","1483133708","1483116733","1","8","0","-1","21","16954","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178729","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116733","1483133709","1483133727","1483116733","1","8","0","-1","18","16976","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178731","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116734","1483133727","1483133753","1483116734","1","8","0","-1","26","16993","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178733","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116734","1483133753","1483133775","1483116734","1","8","0","-1","22","17019","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178737","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116734","1483133809","1483133825","1483116734","1","8","0","-1","16","17075","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178739","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116735","1483133826","1483133842","1483116735","1","8","0","-1","16","17091","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178741","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116735","1483133842","1483133859","1483116735","1","8","0","-1","17","17107","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178743","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116735","1483133860","1483133880","1483116735","1","8","0","-1","20","17125","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178745","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116735","1483133880","1483133908","1483116736","1","8","0","-1","28","17145","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178755","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116737","1483134100","1483134125","1483116737","1","8","0","-1","25","17363","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178761","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116738","1483134206","1483134229","1483116738","1","8","0","-1","23","17468","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178764","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116738","1483134229","1483134246","1483116738","1","8","0","-1","17","17491","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178766","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116739","1483134246","1483134264","1483116739","1","8","0","-1","18","17507","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178768","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116739","1483134264","1483134282","1483116739","1","8","0","-1","18","17525","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178770","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116739","1483134283","1483134303","1483116739","1","8","0","-1","20","17544","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178772","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116739","1483134304","1483134332","1483116739","1","8","0","-1","28","17565","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178774","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116740","1483134332","1483134351","1483116740","1","8","0","-1","19","17592","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178776","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116740","1483134352","1483134376","1483116740","1","8","0","-1","24","17612","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178780","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116741","1483134409","1483134436","1483116741","1","8","0","-1","27","17668","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178782","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116741","1483134437","1483134453","1483116741","1","8","0","-1","16","17696","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178784","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116741","1483134453","1483134469","1483116741","1","8","0","-1","16","17712","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178786","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116741","1483134470","1483134484","1483116741","1","8","0","-1","14","17729","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178788","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116742","1483134484","1483134505","1483116742","1","8","0","-1","21","17742","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178790","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116742","1483134506","1483134527","1483116742","1","8","0","-1","21","17764","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178792","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116742","1483134527","1483134545","1483116742","1","8","0","-1","18","17785","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178796","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116743","1483134577","1483134601","1483116743","1","8","0","-1","24","17834","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178800","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116743","1483134678","1483134702","1483116743","1","8","0","-1","24","17935","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178802","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116743","1483134703","1483134731","1483116743","1","8","0","-1","28","17960","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6111113","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483126547","1483140171","1483140196","1483126547","2","24","0","-1","25","13624","600","0","0:0","COMPLETED","24","60000Mn","64800","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["178806","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116744","1483134769","1483134796","1483116744","1","8","0","-1","27","18025","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178808","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116744","1483134797","1483134821","1483116744","1","8","0","-1","24","18053","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178810","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116745","1483134821","1483134847","1483116745","1","8","0","-1","26","18076","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178812","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116745","1483134848","1483134873","1483116745","1","8","0","-1","25","18103","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178816","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116746","1483134874","1483134895","1483116746","1","8","0","-1","21","18128","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178818","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116746","1483134896","1483134920","1483116746","1","8","0","-1","24","18150","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178822","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116746","1483134956","1483134977","1483116746","1","8","0","-1","21","18210","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178824","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116747","1483134978","1483134998","1483116747","1","8","0","-1","20","18231","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178826","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116747","1483134999","1483135018","1483116747","1","8","0","-1","19","18252","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178828","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116747","1483135018","1483135037","1483116747","1","8","0","-1","19","18271","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178830","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116748","1483135038","1483135054","1483116748","1","8","0","-1","16","18290","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178834","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116748","1483135087","1483135105","1483116748","1","8","0","-1","18","18339","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178836","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116748","1483135105","1483135128","1483116748","1","8","0","-1","23","18357","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178850","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116750","1483135425","1483135450","1483116750","1","8","0","-1","25","18675","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178852","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116751","1483135451","1483135475","1483116751","1","8","0","-1","24","18700","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178854","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116751","1483135476","1483135505","1483116751","1","8","0","-1","29","18725","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178858","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116751","1483135544","1483135569","1483116751","1","8","0","-1","25","18793","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178860","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116752","1483135570","1483135590","1483116752","1","8","0","-1","20","18818","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178862","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116752","1483135591","1483135615","1483116752","1","8","0","-1","24","18839","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178866","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116752","1483135651","1483135679","1483116752","1","8","0","-1","28","18899","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178868","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116753","1483135679","1483135706","1483116753","1","8","0","-1","27","18926","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178870","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116753","1483135706","1483135734","1483116753","1","8","0","-1","28","18953","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178872","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116753","1483135734","1483135754","1483116753","1","8","0","-1","20","18981","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178874","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116753","1483135755","1483135772","1483116753","1","8","0","-1","17","19002","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178876","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116754","1483135772","1483135790","1483116754","1","8","0","-1","18","19018","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178880","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116754","1483135824","1483135847","1483116754","1","8","0","-1","23","19070","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178882","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116755","1483135847","1483135870","1483116755","1","8","0","-1","23","19092","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178896","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116756","1483136198","1483136223","1483116756","1","8","0","-1","25","19442","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178898","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116757","1483136224","1483136250","1483116757","1","8","0","-1","26","19467","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178900","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116757","1483136250","1483136276","1483116757","1","8","0","-1","26","19493","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178902","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116757","1483136277","1483136298","1483116757","1","8","0","-1","21","19520","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178904","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116758","1483136298","1483136320","1483116758","1","8","0","-1","22","19540","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178906","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116758","1483136321","1483136345","1483116758","1","8","0","-1","24","19563","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178908","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116758","1483136346","1483136374","1483116758","1","8","0","-1","28","19588","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178910","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116758","1483136375","1483136401","1483116758","1","8","0","-1","26","19617","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178912","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116759","1483136402","1483136431","1483116759","1","8","0","-1","29","19643","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178914","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116759","1483136431","1483136454","1483116759","1","8","0","-1","23","19672","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178918","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116759","1483136487","1483136513","1483116759","1","8","0","-1","26","19728","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178920","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116760","1483136513","1483136530","1483116760","1","8","0","-1","17","19753","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178922","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116760","1483136531","1483136550","1483116760","1","8","0","-1","19","19771","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178924","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116760","1483136550","1483136570","1483116760","1","8","0","-1","20","19790","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178928","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116761","1483136605","1483136631","1483116761","1","8","0","-1","26","19844","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178930","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116761","1483136631","1483136657","1483116761","1","8","0","-1","26","19870","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178949","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116764","1483136999","1483137023","1483116764","1","8","0","-1","24","20235","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178951","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116764","1483137023","1483137044","1483116764","1","8","0","-1","21","20259","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178953","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116764","1483137044","1483137069","1483116764","1","8","0","-1","25","20280","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178955","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116765","1483137070","1483137091","1483116765","1","8","0","-1","21","20305","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178957","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116765","1483137092","1483137112","1483116765","1","8","0","-1","20","20327","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178959","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116765","1483137113","1483137136","1483116765","1","8","0","-1","23","20348","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178963","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116766","1483137176","1483137199","1483116766","1","8","0","-1","23","20410","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178965","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116766","1483137199","1483137228","1483116766","1","8","0","-1","29","20433","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178967","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116766","1483137228","1483137250","1483116766","1","8","0","-1","22","20462","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178969","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116766","1483137250","1483137275","1483116766","1","8","0","-1","25","20484","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178971","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116767","1483137275","1483137295","1483116767","1","8","0","-1","20","20508","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178982","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116768","1483137509","1483137537","1483116768","1","8","0","-1","28","20741","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["178988","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116769","1483137616","1483137642","1483116769","1","8","0","-1","26","20847","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179004","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116771","1483137927","1483137947","1483116771","1","8","0","-1","20","21156","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179012","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116772","1483138069","1483138087","1483116772","1","8","0","-1","18","21297","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179030","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116775","1483138574","1483138595","1483116775","1","8","0","-1","21","21799","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179032","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116775","1483138596","1483138613","1483116775","1","8","0","-1","17","21821","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179036","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116776","1483138648","1483138666","1483116776","1","8","0","-1","18","21872","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179038","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116776","1483138666","1483138687","1483116776","1","8","0","-1","21","21890","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179040","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116777","1483138688","1483138716","1483116777","1","8","0","-1","28","21911","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179042","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116777","1483138717","1483138745","1483116777","1","8","0","-1","28","21940","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179044","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116777","1483138745","1483138765","1483116777","1","8","0","-1","20","21968","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179046","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116777","1483138766","1483138787","1483116777","1","8","0","-1","21","21989","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179048","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116778","1483138788","1483138807","1483116778","1","8","0","-1","19","22010","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179052","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116778","1483138839","1483138859","1483116778","1","8","0","-1","20","22061","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179054","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116778","1483138860","1483138876","1483116778","1","8","0","-1","16","22082","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179056","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116779","1483138877","1483138893","1483116779","1","8","0","-1","16","22098","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179058","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116779","1483138893","1483138909","1483116779","1","8","0","-1","16","22114","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179064","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116780","1483138956","1483138979","1483116780","1","8","0","-1","23","22176","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179070","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116781","1483139111","1483139139","1483116781","1","8","0","-1","28","22330","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179076","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116782","1483139208","1483139228","1483116782","1","8","0","-1","20","22426","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179078","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116782","1483139229","1483139255","1483116782","1","8","0","-1","26","22447","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179080","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116782","1483139255","1483139278","1483116782","1","8","0","-1","23","22473","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179082","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116782","1483139278","1483139295","1483116782","1","8","0","-1","17","22496","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179084","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116783","1483139295","1483139322","1483116783","1","8","0","-1","27","22512","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179086","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116783","1483139322","1483139345","1483116783","1","8","0","-1","23","22539","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179088","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116783","1483139345","1483139371","1483116783","1","8","0","-1","26","22562","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179090","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116784","1483139371","1483139390","1483116784","1","8","0","-1","19","22587","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179092","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116784","1483139391","1483139413","1483116784","1","8","0","-1","22","22607","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179094","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116784","1483139414","1483139442","1483116784","1","8","0","-1","28","22630","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179096","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116784","1483139442","1483139459","1483116784","1","8","0","-1","17","22658","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179098","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116785","1483139460","1483139481","1483116785","1","8","0","-1","21","22675","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179100","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116785","1483139481","1483139495","1483116785","1","8","0","-1","14","22696","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179102","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116785","1483139496","1483139523","1483116785","1","8","0","-1","27","22711","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179104","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116786","1483139523","1483139538","1483116786","1","8","0","-1","15","22737","120","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179109","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116786","1483139578","1483139604","1483116786","1","8","0","-1","26","22792","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179117","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116787","1483139773","1483139798","1483116787","1","8","0","-1","25","22986","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179119","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116788","1483139798","1483139822","1483116788","1","8","0","-1","24","23010","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179121","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116788","1483139823","1483139844","1483116788","1","8","0","-1","21","23035","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179123","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116788","1483139844","1483139867","1483116788","1","8","0","-1","23","23056","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179125","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116788","1483139868","1483139889","1483116788","1","8","0","-1","21","23080","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179127","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116789","1483139889","1483139907","1483116789","1","8","0","-1","18","23100","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179130","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116789","1483139907","1483139932","1483116789","1","8","0","-1","25","23118","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179132","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116790","1483139932","1483139953","1483116790","1","8","0","-1","21","23142","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179134","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116790","1483139953","1483139974","1483116790","1","8","0","-1","21","23163","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179136","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116790","1483139975","1483140000","1483116790","1","8","0","-1","25","23185","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179138","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116790","1483140000","1483140017","1483116790","1","8","0","-1","17","23210","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179140","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116791","1483140018","1483140034","1483116791","1","8","0","-1","16","23227","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179142","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116791","1483140035","1483140057","1483116791","1","8","0","-1","22","23244","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179144","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116791","1483140058","1483140074","1483116791","1","8","0","-1","16","23267","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179147","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116792","1483140074","1483140097","1483116792","1","8","0","-1","23","23282","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179149","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116792","1483140097","1483140121","1483116792","1","8","0","-1","24","23305","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179151","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116792","1483140122","1483140147","1483116792","1","8","0","-1","25","23330","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179158","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116793","1483140265","1483140288","1483116793","1","8","0","-1","23","23472","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179160","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116794","1483140289","1483140318","1483116794","1","8","0","-1","29","23495","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179162","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116794","1483140318","1483140341","1483116794","1","8","0","-1","23","23524","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179164","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116794","1483140341","1483140361","1483116794","1","8","0","-1","20","23547","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179166","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116794","1483140361","1483140382","1483116794","1","8","0","-1","21","23567","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179168","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116795","1483140382","1483140411","1483116795","1","8","0","-1","29","23587","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179170","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116795","1483140411","1483140437","1483116795","1","8","0","-1","26","23616","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179172","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116795","1483140437","1483140463","1483116795","1","8","0","-1","26","23642","208","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179174","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116796","1483140463","1483140485","1483116796","1","8","0","-1","22","23667","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179176","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116796","1483140486","1483140510","1483116796","1","8","0","-1","24","23690","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179178","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116796","1483140511","1483140539","1483116796","1","8","0","-1","28","23715","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179180","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116796","1483140539","1483140564","1483116796","1","8","0","-1","25","23743","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179184","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116797","1483140594","1483140621","1483116797","1","8","0","-1","27","23797","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179186","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116797","1483140621","1483140637","1483116797","1","8","0","-1","16","23824","128","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179188","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116798","1483140637","1483140651","1483116798","1","8","0","-1","14","23839","112","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179190","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116798","1483140652","1483140674","1483116798","1","8","0","-1","22","23854","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179192","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116798","1483140674","1483140698","1483116798","1","8","0","-1","24","23876","192","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179194","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116798","1483140698","1483140723","1483116798","1","8","0","-1","25","23900","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179204","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116800","1483140910","1483140935","1483116800","1","8","0","-1","25","24110","200","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179208","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116800","1483140978","1483140999","1483116800","1","8","0","-1","21","24178","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179213","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116801","1483141031","1483141052","1483116801","1","8","0","-1","21","24230","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179215","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116801","1483141052","1483141070","1483116801","1","8","0","-1","18","24251","144","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179217","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116802","1483141071","1483141092","1483116802","1","8","0","-1","21","24269","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179219","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116802","1483141092","1483141115","1483116802","1","8","0","-1","23","24290","184","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179221","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116802","1483141116","1483141136","1483116802","1","8","0","-1","20","24314","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179225","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116803","1483141172","1483141193","1483116803","1","8","0","-1","21","24369","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179227","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116803","1483141193","1483141212","1483116803","1","8","0","-1","19","24390","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179229","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116803","1483141213","1483141230","1483116803","1","8","0","-1","17","24410","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179231","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116804","1483141231","1483141253","1483116804","1","8","0","-1","22","24427","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179233","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116804","1483141253","1483141272","1483116804","1","8","0","-1","19","24449","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179235","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116804","1483141273","1483141290","1483116804","1","8","0","-1","17","24469","136","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179241","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116805","1483141334","1483141356","1483116805","1","8","0","-1","22","24529","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179245","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116806","1483141434","1483141462","1483116806","1","8","0","-1","28","24628","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179247","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116806","1483141463","1483141491","1483116806","1","8","0","-1","28","24657","224","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179251","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116807","1483141528","1483141555","1483116807","1","8","0","-1","27","24721","216","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179257","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116807","1483141629","1483141651","1483116807","1","8","0","-1","22","24822","176","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179259","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116808","1483141651","1483141670","1483116808","1","8","0","-1","19","24843","152","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179261","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116808","1483141670","1483141690","1483116808","1","8","0","-1","20","24862","160","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179277","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116810","1483141973","1483141994","1483116810","1","8","0","-1","21","25163","168","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["179279","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116811","1483141994","1483142023","1483116811","1","8","0","-1","29","25183","232","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1003521","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483046136","1483081449","1483081454","1483046136","1","24","0","-1","5","35313","120","0","29:0","FAILED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6106586","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483004941","1483116904","1483116933","1483004941","1","8","0","-1","29","111963","232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6100150","Robertson","UTC","","Bunting, Yellow-browed","Screwdriver","curry","1482698330","1483078060","1483078062","1482698330","1","16","0","-1","2","379730","32","0","1:0","FAILED","16","2147486448Mn","259200","white","Geosciences","Polar Programs","Polar Aeronomy and Astrophysics"],["968115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055846","1483055846","1483056007","1483055846","1","8","0","-1","161","0","1288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055966","1483055966","1483056024","1483055966","1","8","0","-1","58","0","464","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056024","1483056024","1483056106","1483056024","1","8","0","-1","82","0","656","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056024","1483056024","1483056071","1483056024","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056052","1483056052","1483056123","1483056052","1","8","0","-1","71","0","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056078","1483056078","1483056120","1483056078","1","8","0","-1","42","0","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056090","1483056090","1483056144","1483056090","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056099","1483056099","1483056132","1483056099","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056106","1483056106","1483056138","1483056106","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968187","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056109","1483056109","1483056141","1483056109","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056121","1483056121","1483056161","1483056121","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056124","1483056124","1483056154","1483056124","1","8","0","-1","30","0","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968201","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056145","1483056145","1483056207","1483056145","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056155","1483056155","1483056226","1483056155","1","8","0","-1","71","0","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056159","1483056159","1483056227","1483056159","1","8","0","-1","68","0","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056162","1483056162","1483056304","1483056162","1","8","0","-1","142","0","1136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056162","1483056162","1483056232","1483056162","1","8","0","-1","70","0","560","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056255","1483056255","1483056286","1483056255","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056305","1483056305","1483056446","1483056305","1","8","0","-1","141","0","1128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056332","1483056332","1483056366","1483056332","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056380","1483056380","1483056434","1483056380","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056386","1483056386","1483056440","1483056386","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056391","1483056391","1483056430","1483056391","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056400","1483056400","1483056432","1483056400","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056447","1483056447","1483056504","1483056447","1","8","0","-1","57","0","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056459","1483056459","1483056511","1483056459","1","8","0","-1","52","0","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056459","1483056459","1483056555","1483056459","1","8","0","-1","96","0","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056462","1483056462","1483056503","1483056462","1","8","0","-1","41","0","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056468","1483056468","1483056541","1483056468","1","8","0","-1","73","0","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056504","1483056504","1483056555","1483056504","1","8","0","-1","51","0","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056556","1483056556","1483056590","1483056556","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056733","1483056733","1483056789","1483056733","1","8","0","-1","56","0","448","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056753","1483056753","1483056832","1483056753","1","8","0","-1","79","0","632","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056816","1483056816","1483056850","1483056816","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056820","1483056820","1483056866","1483056820","1","8","0","-1","46","0","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056878","1483056878","1483056913","1483056878","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056936","1483056936","1483056967","1483056936","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057081","1483057081","1483057138","1483057081","1","8","0","-1","57","0","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057084","1483057084","1483057120","1483057084","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057116","1483057116","1483057153","1483057116","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057151","1483057151","1483057205","1483057151","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057154","1483057154","1483057225","1483057154","1","8","0","-1","71","0","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057157","1483057157","1483057298","1483057157","1","8","0","-1","141","0","1128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057166","1483057166","1483057242","1483057166","1","8","0","-1","76","0","608","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057171","1483057171","1483057221","1483057171","1","8","0","-1","50","0","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057186","1483057186","1483057218","1483057186","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057219","1483057219","1483057250","1483057219","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057243","1483057243","1483057297","1483057243","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057251","1483057251","1483057302","1483057251","1","8","0","-1","51","0","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057252","1483057252","1483057285","1483057252","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057252","1483057252","1483057283","1483057252","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057258","1483057258","1483057296","1483057258","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057346","1483057346","1483057399","1483057346","1","8","0","-1","53","0","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057389","1483057389","1483057434","1483057389","1","8","0","-1","45","0","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057400","1483057400","1483057457","1483057400","1","8","0","-1","57","0","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057438","1483057438","1483057476","1483057438","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057439","1483057439","1483057504","1483057439","1","8","0","-1","65","0","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057458","1483057458","1483057597","1483057458","1","8","0","-1","139","0","1112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057513","1483057513","1483057546","1483057513","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057516","1483057516","1483057560","1483057516","1","8","0","-1","44","0","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057547","1483057547","1483057587","1483057547","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057555","1483057555","1483057596","1483057555","1","8","0","-1","41","0","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057561","1483057561","1483057629","1483057561","1","8","0","-1","68","0","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057576","1483057576","1483057630","1483057576","1","8","0","-1","54","0","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057581","1483057581","1483057617","1483057581","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057588","1483057588","1483057647","1483057588","1","8","0","-1","59","0","472","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057597","1483057597","1483057657","1483057597","1","8","0","-1","60","0","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057618","1483057618","1483057667","1483057618","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057630","1483057630","1483057682","1483057630","1","8","0","-1","52","0","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057788","1483057788","1483057828","1483057788","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057805","1483057805","1483057846","1483057805","1","8","0","-1","41","0","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057822","1483057822","1483057856","1483057822","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057823","1483057823","1483057874","1483057823","1","8","0","-1","51","0","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057847","1483057847","1483057915","1483057847","1","8","0","-1","68","0","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057904","1483057904","1483057951","1483057904","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057945","1483057945","1483058056","1483057945","1","8","0","-1","111","0","888","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058057","1483058057","1483058093","1483058057","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058058","1483058058","1483058093","1483058058","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968800","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058065","1483058065","1483058096","1483058065","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058135","1483058135","1483058169","1483058135","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058145","1483058145","1483058177","1483058145","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058198","1483058198","1483058261","1483058198","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058209","1483058209","1483058333","1483058209","1","8","0","-1","124","0","992","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058262","1483058262","1483058307","1483058262","1","8","0","-1","45","0","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058289","1483058289","1483058322","1483058289","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058347","1483058347","1483058385","1483058347","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058358","1483058358","1483058397","1483058358","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058364","1483058364","1483058431","1483058364","1","8","0","-1","67","0","536","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058386","1483058386","1483058450","1483058386","1","8","0","-1","64","0","512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058386","1483058386","1483058418","1483058386","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968928","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058504","1483058504","1483058557","1483058504","1","8","0","-1","53","0","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058517","1483058517","1483058564","1483058517","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058579","1483058579","1483058612","1483058579","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058608","1483058608","1483058667","1483058608","1","8","0","-1","59","0","472","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058613","1483058613","1483058688","1483058613","1","8","0","-1","75","0","600","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058623","1483058623","1483058685","1483058623","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058630","1483058630","1483058690","1483058630","1","8","0","-1","60","0","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058642","1483058642","1483058679","1483058642","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968974","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058668","1483058668","1483058730","1483058668","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058731","1483058731","1483058826","1483058731","1","8","0","-1","95","0","760","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968992","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058770","1483058770","1483058837","1483058770","1","8","0","-1","67","0","536","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058779","1483058779","1483058847","1483058779","1","8","0","-1","68","0","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058783","1483058783","1483058831","1483058783","1","8","0","-1","48","0","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058861","1483058861","1483058892","1483058861","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058888","1483058888","1483058947","1483058888","1","8","0","-1","59","0","472","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058911","1483058911","1483059071","1483058911","1","8","0","-1","160","0","1280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058948","1483058948","1483059084","1483058948","1","8","0","-1","136","0","1088","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059085","1483059085","1483059223","1483059085","1","8","0","-1","138","0","1104","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059101","1483059101","1483059174","1483059101","1","8","0","-1","73","0","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059107","1483059107","1483059238","1483059107","1","8","0","-1","131","0","1048","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059175","1483059175","1483059253","1483059175","1","8","0","-1","78","0","624","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059212","1483059212","1483059377","1483059212","1","8","0","-1","165","0","1320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059224","1483059224","1483059384","1483059224","1","8","0","-1","160","0","1280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059227","1483059227","1483059482","1483059227","1","8","0","-1","255","0","2040","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059236","1483059236","1483059343","1483059236","1","8","0","-1","107","0","856","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059254","1483059254","1483059292","1483059254","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059343","1483059343","1483059395","1483059343","1","8","0","-1","52","0","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059483","1483059483","1483059539","1483059483","1","8","0","-1","56","0","448","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059495","1483059495","1483059566","1483059495","1","8","0","-1","71","0","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059498","1483059498","1483059563","1483059498","1","8","0","-1","65","0","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059501","1483059501","1483059597","1483059501","1","8","0","-1","96","0","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059567","1483059567","1483059603","1483059567","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059607","1483059607","1483059685","1483059607","1","8","0","-1","78","0","624","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059613","1483059613","1483059649","1483059613","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059633","1483059633","1483059704","1483059633","1","8","0","-1","71","0","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059638","1483059638","1483059677","1483059638","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059650","1483059650","1483059706","1483059650","1","8","0","-1","56","0","448","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059677","1483059677","1483059717","1483059677","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059677","1483059677","1483059725","1483059677","1","8","0","-1","48","0","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059718","1483059718","1483059816","1483059718","1","8","0","-1","98","0","784","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059827","1483059827","1483059901","1483059827","1","8","0","-1","74","0","592","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059854","1483059854","1483059894","1483059854","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059882","1483059882","1483059917","1483059882","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059895","1483059895","1483060060","1483059895","1","8","0","-1","165","0","1320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059895","1483059895","1483059957","1483059895","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969222","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059918","1483059918","1483059965","1483059918","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059958","1483059958","1483059999","1483059958","1","8","0","-1","41","0","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059966","1483059966","1483059998","1483059966","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059999","1483059999","1483060044","1483059999","1","8","0","-1","45","0","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060015","1483060015","1483060066","1483060015","1","8","0","-1","51","0","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060060","1483060060","1483060106","1483060060","1","8","0","-1","46","0","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969257","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060072","1483060072","1483060121","1483060072","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060106","1483060106","1483060136","1483060106","1","8","0","-1","30","0","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060162","1483060162","1483060217","1483060162","1","8","0","-1","55","0","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060172","1483060172","1483060222","1483060172","1","8","0","-1","50","0","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060173","1483060173","1483060226","1483060173","1","8","0","-1","53","0","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060176","1483060176","1483060214","1483060176","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060226","1483060226","1483060291","1483060226","1","8","0","-1","65","0","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060249","1483060249","1483060316","1483060249","1","8","0","-1","67","0","536","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060282","1483060282","1483060331","1483060282","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060292","1483060292","1483060338","1483060292","1","8","0","-1","46","0","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969319","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060297","1483060297","1483060332","1483060297","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969333","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060352","1483060352","1483060395","1483060352","1","8","0","-1","43","0","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969335","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060365","1483060365","1483060407","1483060365","1","8","0","-1","42","0","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969349","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060396","1483060396","1483060469","1483060396","1","8","0","-1","73","0","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060397","1483060397","1483060546","1483060397","1","8","0","-1","149","0","1192","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060408","1483060408","1483060448","1483060408","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060420","1483060420","1483060457","1483060420","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060449","1483060449","1483060488","1483060449","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060489","1483060489","1483060542","1483060489","1","8","0","-1","53","0","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060547","1483060547","1483060584","1483060547","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969394","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060552","1483060552","1483060619","1483060552","1","8","0","-1","67","0","536","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969402","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060595","1483060595","1483060637","1483060595","1","8","0","-1","42","0","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060664","1483060664","1483060708","1483060664","1","8","0","-1","44","0","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060665","1483060665","1483060703","1483060665","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060704","1483060704","1483060736","1483060704","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060709","1483060709","1483060740","1483060709","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060730","1483060730","1483060802","1483060730","1","8","0","-1","72","0","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060741","1483060741","1483060775","1483060741","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060764","1483060764","1483060801","1483060764","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060785","1483060785","1483060828","1483060785","1","8","0","-1","43","0","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060802","1483060802","1483060838","1483060802","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060829","1483060829","1483060862","1483060829","1","8","0","-1","33","0","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060838","1483060838","1483060877","1483060838","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060850","1483060850","1483060923","1483060850","1","8","0","-1","73","0","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060905","1483060905","1483060953","1483060905","1","8","0","-1","48","0","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060962","1483060962","1483060997","1483060962","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969527","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060975","1483060975","1483061013","1483060975","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060979","1483060979","1483061052","1483060979","1","8","0","-1","73","0","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060981","1483060981","1483061058","1483060981","1","8","0","-1","77","0","616","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061012","1483061012","1483061092","1483061012","1","8","0","-1","80","0","640","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061081","1483061081","1483061120","1483061081","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061086","1483061086","1483061120","1483061086","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061103","1483061103","1483061140","1483061103","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061121","1483061121","1483061152","1483061121","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061130","1483061130","1483061161","1483061130","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061138","1483061138","1483061175","1483061138","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061141","1483061141","1483061177","1483061141","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969579","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061158","1483061158","1483061312","1483061158","1","8","0","-1","154","0","1232","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061162","1483061162","1483061221","1483061162","1","8","0","-1","59","0","472","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061176","1483061176","1483061208","1483061176","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061209","1483061209","1483061258","1483061209","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061221","1483061221","1483061270","1483061221","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061259","1483061259","1483061290","1483061259","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061313","1483061313","1483061396","1483061313","1","8","0","-1","83","0","664","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061319","1483061319","1483061358","1483061319","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061397","1483061397","1483061432","1483061397","1","8","0","-1","35","0","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061401","1483061401","1483061437","1483061401","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061433","1483061433","1483061484","1483061433","1","8","0","-1","51","0","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061448","1483061448","1483061491","1483061448","1","8","0","-1","43","0","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061464","1483061464","1483061511","1483061464","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061469","1483061469","1483061508","1483061469","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061485","1483061485","1483061547","1483061485","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061492","1483061492","1483061567","1483061492","1","8","0","-1","75","0","600","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061509","1483061509","1483061547","1483061509","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061525","1483061525","1483061585","1483061525","1","8","0","-1","60","0","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061529","1483061529","1483061593","1483061529","1","8","0","-1","64","0","512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061548","1483061548","1483061601","1483061548","1","8","0","-1","53","0","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061548","1483061548","1483061585","1483061548","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061551","1483061551","1483061614","1483061551","1","8","0","-1","63","0","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061568","1483061568","1483061615","1483061568","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061586","1483061586","1483061650","1483061586","1","8","0","-1","64","0","512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061601","1483061601","1483061697","1483061601","1","8","0","-1","96","0","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061760","1483061760","1483061792","1483061760","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969755","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061761","1483061761","1483061824","1483061761","1","8","0","-1","63","0","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969757","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061767","1483061767","1483061812","1483061767","1","8","0","-1","45","0","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969761","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061780","1483061780","1483061920","1483061780","1","8","0","-1","140","0","1120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969765","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061793","1483061793","1483061833","1483061793","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061857","1483061857","1483061894","1483061857","1","8","0","-1","37","0","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061880","1483061880","1483061920","1483061880","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061921","1483061921","1483062035","1483061921","1","8","0","-1","114","0","912","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061921","1483061921","1483061973","1483061921","1","8","0","-1","52","0","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061954","1483061954","1483062016","1483061954","1","8","0","-1","62","0","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062011","1483062011","1483062041","1483062011","1","8","0","-1","30","0","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062017","1483062017","1483062049","1483062017","1","8","0","-1","32","0","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062042","1483062042","1483062078","1483062042","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062049","1483062049","1483062106","1483062049","1","8","0","-1","57","0","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062050","1483062050","1483062102","1483062050","1","8","0","-1","52","0","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062057","1483062057","1483062101","1483062057","1","8","0","-1","44","0","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062060","1483062060","1483062157","1483062060","1","8","0","-1","97","0","776","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062079","1483062079","1483062119","1483062079","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062132","1483062132","1483062172","1483062132","1","8","0","-1","40","0","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062136","1483062136","1483062185","1483062136","1","8","0","-1","49","0","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062186","1483062186","1483062222","1483062186","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062194","1483062194","1483062228","1483062194","1","8","0","-1","34","0","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062199","1483062199","1483062246","1483062199","1","8","0","-1","47","0","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062202","1483062202","1483062238","1483062202","1","8","0","-1","36","0","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062223","1483062223","1483062262","1483062223","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062227","1483062227","1483062265","1483062227","1","8","0","-1","38","0","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062247","1483062247","1483062278","1483062247","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062278","1483062278","1483062329","1483062278","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062329","1483062329","1483062388","1483062329","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062342","1483062342","1483062440","1483062342","1","8","0","-1","98","0","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062343","1483062343","1483062384","1483062343","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062403","1483062403","1483062442","1483062403","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969966","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062427","1483062427","1483062498","1483062427","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062436","1483062436","1483062496","1483062436","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062441","1483062441","1483062475","1483062441","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062508","1483062508","1483062559","1483062508","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062567","1483062567","1483062607","1483062567","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062583","1483062583","1483062641","1483062583","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062604","1483062604","1483062655","1483062604","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970019","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062634","1483062634","1483062678","1483062634","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062640","1483062640","1483062674","1483062640","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062649","1483062649","1483062708","1483062649","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062655","1483062655","1483062697","1483062655","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062675","1483062675","1483062767","1483062675","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970035","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062678","1483062678","1483062849","1483062678","1","8","0","-1","171","0","1368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062821","1483062821","1483062868","1483062821","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062895","1483062895","1483063035","1483062895","1","8","0","-1","140","0","1120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062955","1483062955","1483063090","1483062955","1","8","0","-1","135","0","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063052","1483063052","1483063194","1483063052","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063091","1483063091","1483063193","1483063091","1","8","0","-1","102","0","816","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063094","1483063094","1483063213","1483063094","1","8","0","-1","119","0","952","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063168","1483063168","1483063273","1483063168","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063194","1483063194","1483063465","1483063194","1","8","0","-1","271","0","2168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063195","1483063195","1483063307","1483063195","1","8","0","-1","112","0","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063274","1483063274","1483063321","1483063274","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063322","1483063322","1483063370","1483063322","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063354","1483063354","1483063386","1483063354","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970147","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063357","1483063357","1483063407","1483063357","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063360","1483063360","1483063417","1483063360","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970153","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063371","1483063371","1483063424","1483063371","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970155","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063387","1483063387","1483063440","1483063387","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063411","1483063411","1483063457","1483063411","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063425","1483063425","1483063469","1483063425","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063458","1483063458","1483063524","1483063458","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970173","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063466","1483063466","1483063612","1483063466","1","8","0","-1","146","0","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063469","1483063469","1483063557","1483063469","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063503","1483063503","1483063576","1483063503","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063524","1483063524","1483063574","1483063524","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063547","1483063547","1483063586","1483063547","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970187","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063558","1483063558","1483063600","1483063558","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063574","1483063574","1483063626","1483063574","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063701","1483063701","1483063808","1483063701","1","8","0","-1","107","0","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063710","1483063710","1483063777","1483063710","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063766","1483063766","1483063823","1483063766","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063798","1483063798","1483063854","1483063798","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063809","1483063809","1483063886","1483063809","1","8","0","-1","77","0","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063816","1483063816","1483063871","1483063816","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063824","1483063824","1483063867","1483063824","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063868","1483063868","1483063972","1483063868","1","8","0","-1","104","0","832","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063872","1483063872","1483063934","1483063872","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063887","1483063887","1483063919","1483063887","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063918","1483063918","1483063957","1483063918","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063935","1483063935","1483063969","1483063935","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063972","1483063972","1483064003","1483063972","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064040","1483064040","1483064100","1483064040","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064057","1483064057","1483064092","1483064057","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970319","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064057","1483064057","1483064090","1483064057","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970333","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064111","1483064111","1483064150","1483064111","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970335","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064115","1483064115","1483064146","1483064115","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064161","1483064161","1483064212","1483064161","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970356","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064173","1483064173","1483064305","1483064173","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064182","1483064182","1483064219","1483064182","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064199","1483064199","1483064241","1483064199","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064211","1483064211","1483064257","1483064211","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064220","1483064220","1483064267","1483064220","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064248","1483064248","1483064297","1483064248","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064258","1483064258","1483064309","1483064258","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970380","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064262","1483064262","1483064298","1483064262","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064268","1483064268","1483064314","1483064268","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064319","1483064319","1483064360","1483064319","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064320","1483064320","1483064371","1483064320","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064368","1483064368","1483064405","1483064368","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064406","1483064406","1483064457","1483064406","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064407","1483064407","1483064440","1483064407","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064418","1483064418","1483064456","1483064418","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064457","1483064457","1483064498","1483064457","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064458","1483064458","1483064510","1483064458","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064468","1483064468","1483064505","1483064468","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064478","1483064478","1483064510","1483064478","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064529","1483064529","1483064561","1483064529","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064541","1483064541","1483064574","1483064541","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064549","1483064549","1483064583","1483064549","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064692","1483064692","1483064724","1483064692","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064725","1483064725","1483064755","1483064725","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064732","1483064732","1483064773","1483064732","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064747","1483064747","1483064784","1483064747","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064780","1483064780","1483064810","1483064780","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064785","1483064785","1483064838","1483064785","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064811","1483064811","1483064841","1483064811","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064830","1483064830","1483064865","1483064830","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064854","1483064854","1483064900","1483064854","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064890","1483064890","1483064924","1483064890","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064890","1483064890","1483064941","1483064890","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064901","1483064901","1483064939","1483064901","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064918","1483064918","1483064965","1483064918","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064924","1483064924","1483064967","1483064924","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064931","1483064931","1483064964","1483064931","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064966","1483064966","1483065010","1483064966","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064978","1483064978","1483065018","1483064978","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065027","1483065027","1483065070","1483065027","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065044","1483065044","1483065080","1483065044","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065103","1483065103","1483065143","1483065103","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970675","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065114","1483065114","1483065152","1483065114","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065190","1483065190","1483065226","1483065190","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065247","1483065247","1483065382","1483065247","1","8","0","-1","135","0","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065250","1483065250","1483065297","1483065250","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065253","1483065253","1483065296","1483065253","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065280","1483065280","1483065313","1483065280","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065286","1483065286","1483065351","1483065286","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065297","1483065297","1483065362","1483065297","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065297","1483065297","1483065362","1483065297","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065314","1483065314","1483065371","1483065314","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065352","1483065352","1483065422","1483065352","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065488","1483065488","1483065576","1483065488","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065577","1483065577","1483065623","1483065577","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065588","1483065588","1483065619","1483065588","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970800","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065624","1483065624","1483065654","1483065624","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065633","1483065633","1483065694","1483065633","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065640","1483065640","1483065680","1483065640","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065651","1483065651","1483065705","1483065651","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065681","1483065681","1483065715","1483065681","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065705","1483065705","1483065742","1483065705","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065716","1483065716","1483065754","1483065716","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065716","1483065716","1483065755","1483065716","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065746","1483065746","1483065795","1483065746","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065755","1483065755","1483065805","1483065755","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065835","1483065835","1483065877","1483065835","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065888","1483065888","1483065926","1483065888","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065927","1483065927","1483065958","1483065927","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970924","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065970","1483065970","1483066013","1483065970","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970928","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065979","1483065979","1483066015","1483065979","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066030","1483066030","1483066069","1483066030","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066035","1483066035","1483066080","1483066035","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970952","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066050","1483066050","1483066080","1483066050","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066053","1483066053","1483066095","1483066053","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066130","1483066130","1483066178","1483066130","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066154","1483066154","1483066193","1483066154","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066178","1483066178","1483066209","1483066178","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066215","1483066215","1483066262","1483066215","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066221","1483066221","1483066261","1483066221","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066291","1483066291","1483066334","1483066291","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066292","1483066292","1483066334","1483066292","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066302","1483066302","1483066349","1483066302","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066330","1483066330","1483066373","1483066330","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066335","1483066335","1483066392","1483066335","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066350","1483066350","1483066392","1483066350","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066397","1483066397","1483066432","1483066397","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066412","1483066412","1483066470","1483066412","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066420","1483066420","1483066465","1483066420","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066435","1483066435","1483066495","1483066435","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066577","1483066577","1483066614","1483066577","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066584","1483066584","1483066662","1483066584","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066604","1483066604","1483066698","1483066604","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066650","1483066650","1483066782","1483066650","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066653","1483066653","1483066784","1483066653","1","8","0","-1","131","0","1048","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066693","1483066693","1483066787","1483066693","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066782","1483066782","1483066889","1483066782","1","8","0","-1","107","0","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066785","1483066785","1483066873","1483066785","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066787","1483066787","1483066859","1483066787","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066837","1483066837","1483066953","1483066837","1","8","0","-1","116","0","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066859","1483066859","1483067036","1483066859","1","8","0","-1","177","0","1416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066865","1483066865","1483067036","1483066865","1","8","0","-1","171","0","1368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066894","1483066894","1483066954","1483066894","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067064","1483067064","1483067138","1483067064","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067436","1483067436","1483067592","1483067436","1","8","0","-1","156","0","1248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067494","1483067494","1483067559","1483067494","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067507","1483067507","1483067572","1483067507","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067635","1483067635","1483067709","1483067635","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067680","1483067680","1483067809","1483067680","1","8","0","-1","129","0","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067697","1483067697","1483067753","1483067697","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067697","1483067697","1483067764","1483067697","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067710","1483067710","1483067741","1483067710","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067742","1483067742","1483067776","1483067742","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067761","1483067761","1483067833","1483067761","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067777","1483067777","1483067921","1483067777","1","8","0","-1","144","0","1152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067804","1483067804","1483067864","1483067804","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067810","1483067810","1483067854","1483067810","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067924","1483067924","1483068044","1483067924","1","8","0","-1","120","0","960","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971349","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067938","1483067938","1483067992","1483067938","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067954","1483067954","1483067986","1483067954","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068016","1483068016","1483068050","1483068016","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068039","1483068039","1483068070","1483068039","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068045","1483068045","1483068077","1483068045","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068061","1483068061","1483068118","1483068061","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068067","1483068067","1483068098","1483068067","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068137","1483068137","1483068176","1483068137","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971432","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068137","1483068137","1483068171","1483068137","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068153","1483068153","1483068193","1483068153","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068157","1483068157","1483068198","1483068157","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068185","1483068185","1483068221","1483068185","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068360","1483068360","1483068398","1483068360","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068438","1483068438","1483068468","1483068438","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068444","1483068444","1483068478","1483068444","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068447","1483068447","1483068493","1483068447","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068456","1483068456","1483068488","1483068456","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068473","1483068473","1483068510","1483068473","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068479","1483068479","1483068519","1483068479","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068484","1483068484","1483068516","1483068484","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068516","1483068516","1483068643","1483068516","1","8","0","-1","127","0","1016","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971579","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068519","1483068519","1483068559","1483068519","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068560","1483068560","1483068595","1483068560","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068600","1483068600","1483068644","1483068600","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068660","1483068660","1483068705","1483068660","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068665","1483068665","1483068703","1483068665","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068704","1483068704","1483068752","1483068704","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068719","1483068719","1483068845","1483068719","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068730","1483068730","1483068791","1483068730","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068770","1483068770","1483068806","1483068770","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068792","1483068792","1483068825","1483068792","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068802","1483068802","1483068867","1483068802","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068807","1483068807","1483068869","1483068807","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068846","1483068846","1483068890","1483068846","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068855","1483068855","1483068898","1483068855","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068867","1483068867","1483068930","1483068867","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068867","1483068867","1483068953","1483068867","1","8","0","-1","86","0","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068870","1483068870","1483069040","1483068870","1","8","0","-1","170","0","1360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068877","1483068877","1483068973","1483068877","1","8","0","-1","96","0","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068979","1483068979","1483069020","1483068979","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069000","1483069000","1483069038","1483069000","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069065","1483069065","1483069119","1483069065","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069117","1483069117","1483069149","1483069117","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069120","1483069120","1483069164","1483069120","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069163","1483069163","1483069194","1483069163","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069192","1483069192","1483069224","1483069192","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069209","1483069209","1483069249","1483069209","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069221","1483069221","1483069261","1483069221","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069250","1483069250","1483069293","1483069250","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069261","1483069261","1483069366","1483069261","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069294","1483069294","1483069365","1483069294","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069311","1483069311","1483069388","1483069311","1","8","0","-1","77","0","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069366","1483069366","1483069446","1483069366","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069431","1483069431","1483069510","1483069431","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069444","1483069444","1483069683","1483069444","1","8","0","-1","239","0","1912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069447","1483069447","1483069575","1483069447","1","8","0","-1","128","0","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069462","1483069462","1483069614","1483069462","1","8","0","-1","152","0","1216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069485","1483069485","1483069540","1483069485","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069525","1483069525","1483069589","1483069525","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069614","1483069614","1483069658","1483069614","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069652","1483069652","1483069682","1483069652","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069655","1483069655","1483069687","1483069655","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069659","1483069659","1483069689","1483069659","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069684","1483069684","1483069715","1483069684","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069856","1483069856","1483069894","1483069856","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069859","1483069859","1483069903","1483069859","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069950","1483069950","1483069984","1483069950","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069959","1483069959","1483070036","1483069959","1","8","0","-1","77","0","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069959","1483069959","1483069990","1483069959","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070007","1483070007","1483070039","1483070007","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070053","1483070053","1483070087","1483070053","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070129","1483070129","1483070235","1483070129","1","8","0","-1","106","0","848","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070160","1483070160","1483070191","1483070160","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070192","1483070192","1483070233","1483070192","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070222","1483070222","1483070260","1483070222","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070228","1483070228","1483070259","1483070228","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070338","1483070338","1483070401","1483070338","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972259","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070438","1483070438","1483070506","1483070438","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070483","1483070483","1483070514","1483070483","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070587","1483070587","1483070620","1483070587","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070610","1483070610","1483070672","1483070610","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070673","1483070673","1483070748","1483070673","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070822","1483070822","1483070942","1483070822","1","8","0","-1","120","0","960","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070826","1483070826","1483070878","1483070826","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071022","1483071022","1483071056","1483071022","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071024","1483071024","1483071114","1483071024","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071179","1483071179","1483071217","1483071179","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071214","1483071214","1483071254","1483071214","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071217","1483071217","1483071248","1483071217","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071224","1483071224","1483071265","1483071224","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071249","1483071249","1483071285","1483071249","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071255","1483071255","1483071305","1483071255","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071298","1483071298","1483071329","1483071298","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071330","1483071330","1483071362","1483071330","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071339","1483071339","1483071406","1483071339","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071363","1483071363","1483071420","1483071363","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972637","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071419","1483071419","1483071478","1483071419","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071503","1483071503","1483071562","1483071503","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972675","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071506","1483071506","1483071560","1483071506","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071561","1483071561","1483071593","1483071561","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071566","1483071566","1483071611","1483071566","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071617","1483071617","1483071697","1483071617","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071660","1483071660","1483071736","1483071660","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071696","1483071696","1483071766","1483071696","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071710","1483071710","1483071834","1483071710","1","8","0","-1","124","0","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071723","1483071723","1483071837","1483071723","1","8","0","-1","114","0","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071765","1483071765","1483071841","1483071765","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071771","1483071771","1483071837","1483071771","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071808","1483071808","1483071890","1483071808","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071838","1483071838","1483071914","1483071838","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071891","1483071891","1483071933","1483071891","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071915","1483071915","1483071956","1483071915","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071918","1483071918","1483071969","1483071918","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071934","1483071934","1483071967","1483071934","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071957","1483071957","1483072001","1483071957","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071968","1483071968","1483072008","1483071968","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071986","1483071986","1483072020","1483071986","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071991","1483071991","1483072033","1483071991","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072002","1483072002","1483072061","1483072002","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072002","1483072002","1483072071","1483072002","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072009","1483072009","1483072133","1483072009","1","8","0","-1","124","0","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072134","1483072134","1483072184","1483072134","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072140","1483072140","1483072190","1483072140","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072174","1483072174","1483072223","1483072174","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072221","1483072221","1483072256","1483072221","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072257","1483072257","1483072320","1483072257","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972876","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072260","1483072260","1483072321","1483072260","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072278","1483072278","1483072308","1483072278","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072309","1483072309","1483072350","1483072309","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072321","1483072321","1483072367","1483072321","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072351","1483072351","1483072408","1483072351","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072354","1483072354","1483072396","1483072354","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072368","1483072368","1483072404","1483072368","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072377","1483072377","1483072415","1483072377","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072405","1483072405","1483072456","1483072405","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072415","1483072415","1483072462","1483072415","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972926","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072449","1483072449","1483072482","1483072449","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972932","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072457","1483072457","1483072499","1483072457","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072472","1483072472","1483072513","1483072472","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072500","1483072500","1483072568","1483072500","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072549","1483072549","1483072597","1483072549","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972965","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072554","1483072554","1483072587","1483072554","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072569","1483072569","1483072602","1483072569","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072588","1483072588","1483072628","1483072588","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072597","1483072597","1483072641","1483072597","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072603","1483072603","1483072735","1483072603","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072606","1483072606","1483072641","1483072606","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072609","1483072609","1483072678","1483072609","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072629","1483072629","1483072667","1483072629","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072642","1483072642","1483072677","1483072642","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072681","1483072681","1483072715","1483072681","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072721","1483072721","1483072762","1483072721","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072727","1483072727","1483072766","1483072727","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072737","1483072737","1483072870","1483072737","1","8","0","-1","133","0","1064","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072871","1483072871","1483072902","1483072871","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072894","1483072894","1483072934","1483072894","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072935","1483072935","1483073001","1483072935","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072956","1483072956","1483072995","1483072956","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073012","1483073012","1483073057","1483073012","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073051","1483073051","1483073091","1483073051","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073058","1483073058","1483073114","1483073058","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973123","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073070","1483073070","1483073107","1483073070","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073163","1483073163","1483073196","1483073163","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073167","1483073167","1483073211","1483073167","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073212","1483073212","1483073257","1483073212","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073234","1483073234","1483073269","1483073234","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073248","1483073248","1483073279","1483073248","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073257","1483073257","1483073312","1483073257","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073280","1483073280","1483073314","1483073280","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073318","1483073318","1483073362","1483073318","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073341","1483073341","1483073415","1483073341","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973218","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073358","1483073358","1483073405","1483073358","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073393","1483073393","1483073428","1483073393","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073416","1483073416","1483073471","1483073416","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073422","1483073422","1483073456","1483073422","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973240","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073429","1483073429","1483073469","1483073429","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973244","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073450","1483073450","1483073480","1483073450","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073465","1483073465","1483073509","1483073465","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073481","1483073481","1483073526","1483073481","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073481","1483073481","1483073618","1483073481","1","8","0","-1","137","0","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073493","1483073493","1483073542","1483073493","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073509","1483073509","1483073584","1483073509","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073624","1483073624","1483073660","1483073624","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073641","1483073641","1483073674","1483073641","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073675","1483073675","1483073707","1483073675","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073727","1483073727","1483073770","1483073727","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973327","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073731","1483073731","1483073773","1483073731","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973329","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073731","1483073731","1483073776","1483073731","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073800","1483073800","1483073837","1483073800","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073800","1483073800","1483073848","1483073800","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073808","1483073808","1483073842","1483073808","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073824","1483073824","1483073876","1483073824","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073838","1483073838","1483073890","1483073838","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073843","1483073843","1483073901","1483073843","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073848","1483073848","1483073878","1483073848","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073919","1483073919","1483073973","1483073919","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073957","1483073957","1483074049","1483073957","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073985","1483073985","1483074039","1483073985","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074040","1483074040","1483074070","1483074040","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973410","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074046","1483074046","1483074081","1483074046","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074082","1483074082","1483074114","1483074082","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074109","1483074109","1483074150","1483074109","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973434","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074132","1483074132","1483074174","1483074132","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074139","1483074139","1483074188","1483074139","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074151","1483074151","1483074280","1483074151","1","8","0","-1","129","0","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074157","1483074157","1483074195","1483074157","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973446","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074171","1483074171","1483074236","1483074171","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074189","1483074189","1483074230","1483074189","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074278","1483074278","1483074308","1483074278","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074382","1483074382","1483074417","1483074382","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074391","1483074391","1483074444","1483074391","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074409","1483074409","1483074440","1483074409","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074411","1483074411","1483074442","1483074411","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074455","1483074455","1483074493","1483074455","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074467","1483074467","1483074506","1483074467","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074507","1483074507","1483074568","1483074507","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074514","1483074514","1483074562","1483074514","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074543","1483074543","1483074573","1483074543","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074636","1483074636","1483074763","1483074636","1","8","0","-1","127","0","1016","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074672","1483074672","1483074707","1483074672","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074677","1483074677","1483074708","1483074677","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074751","1483074751","1483074782","1483074751","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074756","1483074756","1483074792","1483074756","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074783","1483074783","1483074871","1483074783","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074790","1483074790","1483074840","1483074790","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074793","1483074793","1483074853","1483074793","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973677","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074841","1483074841","1483074876","1483074841","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074851","1483074851","1483074885","1483074851","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074853","1483074853","1483074902","1483074853","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074974","1483074974","1483075011","1483074974","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075012","1483075012","1483075076","1483075012","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075037","1483075037","1483075100","1483075037","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075067","1483075067","1483075112","1483075067","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075077","1483075077","1483075122","1483075077","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075105","1483075105","1483075161","1483075105","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075113","1483075113","1483075147","1483075113","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075162","1483075162","1483075294","1483075162","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075176","1483075176","1483075305","1483075176","1","8","0","-1","129","0","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075239","1483075239","1483075374","1483075239","1","8","0","-1","135","0","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075295","1483075295","1483075423","1483075295","1","8","0","-1","128","0","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075374","1483075374","1483075630","1483075374","1","8","0","-1","256","0","2048","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075526","1483075526","1483075569","1483075526","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075548","1483075548","1483075608","1483075548","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075570","1483075570","1483075610","1483075570","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075578","1483075578","1483075618","1483075578","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075593","1483075593","1483075635","1483075593","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075609","1483075609","1483075672","1483075609","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075619","1483075619","1483075760","1483075619","1","8","0","-1","141","0","1128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075630","1483075630","1483075685","1483075630","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075636","1483075636","1483075708","1483075636","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075653","1483075653","1483075727","1483075653","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973863","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075686","1483075686","1483075756","1483075686","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973867","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075708","1483075708","1483075739","1483075708","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075719","1483075719","1483075793","1483075719","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075728","1483075728","1483075766","1483075728","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075868","1483075868","1483075935","1483075868","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075910","1483075910","1483075954","1483075910","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075936","1483075936","1483076008","1483075936","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075947","1483075947","1483076017","1483075947","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075955","1483075955","1483075994","1483075955","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075995","1483075995","1483076034","1483075995","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076003","1483076003","1483076062","1483076003","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076006","1483076006","1483076037","1483076006","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076009","1483076009","1483076073","1483076009","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076013","1483076013","1483076103","1483076013","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076018","1483076018","1483076108","1483076018","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076034","1483076034","1483076103","1483076034","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076038","1483076038","1483076132","1483076038","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076104","1483076104","1483076154","1483076104","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076132","1483076132","1483076187","1483076132","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076169","1483076169","1483076230","1483076169","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076188","1483076188","1483076256","1483076188","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076239","1483076239","1483076275","1483076239","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076242","1483076242","1483076293","1483076242","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076257","1483076257","1483076299","1483076257","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076280","1483076280","1483076322","1483076280","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076294","1483076294","1483076338","1483076294","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076324","1483076324","1483076368","1483076324","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076331","1483076331","1483076389","1483076331","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076349","1483076349","1483076384","1483076349","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076354","1483076354","1483076426","1483076354","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076369","1483076369","1483076401","1483076369","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076390","1483076390","1483076423","1483076390","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076390","1483076390","1483076427","1483076390","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076402","1483076402","1483076445","1483076402","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076473","1483076473","1483076503","1483076473","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076499","1483076499","1483076567","1483076499","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076554","1483076554","1483076587","1483076554","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076588","1483076588","1483076638","1483076588","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076596","1483076596","1483076638","1483076596","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076606","1483076606","1483076660","1483076606","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076651","1483076651","1483076713","1483076651","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974119","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076657","1483076657","1483076704","1483076657","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974121","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076661","1483076661","1483076730","1483076661","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974123","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076665","1483076665","1483076802","1483076665","1","8","0","-1","137","0","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974129","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076705","1483076705","1483076746","1483076705","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974131","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076714","1483076714","1483076745","1483076714","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076742","1483076742","1483076780","1483076742","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974139","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076746","1483076746","1483076788","1483076746","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076760","1483076760","1483076810","1483076760","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076913","1483076913","1483076943","1483076913","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076966","1483076966","1483077029","1483076966","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076998","1483076998","1483077031","1483076998","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077011","1483077011","1483077054","1483077011","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077028","1483077028","1483077087","1483077028","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077088","1483077088","1483077133","1483077088","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077091","1483077091","1483077158","1483077091","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077091","1483077091","1483077154","1483077091","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077094","1483077094","1483077237","1483077094","1","8","0","-1","143","0","1144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077186","1483077186","1483077216","1483077186","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077270","1483077270","1483077320","1483077270","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077279","1483077279","1483077347","1483077279","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077329","1483077329","1483077360","1483077329","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077336","1483077336","1483077366","1483077336","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077361","1483077361","1483077392","1483077361","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077367","1483077367","1483077413","1483077367","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077371","1483077371","1483077415","1483077371","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077375","1483077375","1483077434","1483077375","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077379","1483077379","1483077415","1483077379","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077393","1483077393","1483077452","1483077393","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974336","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077416","1483077416","1483077450","1483077416","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077425","1483077425","1483077465","1483077425","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077435","1483077435","1483077484","1483077435","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077444","1483077444","1483077480","1483077444","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077453","1483077453","1483077515","1483077453","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077465","1483077465","1483077522","1483077465","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077551","1483077551","1483077584","1483077551","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077579","1483077579","1483077634","1483077579","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077599","1483077599","1483077741","1483077599","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077635","1483077635","1483077684","1483077635","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077654","1483077654","1483077725","1483077654","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077658","1483077658","1483077698","1483077658","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077664","1483077664","1483077717","1483077664","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077685","1483077685","1483077747","1483077685","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077718","1483077718","1483077767","1483077718","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077726","1483077726","1483077792","1483077726","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077732","1483077732","1483077802","1483077732","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077742","1483077742","1483077805","1483077742","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077757","1483077757","1483077818","1483077757","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077793","1483077793","1483077874","1483077793","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077806","1483077806","1483077990","1483077806","1","8","0","-1","184","0","1472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077819","1483077819","1483077850","1483077819","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077831","1483077831","1483077879","1483077831","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077880","1483077880","1483077933","1483077880","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077949","1483077949","1483078007","1483077949","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077974","1483077974","1483078015","1483077974","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078021","1483078021","1483078059","1483078021","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078060","1483078060","1483078110","1483078060","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974527","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078096","1483078096","1483078141","1483078096","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078109","1483078109","1483078209","1483078109","1","8","0","-1","100","0","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078130","1483078130","1483078181","1483078130","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078142","1483078142","1483078177","1483078142","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078158","1483078158","1483078192","1483078158","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078177","1483078177","1483078212","1483078177","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078186","1483078186","1483078216","1483078186","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078193","1483078193","1483078229","1483078193","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078230","1483078230","1483078273","1483078230","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078245","1483078245","1483078367","1483078245","1","8","0","-1","122","0","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078250","1483078250","1483078283","1483078250","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078251","1483078251","1483078302","1483078251","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078272","1483078272","1483078309","1483078272","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078352","1483078352","1483078478","1483078352","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078366","1483078366","1483078399","1483078366","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078458","1483078458","1483078497","1483078458","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078458","1483078458","1483078530","1483078458","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078479","1483078479","1483078531","1483078479","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078519","1483078519","1483078550","1483078519","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078522","1483078522","1483078555","1483078522","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974689","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078532","1483078532","1483078566","1483078532","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974715","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078611","1483078611","1483078666","1483078611","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078719","1483078719","1483078784","1483078719","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078724","1483078724","1483078789","1483078724","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078738","1483078738","1483078768","1483078738","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974757","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078774","1483078774","1483078853","1483078774","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078785","1483078785","1483078959","1483078785","1","8","0","-1","174","0","1392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078817","1483078817","1483078872","1483078817","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078846","1483078846","1483078891","1483078846","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078854","1483078854","1483078923","1483078854","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078854","1483078854","1483078917","1483078854","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078918","1483078918","1483078972","1483078918","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974788","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078924","1483078924","1483078972","1483078924","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078933","1483078933","1483078997","1483078933","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079093","1483079093","1483079235","1483079093","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079236","1483079236","1483079305","1483079236","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079273","1483079273","1483079437","1483079273","1","8","0","-1","164","0","1312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079286","1483079286","1483079391","1483079286","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079292","1483079292","1483079468","1483079292","1","8","0","-1","176","0","1408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079296","1483079296","1483079340","1483079296","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079306","1483079306","1483079367","1483079306","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974863","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079341","1483079341","1483079397","1483079341","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079345","1483079345","1483079390","1483079345","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974867","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079368","1483079368","1483079412","1483079368","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079391","1483079391","1483079442","1483079391","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079398","1483079398","1483079444","1483079398","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079568","1483079568","1483079607","1483079568","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079608","1483079608","1483079686","1483079608","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079663","1483079663","1483079703","1483079663","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079691","1483079691","1483079787","1483079691","1","8","0","-1","96","0","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079703","1483079703","1483079872","1483079703","1","8","0","-1","169","0","1352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079715","1483079715","1483079776","1483079715","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079745","1483079745","1483079817","1483079745","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079773","1483079773","1483079845","1483079773","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079776","1483079776","1483079848","1483079776","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079788","1483079788","1483079831","1483079788","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079818","1483079818","1483079895","1483079818","1","8","0","-1","77","0","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079920","1483079920","1483080020","1483079920","1","8","0","-1","100","0","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079926","1483079926","1483080095","1483079926","1","8","0","-1","169","0","1352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080011","1483080011","1483080041","1483080011","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080041","1483080041","1483080088","1483080041","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080049","1483080049","1483080096","1483080049","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080110","1483080110","1483080151","1483080110","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080113","1483080113","1483080154","1483080113","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080120","1483080120","1483080179","1483080120","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080187","1483080187","1483080224","1483080187","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080190","1483080190","1483080224","1483080190","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080198","1483080198","1483080238","1483080198","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080304","1483080304","1483080336","1483080304","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080388","1483080388","1483080428","1483080388","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080392","1483080392","1483080437","1483080392","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975127","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080399","1483080399","1483080439","1483080399","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975129","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080406","1483080406","1483080440","1483080406","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975135","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080429","1483080429","1483080463","1483080429","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080441","1483080441","1483080488","1483080441","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080510","1483080510","1483080548","1483080510","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080519","1483080519","1483080550","1483080519","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080538","1483080538","1483080571","1483080538","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080547","1483080547","1483080578","1483080547","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080631","1483080631","1483080667","1483080631","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080742","1483080742","1483080858","1483080742","1","8","0","-1","116","0","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080764","1483080764","1483080800","1483080764","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080772","1483080772","1483080819","1483080772","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080801","1483080801","1483080846","1483080801","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080803","1483080803","1483080842","1483080803","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080804","1483080804","1483080844","1483080804","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080865","1483080865","1483080904","1483080865","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080868","1483080868","1483081000","1483080868","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080871","1483080871","1483080915","1483080871","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080881","1483080881","1483080925","1483080881","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080904","1483080904","1483080939","1483080904","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080940","1483080940","1483080974","1483080940","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080974","1483080974","1483081007","1483080974","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081009","1483081009","1483081049","1483081009","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081019","1483081019","1483081052","1483081019","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081041","1483081041","1483081080","1483081041","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081139","1483081139","1483081186","1483081139","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081144","1483081144","1483081279","1483081144","1","8","0","-1","135","0","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081147","1483081147","1483081184","1483081147","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081216","1483081216","1483081246","1483081216","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081237","1483081237","1483081269","1483081237","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081270","1483081270","1483081301","1483081270","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081270","1483081270","1483081325","1483081270","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081271","1483081271","1483081319","1483081271","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081280","1483081280","1483081324","1483081280","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081293","1483081293","1483081345","1483081293","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975446","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081301","1483081301","1483081336","1483081301","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081320","1483081320","1483081379","1483081320","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081388","1483081388","1483081444","1483081388","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081389","1483081389","1483081445","1483081389","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081446","1483081446","1483081537","1483081446","1","8","0","-1","91","0","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081449","1483081449","1483081543","1483081449","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081568","1483081568","1483081601","1483081568","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081591","1483081591","1483081621","1483081591","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975527","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081606","1483081606","1483081647","1483081606","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081621","1483081621","1483081667","1483081621","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081629","1483081629","1483081686","1483081629","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081638","1483081638","1483081671","1483081638","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081783","1483081783","1483081815","1483081783","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081878","1483081878","1483081912","1483081878","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081886","1483081886","1483081917","1483081886","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081897","1483081897","1483081934","1483081897","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081910","1483081910","1483081941","1483081910","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081990","1483081990","1483082027","1483081990","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081996","1483081996","1483082028","1483081996","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081998","1483081998","1483082045","1483081998","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082027","1483082027","1483082061","1483082027","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082029","1483082029","1483082059","1483082029","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082061","1483082061","1483082100","1483082061","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082128","1483082128","1483082165","1483082128","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082142","1483082142","1483082185","1483082142","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082201","1483082201","1483082255","1483082201","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082237","1483082237","1483082279","1483082237","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082240","1483082240","1483082297","1483082240","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082244","1483082244","1483082279","1483082244","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082256","1483082256","1483082346","1483082256","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082280","1483082280","1483082319","1483082280","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082345","1483082345","1483082411","1483082345","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082348","1483082348","1483082387","1483082348","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082351","1483082351","1483082381","1483082351","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082382","1483082382","1483082414","1483082382","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082398","1483082398","1483082528","1483082398","1","8","0","-1","130","0","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975824","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082465","1483082465","1483082498","1483082465","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082493","1483082493","1483082535","1483082493","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082498","1483082498","1483082541","1483082498","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082583","1483082583","1483082652","1483082583","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082597","1483082597","1483082724","1483082597","1","8","0","-1","127","0","1016","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975864","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082629","1483082629","1483082753","1483082629","1","8","0","-1","124","0","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082653","1483082653","1483082724","1483082653","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082722","1483082722","1483082855","1483082722","1","8","0","-1","133","0","1064","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082725","1483082725","1483082837","1483082725","1","8","0","-1","112","0","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082750","1483082750","1483082831","1483082750","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082754","1483082754","1483082825","1483082754","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082754","1483082754","1483082867","1483082754","1","8","0","-1","113","0","904","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082801","1483082801","1483082944","1483082801","1","8","0","-1","143","0","1144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082826","1483082826","1483082981","1483082826","1","8","0","-1","155","0","1240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082832","1483082832","1483082984","1483082832","1","8","0","-1","152","0","1216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082945","1483082945","1483083003","1483082945","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082955","1483082955","1483083022","1483082955","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082985","1483082985","1483083025","1483082985","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083004","1483083004","1483083053","1483083004","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083023","1483083023","1483083080","1483083023","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083024","1483083024","1483083100","1483083024","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083102","1483083102","1483083141","1483083102","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083175","1483083175","1483083210","1483083175","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083176","1483083176","1483083254","1483083176","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083189","1483083189","1483083350","1483083189","1","8","0","-1","161","0","1288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975992","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083211","1483083211","1483083259","1483083211","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083260","1483083260","1483083301","1483083260","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083283","1483083283","1483083350","1483083283","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083302","1483083302","1483083364","1483083302","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976016","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083308","1483083308","1483083343","1483083308","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083358","1483083358","1483083442","1483083358","1","8","0","-1","84","0","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976035","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083382","1483083382","1483083443","1483083382","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976037","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083387","1483083387","1483083427","1483083387","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976041","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083428","1483083428","1483083461","1483083428","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976079","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083496","1483083496","1483083540","1483083496","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976081","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083501","1483083501","1483083559","1483083501","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976083","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083512","1483083512","1483083548","1483083512","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083693","1483083693","1483083725","1483083693","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083725","1483083725","1483083756","1483083725","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083726","1483083726","1483083769","1483083726","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083760","1483083760","1483083841","1483083760","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083763","1483083763","1483083798","1483083763","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083976","1483083976","1483084042","1483083976","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083982","1483083982","1483084044","1483083982","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083995","1483083995","1483084053","1483083995","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084071","1483084071","1483084105","1483084071","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084083","1483084083","1483084129","1483084083","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084157","1483084157","1483084193","1483084157","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084189","1483084189","1483084220","1483084189","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084249","1483084249","1483084289","1483084249","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084260","1483084260","1483084306","1483084260","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084288","1483084288","1483084385","1483084288","1","8","0","-1","97","0","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084307","1483084307","1483084376","1483084307","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084395","1483084395","1483084428","1483084395","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084445","1483084445","1483084521","1483084445","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084534","1483084534","1483084590","1483084534","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084572","1483084572","1483084627","1483084572","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084576","1483084576","1483084610","1483084576","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084576","1483084576","1483084606","1483084576","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084596","1483084596","1483084628","1483084596","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084611","1483084611","1483084652","1483084611","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084628","1483084628","1483084665","1483084628","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084636","1483084636","1483084779","1483084636","1","8","0","-1","143","0","1144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084653","1483084653","1483084695","1483084653","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084666","1483084666","1483084705","1483084666","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084696","1483084696","1483084747","1483084696","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084703","1483084703","1483084745","1483084703","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084739","1483084739","1483084831","1483084739","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084746","1483084746","1483084869","1483084746","1","8","0","-1","123","0","984","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084779","1483084779","1483084843","1483084779","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084783","1483084783","1483084842","1483084783","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084842","1483084842","1483084915","1483084842","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084843","1483084843","1483084883","1483084843","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084960","1483084960","1483084992","1483084960","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085066","1483085066","1483085096","1483085066","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085074","1483085074","1483085132","1483085074","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085087","1483085087","1483085127","1483085087","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085269","1483085269","1483085302","1483085269","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085301","1483085301","1483085339","1483085301","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085304","1483085304","1483085364","1483085304","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976807","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085427","1483085427","1483085461","1483085427","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085430","1483085430","1483085468","1483085430","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976888","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085609","1483085609","1483085654","1483085609","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085625","1483085625","1483085657","1483085625","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085650","1483085650","1483085701","1483085650","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085708","1483085708","1483085755","1483085708","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085711","1483085711","1483085749","1483085711","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085725","1483085725","1483085759","1483085725","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085736","1483085736","1483085768","1483085736","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085750","1483085750","1483085819","1483085750","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085752","1483085752","1483085794","1483085752","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085755","1483085755","1483085792","1483085755","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085840","1483085840","1483085893","1483085840","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085850","1483085850","1483085928","1483085850","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085869","1483085869","1483085909","1483085869","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085881","1483085881","1483085918","1483085881","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085912","1483085912","1483085954","1483085912","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085935","1483085935","1483085968","1483085935","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085978","1483085978","1483086016","1483085978","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085989","1483085989","1483086056","1483085989","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086017","1483086017","1483086083","1483086017","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086025","1483086025","1483086084","1483086025","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086032","1483086032","1483086075","1483086032","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086045","1483086045","1483086111","1483086045","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086084","1483086084","1483086148","1483086084","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086096","1483086096","1483086144","1483086096","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086111","1483086111","1483086159","1483086111","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086138","1483086138","1483086188","1483086138","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086142","1483086142","1483086228","1483086142","1","8","0","-1","86","0","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086309","1483086309","1483086383","1483086309","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086328","1483086328","1483086393","1483086328","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086333","1483086333","1483086365","1483086333","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086395","1483086395","1483086426","1483086395","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086413","1483086413","1483086443","1483086413","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086413","1483086413","1483086502","1483086413","1","8","0","-1","89","0","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086474","1483086474","1483086505","1483086474","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086514","1483086514","1483086607","1483086514","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086699","1483086699","1483086737","1483086699","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086708","1483086708","1483086739","1483086708","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086721","1483086721","1483086751","1483086721","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086752","1483086752","1483086787","1483086752","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086758","1483086758","1483086790","1483086758","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086758","1483086758","1483086788","1483086758","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086768","1483086768","1483086807","1483086768","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086883","1483086883","1483086916","1483086883","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086906","1483086906","1483086963","1483086906","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086947","1483086947","1483086988","1483086947","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977394","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086956","1483086956","1483087008","1483086956","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086974","1483086974","1483087004","1483086974","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087005","1483087005","1483087054","1483087005","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087008","1483087008","1483087040","1483087008","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087009","1483087009","1483087043","1483087009","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087009","1483087009","1483087043","1483087009","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087074","1483087074","1483087149","1483087074","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087075","1483087075","1483087128","1483087075","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087122","1483087122","1483087184","1483087122","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087221","1483087221","1483087357","1483087221","1","8","0","-1","136","0","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087222","1483087222","1483087255","1483087222","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087242","1483087242","1483087348","1483087242","1","8","0","-1","106","0","848","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977490","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087297","1483087297","1483087341","1483087297","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087340","1483087340","1483087387","1483087340","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087355","1483087355","1483087396","1483087355","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087358","1483087358","1483087401","1483087358","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087388","1483087388","1483087421","1483087388","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087402","1483087402","1483087440","1483087402","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087415","1483087415","1483087464","1483087415","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087422","1483087422","1483087473","1483087422","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087429","1483087429","1483087538","1483087429","1","8","0","-1","109","0","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087441","1483087441","1483087492","1483087441","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087460","1483087460","1483087519","1483087460","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977546","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087493","1483087493","1483087524","1483087493","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087555","1483087555","1483087598","1483087555","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087569","1483087569","1483087729","1483087569","1","8","0","-1","160","0","1280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087569","1483087569","1483087625","1483087569","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087629","1483087629","1483087674","1483087629","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087675","1483087675","1483087739","1483087675","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087687","1483087687","1483087737","1483087687","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087696","1483087696","1483087754","1483087696","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087730","1483087730","1483087786","1483087730","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087738","1483087738","1483087806","1483087738","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977623","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087760","1483087760","1483087848","1483087760","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087787","1483087787","1483087845","1483087787","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087866","1483087866","1483087910","1483087866","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087936","1483087936","1483087978","1483087936","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087992","1483087992","1483088076","1483087992","1","8","0","-1","84","0","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977715","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088004","1483088004","1483088041","1483088004","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088092","1483088092","1483088137","1483088092","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977755","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088098","1483088098","1483088138","1483088098","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977761","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088129","1483088129","1483088159","1483088129","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088168","1483088168","1483088217","1483088168","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088176","1483088176","1483088207","1483088176","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977779","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088176","1483088176","1483088211","1483088176","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088212","1483088212","1483088248","1483088212","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088215","1483088215","1483088262","1483088215","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088218","1483088218","1483088272","1483088218","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088499","1483088499","1483088531","1483088499","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977922","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088532","1483088532","1483088565","1483088532","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977974","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088701","1483088701","1483088750","1483088701","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088706","1483088706","1483088762","1483088706","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977984","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088734","1483088734","1483088780","1483088734","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088746","1483088746","1483088791","1483088746","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088840","1483088840","1483088887","1483088840","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088884","1483088884","1483088962","1483088884","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088888","1483088888","1483088927","1483088888","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088941","1483088941","1483088973","1483088941","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088957","1483088957","1483089011","1483088957","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089016","1483089016","1483089075","1483089016","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089042","1483089042","1483089097","1483089042","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089076","1483089076","1483089140","1483089076","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089098","1483089098","1483089160","1483089098","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089118","1483089118","1483089159","1483089118","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089134","1483089134","1483089185","1483089134","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089155","1483089155","1483089206","1483089155","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089160","1483089160","1483089214","1483089160","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089186","1483089186","1483089247","1483089186","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089207","1483089207","1483089267","1483089207","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089215","1483089215","1483089272","1483089215","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089227","1483089227","1483089320","1483089227","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089247","1483089247","1483089361","1483089247","1","8","0","-1","114","0","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089267","1483089267","1483089353","1483089267","1","8","0","-1","86","0","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089389","1483089389","1483089422","1483089389","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089397","1483089397","1483089473","1483089397","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089423","1483089423","1483089474","1483089423","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089501","1483089501","1483089540","1483089501","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089504","1483089504","1483089541","1483089504","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089518","1483089518","1483089606","1483089518","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089538","1483089538","1483089608","1483089538","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089626","1483089626","1483089658","1483089626","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089659","1483089659","1483089703","1483089659","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089870","1483089870","1483089902","1483089870","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978356","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089873","1483089873","1483089909","1483089873","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089887","1483089887","1483089919","1483089887","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089910","1483089910","1483089949","1483089910","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089918","1483089918","1483089955","1483089918","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089931","1483089931","1483089965","1483089931","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089955","1483089955","1483090003","1483089955","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089966","1483089966","1483090083","1483089966","1","8","0","-1","117","0","936","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089966","1483089966","1483090018","1483089966","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089979","1483089979","1483090026","1483089979","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089999","1483089999","1483090034","1483089999","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978402","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090004","1483090004","1483090040","1483090004","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090040","1483090040","1483090075","1483090040","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978422","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090056","1483090056","1483090095","1483090056","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978426","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090075","1483090075","1483090107","1483090075","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090135","1483090135","1483090172","1483090135","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090138","1483090138","1483090170","1483090138","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090156","1483090156","1483090213","1483090156","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090160","1483090160","1483090196","1483090160","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090207","1483090207","1483090247","1483090207","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090241","1483090241","1483090316","1483090241","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090248","1483090248","1483090342","1483090248","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090262","1483090262","1483090306","1483090262","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090289","1483090289","1483090357","1483090289","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090307","1483090307","1483090381","1483090307","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090340","1483090340","1483090461","1483090340","1","8","0","-1","121","0","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090343","1483090343","1483090430","1483090343","1","8","0","-1","87","0","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090356","1483090356","1483090428","1483090356","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090382","1483090382","1483090464","1483090382","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090428","1483090428","1483090550","1483090428","1","8","0","-1","122","0","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090429","1483090429","1483090499","1483090429","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978527","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090500","1483090500","1483090602","1483090500","1","8","0","-1","102","0","816","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090574","1483090574","1483090620","1483090574","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090614","1483090614","1483090651","1483090614","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090650","1483090650","1483090699","1483090650","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090700","1483090700","1483090745","1483090700","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090734","1483090734","1483090797","1483090734","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090738","1483090738","1483090794","1483090738","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090745","1483090745","1483090799","1483090745","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090837","1483090837","1483090876","1483090837","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090843","1483090843","1483090890","1483090843","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090851","1483090851","1483090896","1483090851","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090895","1483090895","1483090976","1483090895","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090954","1483090954","1483091011","1483090954","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090982","1483090982","1483091033","1483090982","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978649","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091012","1483091012","1483091059","1483091012","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091016","1483091016","1483091066","1483091016","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091027","1483091027","1483091087","1483091027","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978661","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091041","1483091041","1483091114","1483091041","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091060","1483091060","1483091152","1483091060","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091067","1483091067","1483091149","1483091067","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091087","1483091087","1483091121","1483091087","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091114","1483091114","1483091145","1483091114","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091122","1483091122","1483091169","1483091122","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091146","1483091146","1483091193","1483091146","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091150","1483091150","1483091180","1483091150","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091201","1483091201","1483091325","1483091201","1","8","0","-1","124","0","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091237","1483091237","1483091281","1483091237","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091237","1483091237","1483091277","1483091237","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091253","1483091253","1483091292","1483091253","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091326","1483091326","1483091359","1483091326","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091342","1483091342","1483091377","1483091342","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091426","1483091426","1483091469","1483091426","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091451","1483091451","1483091494","1483091451","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091478","1483091478","1483091511","1483091478","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091498","1483091498","1483091531","1483091498","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091512","1483091512","1483091560","1483091512","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091521","1483091521","1483091562","1483091521","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091526","1483091526","1483091566","1483091526","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091527","1483091527","1483091563","1483091527","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091555","1483091555","1483091589","1483091555","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091561","1483091561","1483091594","1483091561","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091564","1483091564","1483091626","1483091564","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091575","1483091575","1483091701","1483091575","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091590","1483091590","1483091649","1483091590","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091594","1483091594","1483091647","1483091594","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091616","1483091616","1483091648","1483091616","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091648","1483091648","1483091678","1483091648","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091713","1483091713","1483091753","1483091713","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091732","1483091732","1483091791","1483091732","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091840","1483091840","1483091951","1483091840","1","8","0","-1","111","0","888","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091861","1483091861","1483091898","1483091861","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091865","1483091865","1483091912","1483091865","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091873","1483091873","1483091909","1483091873","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091886","1483091886","1483091928","1483091886","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091910","1483091910","1483091950","1483091910","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091913","1483091913","1483091954","1483091913","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091919","1483091919","1483091949","1483091919","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978965","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091929","1483091929","1483091970","1483091929","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091951","1483091951","1483091989","1483091951","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091971","1483091971","1483092036","1483091971","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092037","1483092037","1483092068","1483092037","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092058","1483092058","1483092107","1483092058","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092100","1483092100","1483092139","1483092100","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092103","1483092103","1483092149","1483092103","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092115","1483092115","1483092244","1483092115","1","8","0","-1","129","0","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092121","1483092121","1483092167","1483092121","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092150","1483092150","1483092196","1483092150","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092172","1483092172","1483092204","1483092172","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092197","1483092197","1483092235","1483092197","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092202","1483092202","1483092252","1483092202","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979055","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092205","1483092205","1483092237","1483092205","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979073","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092253","1483092253","1483092371","1483092253","1","8","0","-1","118","0","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979075","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092261","1483092261","1483092316","1483092261","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979077","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092266","1483092266","1483092335","1483092266","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979079","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092270","1483092270","1483092312","1483092270","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979091","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092339","1483092339","1483092376","1483092339","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979095","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092344","1483092344","1483092394","1483092344","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979099","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092355","1483092355","1483092405","1483092355","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092406","1483092406","1483092454","1483092406","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092409","1483092409","1483092448","1483092409","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979123","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092422","1483092422","1483092467","1483092422","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979127","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092449","1483092449","1483092510","1483092449","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979135","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092466","1483092466","1483092519","1483092466","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092511","1483092511","1483092576","1483092511","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092519","1483092519","1483092568","1483092519","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092569","1483092569","1483092659","1483092569","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092572","1483092572","1483092742","1483092572","1","8","0","-1","170","0","1360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979171","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092577","1483092577","1483092617","1483092577","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092618","1483092618","1483092655","1483092618","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092651","1483092651","1483092683","1483092651","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979187","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092660","1483092660","1483092690","1483092660","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092778","1483092778","1483092810","1483092778","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092847","1483092847","1483092885","1483092847","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092881","1483092881","1483092916","1483092881","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092905","1483092905","1483092944","1483092905","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092944","1483092944","1483092978","1483092944","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092948","1483092948","1483093060","1483092948","1","8","0","-1","112","0","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092955","1483092955","1483092987","1483092955","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093052","1483093052","1483093108","1483093052","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093088","1483093088","1483093122","1483093088","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093109","1483093109","1483093139","1483093109","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093144","1483093144","1483093190","1483093144","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093160","1483093160","1483093276","1483093160","1","8","0","-1","116","0","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093191","1483093191","1483093244","1483093191","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093205","1483093205","1483093236","1483093205","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093237","1483093237","1483093268","1483093237","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093276","1483093276","1483093308","1483093276","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093301","1483093301","1483093349","1483093301","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093304","1483093304","1483093370","1483093304","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093309","1483093309","1483093380","1483093309","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093350","1483093350","1483093401","1483093350","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093381","1483093381","1483093442","1483093381","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093429","1483093429","1483093472","1483093429","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093443","1483093443","1483093481","1483093443","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093477","1483093477","1483093511","1483093477","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093482","1483093482","1483093537","1483093482","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093574","1483093574","1483093633","1483093574","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093586","1483093586","1483093637","1483093586","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093627","1483093627","1483093658","1483093627","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979501","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093633","1483093633","1483093696","1483093633","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093639","1483093639","1483093678","1483093639","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093679","1483093679","1483093723","1483093679","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093686","1483093686","1483093717","1483093686","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093689","1483093689","1483093721","1483093689","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093692","1483093692","1483093738","1483093692","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093697","1483093697","1483093779","1483093697","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093780","1483093780","1483093877","1483093780","1","8","0","-1","97","0","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093866","1483093866","1483093979","1483093866","1","8","0","-1","113","0","904","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093919","1483093919","1483094071","1483093919","1","8","0","-1","152","0","1216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093957","1483093957","1483094093","1483093957","1","8","0","-1","136","0","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093980","1483093980","1483094131","1483093980","1","8","0","-1","151","0","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093989","1483093989","1483094023","1483093989","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094010","1483094010","1483094044","1483094010","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094045","1483094045","1483094079","1483094045","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094080","1483094080","1483094123","1483094080","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094116","1483094116","1483094157","1483094116","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094158","1483094158","1483094215","1483094158","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094209","1483094209","1483094263","1483094209","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094270","1483094270","1483094318","1483094270","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094310","1483094310","1483094348","1483094310","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094334","1483094334","1483094490","1483094334","1","8","0","-1","156","0","1248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094340","1483094340","1483094390","1483094340","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094349","1483094349","1483094405","1483094349","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094358","1483094358","1483094401","1483094358","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094395","1483094395","1483094430","1483094395","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094402","1483094402","1483094469","1483094402","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979685","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094403","1483094403","1483094469","1483094403","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979687","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094406","1483094406","1483094470","1483094406","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094431","1483094431","1483094479","1483094431","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094469","1483094469","1483094521","1483094469","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094470","1483094470","1483094532","1483094470","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094477","1483094477","1483094558","1483094477","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094480","1483094480","1483094632","1483094480","1","8","0","-1","152","0","1216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094522","1483094522","1483094574","1483094522","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094525","1483094525","1483094564","1483094525","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094533","1483094533","1483094571","1483094533","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094559","1483094559","1483094590","1483094559","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094565","1483094565","1483094604","1483094565","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094642","1483094642","1483094689","1483094642","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094668","1483094668","1483094810","1483094668","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094677","1483094677","1483094741","1483094677","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094736","1483094736","1483094766","1483094736","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094746","1483094746","1483094783","1483094746","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094750","1483094750","1483094801","1483094750","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094784","1483094784","1483094829","1483094784","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094790","1483094790","1483094830","1483094790","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094802","1483094802","1483094832","1483094802","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094830","1483094830","1483094972","1483094830","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094833","1483094833","1483094911","1483094833","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094854","1483094854","1483094908","1483094854","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094885","1483094885","1483094920","1483094885","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094894","1483094894","1483094952","1483094894","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094909","1483094909","1483094967","1483094909","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094912","1483094912","1483094945","1483094912","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094915","1483094915","1483094974","1483094915","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094920","1483094920","1483094974","1483094920","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094975","1483094975","1483095073","1483094975","1","8","0","-1","98","0","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095034","1483095034","1483095075","1483095034","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095035","1483095035","1483095092","1483095035","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095093","1483095093","1483095133","1483095093","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095159","1483095159","1483095189","1483095159","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095173","1483095173","1483095204","1483095173","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095205","1483095205","1483095255","1483095205","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095214","1483095214","1483095258","1483095214","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095240","1483095240","1483095282","1483095240","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095308","1483095308","1483095347","1483095308","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095348","1483095348","1483095389","1483095348","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979962","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095376","1483095376","1483095418","1483095376","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979966","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095386","1483095386","1483095423","1483095386","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979994","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095512","1483095512","1483095574","1483095512","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095528","1483095528","1483095564","1483095528","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095547","1483095547","1483095591","1483095547","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095575","1483095575","1483095607","1483095575","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095586","1483095586","1483095653","1483095586","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095592","1483095592","1483095663","1483095592","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095600","1483095600","1483095747","1483095600","1","8","0","-1","147","0","1176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980039","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095696","1483095696","1483095766","1483095696","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095696","1483095696","1483095756","1483095696","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095710","1483095710","1483095753","1483095710","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095817","1483095817","1483095886","1483095817","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095825","1483095825","1483095901","1483095825","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095847","1483095847","1483095893","1483095847","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095887","1483095887","1483095954","1483095887","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095930","1483095930","1483095983","1483095930","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095964","1483095964","1483096075","1483095964","1","8","0","-1","111","0","888","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096002","1483096002","1483096120","1483096002","1","8","0","-1","118","0","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096094","1483096094","1483096125","1483096094","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096106","1483096106","1483096244","1483096106","1","8","0","-1","138","0","1104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096111","1483096111","1483096159","1483096111","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096121","1483096121","1483096159","1483096121","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096121","1483096121","1483096186","1483096121","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096160","1483096160","1483096224","1483096160","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096245","1483096245","1483096337","1483096245","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096254","1483096254","1483096297","1483096254","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096351","1483096351","1483096388","1483096351","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096359","1483096359","1483096401","1483096359","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096389","1483096389","1483096441","1483096389","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096392","1483096392","1483096446","1483096392","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096422","1483096422","1483096483","1483096422","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096442","1483096442","1483096500","1483096442","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096446","1483096446","1483096551","1483096446","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096484","1483096484","1483096541","1483096484","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980227","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096489","1483096489","1483096548","1483096489","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096501","1483096501","1483096595","1483096501","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096506","1483096506","1483096675","1483096506","1","8","0","-1","169","0","1352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096542","1483096542","1483096639","1483096542","1","8","0","-1","97","0","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096549","1483096549","1483096821","1483096549","1","8","0","-1","272","0","2176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096596","1483096596","1483096773","1483096596","1","8","0","-1","177","0","1416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096640","1483096640","1483096719","1483096640","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096675","1483096675","1483096763","1483096675","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980259","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096692","1483096692","1483096794","1483096692","1","8","0","-1","102","0","816","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096720","1483096720","1483096751","1483096720","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096731","1483096731","1483096761","1483096731","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096752","1483096752","1483096799","1483096752","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096795","1483096795","1483096845","1483096795","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096800","1483096800","1483096831","1483096800","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096829","1483096829","1483096899","1483096829","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096832","1483096832","1483096893","1483096832","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096836","1483096836","1483096886","1483096836","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096846","1483096846","1483096995","1483096846","1","8","0","-1","149","0","1192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096850","1483096850","1483096909","1483096850","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096872","1483096872","1483096955","1483096872","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096887","1483096887","1483096968","1483096887","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096894","1483096894","1483096930","1483096894","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096900","1483096900","1483096935","1483096900","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096910","1483096910","1483096949","1483096910","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096930","1483096930","1483096973","1483096930","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096950","1483096950","1483096993","1483096950","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980319","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096955","1483096955","1483097002","1483096955","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097070","1483097070","1483097103","1483097070","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097103","1483097103","1483097152","1483097103","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097153","1483097153","1483097210","1483097153","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097170","1483097170","1483097209","1483097170","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097184","1483097184","1483097267","1483097184","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097210","1483097210","1483097291","1483097210","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097215","1483097215","1483097248","1483097215","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097246","1483097246","1483097304","1483097246","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097249","1483097249","1483097282","1483097249","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097260","1483097260","1483097295","1483097260","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980409","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097266","1483097266","1483097317","1483097266","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097283","1483097283","1483097331","1483097283","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097296","1483097296","1483097340","1483097296","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097305","1483097305","1483097346","1483097305","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097318","1483097318","1483097349","1483097318","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097350","1483097350","1483097406","1483097350","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097351","1483097351","1483097504","1483097351","1","8","0","-1","153","0","1224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097496","1483097496","1483097544","1483097496","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097501","1483097501","1483097540","1483097501","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097505","1483097505","1483097545","1483097505","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097520","1483097520","1483097600","1483097520","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097546","1483097546","1483097595","1483097546","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097562","1483097562","1483097605","1483097562","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097594","1483097594","1483097642","1483097594","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097595","1483097595","1483097633","1483097595","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097606","1483097606","1483097653","1483097606","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097626","1483097626","1483097680","1483097626","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097643","1483097643","1483097674","1483097643","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097652","1483097652","1483097697","1483097652","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097684","1483097684","1483097751","1483097684","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097688","1483097688","1483097753","1483097688","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097698","1483097698","1483097737","1483097698","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097773","1483097773","1483097809","1483097773","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097774","1483097774","1483097816","1483097774","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097791","1483097791","1483097840","1483097791","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097840","1483097840","1483097886","1483097840","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097841","1483097841","1483097916","1483097841","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097856","1483097856","1483098010","1483097856","1","8","0","-1","154","0","1232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097887","1483097887","1483097939","1483097887","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097926","1483097926","1483097966","1483097926","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097956","1483097956","1483098024","1483097956","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097967","1483097967","1483098018","1483097967","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097995","1483097995","1483098037","1483097995","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098010","1483098010","1483098044","1483098010","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098011","1483098011","1483098065","1483098011","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098019","1483098019","1483098075","1483098019","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098025","1483098025","1483098101","1483098025","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098035","1483098035","1483098120","1483098035","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098038","1483098038","1483098121","1483098038","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098045","1483098045","1483098101","1483098045","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098065","1483098065","1483098154","1483098065","1","8","0","-1","89","0","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098076","1483098076","1483098167","1483098076","1","8","0","-1","91","0","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098102","1483098102","1483098147","1483098102","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098120","1483098120","1483098157","1483098120","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098147","1483098147","1483098182","1483098147","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098259","1483098259","1483098315","1483098259","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098302","1483098302","1483098369","1483098302","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098329","1483098329","1483098374","1483098329","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098334","1483098334","1483098392","1483098334","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098341","1483098341","1483098413","1483098341","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098345","1483098345","1483098424","1483098345","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098370","1483098370","1483098412","1483098370","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098393","1483098393","1483098466","1483098393","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098425","1483098425","1483098479","1483098425","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098466","1483098466","1483098521","1483098466","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098480","1483098480","1483098568","1483098480","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098480","1483098480","1483098551","1483098480","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098491","1483098491","1483098533","1483098491","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098501","1483098501","1483098544","1483098501","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098561","1483098561","1483098661","1483098561","1","8","0","-1","100","0","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098569","1483098569","1483098683","1483098569","1","8","0","-1","114","0","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098667","1483098667","1483098700","1483098667","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098753","1483098753","1483098792","1483098753","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098764","1483098764","1483098800","1483098764","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098775","1483098775","1483098926","1483098775","1","8","0","-1","151","0","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098793","1483098793","1483098874","1483098793","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098801","1483098801","1483098852","1483098801","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098820","1483098820","1483098855","1483098820","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098825","1483098825","1483098874","1483098825","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098856","1483098856","1483098890","1483098856","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980821","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098874","1483098874","1483098909","1483098874","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098883","1483098883","1483098914","1483098883","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098891","1483098891","1483098921","1483098891","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098891","1483098891","1483098939","1483098891","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098909","1483098909","1483098944","1483098909","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098921","1483098921","1483098964","1483098921","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098924","1483098924","1483098967","1483098924","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098927","1483098927","1483098958","1483098927","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098940","1483098940","1483098988","1483098940","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099045","1483099045","1483099075","1483099045","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099066","1483099066","1483099106","1483099066","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099129","1483099129","1483099196","1483099129","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099132","1483099132","1483099179","1483099132","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099148","1483099148","1483099191","1483099148","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099158","1483099158","1483099202","1483099158","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099180","1483099180","1483099213","1483099180","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099192","1483099192","1483099225","1483099192","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099203","1483099203","1483099258","1483099203","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099208","1483099208","1483099245","1483099208","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099213","1483099213","1483099260","1483099213","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099226","1483099226","1483099268","1483099226","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099259","1483099259","1483099322","1483099259","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099284","1483099284","1483099360","1483099284","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099310","1483099310","1483099378","1483099310","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099322","1483099322","1483099357","1483099322","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099410","1483099410","1483099449","1483099410","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099449","1483099449","1483099512","1483099449","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099450","1483099450","1483099497","1483099450","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099489","1483099489","1483099524","1483099489","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099498","1483099498","1483099544","1483099498","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099510","1483099510","1483099585","1483099510","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099513","1483099513","1483099548","1483099513","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099549","1483099549","1483099580","1483099549","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099560","1483099560","1483099600","1483099560","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099581","1483099581","1483099625","1483099581","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099584","1483099584","1483099639","1483099584","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981025","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099584","1483099584","1483099676","1483099584","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981033","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099626","1483099626","1483099681","1483099626","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981035","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099640","1483099640","1483099689","1483099640","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981045","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099690","1483099690","1483099759","1483099690","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981047","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099701","1483099701","1483099743","1483099701","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981089","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099854","1483099854","1483099890","1483099854","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981093","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099891","1483099891","1483099974","1483099891","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981095","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099895","1483099895","1483099959","1483099895","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981099","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099915","1483099915","1483099962","1483099915","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099957","1483099957","1483099993","1483099957","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981105","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099960","1483099960","1483100005","1483099960","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099982","1483099982","1483100074","1483099982","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099994","1483099994","1483100075","1483099994","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100004","1483100004","1483100108","1483100004","1","8","0","-1","104","0","832","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981121","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100018","1483100018","1483100079","1483100018","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981131","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100076","1483100076","1483100221","1483100076","1","8","0","-1","145","0","1160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100080","1483100080","1483100227","1483100080","1","8","0","-1","147","0","1176","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100109","1483100109","1483100243","1483100109","1","8","0","-1","134","0","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100308","1483100308","1483100472","1483100308","1","8","0","-1","164","0","1312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100500","1483100500","1483100550","1483100500","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100506","1483100506","1483100559","1483100506","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100533","1483100533","1483100596","1483100533","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100547","1483100547","1483100612","1483100547","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100551","1483100551","1483100618","1483100551","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100560","1483100560","1483100626","1483100560","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100565","1483100565","1483100618","1483100565","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981199","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100597","1483100597","1483100639","1483100597","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981201","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100613","1483100613","1483100665","1483100613","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100618","1483100618","1483100673","1483100618","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100627","1483100627","1483100695","1483100627","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100639","1483100639","1483100787","1483100639","1","8","0","-1","148","0","1184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100820","1483100820","1483100875","1483100820","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100844","1483100844","1483100895","1483100844","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981259","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100848","1483100848","1483100918","1483100848","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981269","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100896","1483100896","1483100948","1483100896","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100919","1483100919","1483100993","1483100919","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100949","1483100949","1483101017","1483100949","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100960","1483100960","1483101032","1483100960","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100973","1483100973","1483101060","1483100973","1","8","0","-1","87","0","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100994","1483100994","1483101080","1483100994","1","8","0","-1","86","0","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100995","1483100995","1483101071","1483100995","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101019","1483101019","1483101077","1483101019","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101033","1483101033","1483101086","1483101033","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101060","1483101060","1483101123","1483101060","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101072","1483101072","1483101175","1483101072","1","8","0","-1","103","0","824","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101078","1483101078","1483101178","1483101078","1","8","0","-1","100","0","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101181","1483101181","1483101215","1483101181","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101222","1483101222","1483101290","1483101222","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101245","1483101245","1483101292","1483101245","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101291","1483101291","1483101321","1483101291","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101322","1483101322","1483101352","1483101322","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101353","1483101353","1483101395","1483101353","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101358","1483101358","1483101412","1483101358","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101372","1483101372","1483101508","1483101372","1","8","0","-1","136","0","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101381","1483101381","1483101424","1483101381","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101396","1483101396","1483101442","1483101396","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101424","1483101424","1483101475","1483101424","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101432","1483101432","1483101473","1483101432","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101447","1483101447","1483101500","1483101447","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101464","1483101464","1483101502","1483101464","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101475","1483101475","1483101519","1483101475","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101520","1483101520","1483101568","1483101520","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101568","1483101568","1483101615","1483101568","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981455","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101582","1483101582","1483101612","1483101582","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101612","1483101612","1483101642","1483101612","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101623","1483101623","1483101671","1483101623","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101654","1483101654","1483101698","1483101654","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101668","1483101668","1483101716","1483101668","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101685","1483101685","1483101727","1483101685","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101699","1483101699","1483101741","1483101699","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101726","1483101726","1483101759","1483101726","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101742","1483101742","1483101792","1483101742","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101750","1483101750","1483101800","1483101750","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101760","1483101760","1483101797","1483101760","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981512","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101760","1483101760","1483101794","1483101760","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101792","1483101792","1483101822","1483101792","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101814","1483101814","1483101943","1483101814","1","8","0","-1","129","0","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101819","1483101819","1483101858","1483101819","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101897","1483101897","1483101940","1483101897","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981579","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101944","1483101944","1483101976","1483101944","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101982","1483101982","1483102021","1483101982","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102021","1483102021","1483102052","1483102021","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102032","1483102032","1483102071","1483102032","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981603","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102043","1483102043","1483102093","1483102043","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102064","1483102064","1483102098","1483102064","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102065","1483102065","1483102101","1483102065","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102079","1483102079","1483102124","1483102079","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981623","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102094","1483102094","1483102139","1483102094","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102102","1483102102","1483102138","1483102102","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102125","1483102125","1483102163","1483102125","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102126","1483102126","1483102161","1483102126","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102162","1483102162","1483102222","1483102162","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102274","1483102274","1483102318","1483102274","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102357","1483102357","1483102406","1483102357","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981711","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102364","1483102364","1483102418","1483102364","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981715","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102381","1483102381","1483102431","1483102381","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981719","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102403","1483102403","1483102441","1483102403","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981725","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102432","1483102432","1483102477","1483102432","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981729","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102441","1483102441","1483102488","1483102441","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981733","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102466","1483102466","1483102501","1483102466","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102477","1483102477","1483102526","1483102477","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102517","1483102517","1483102553","1483102517","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102527","1483102527","1483102592","1483102527","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102593","1483102593","1483102655","1483102593","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102707","1483102707","1483102765","1483102707","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102727","1483102727","1483102828","1483102727","1","8","0","-1","101","0","808","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102731","1483102731","1483102913","1483102731","1","8","0","-1","182","0","1456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102766","1483102766","1483102859","1483102766","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102829","1483102829","1483102867","1483102829","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102885","1483102885","1483102933","1483102885","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102933","1483102933","1483102985","1483102933","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102936","1483102936","1483103018","1483102936","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102942","1483102942","1483102986","1483102942","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102951","1483102951","1483102998","1483102951","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102966","1483102966","1483103003","1483102966","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102983","1483102983","1483103018","1483102983","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103017","1483103017","1483103054","1483103017","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103019","1483103019","1483103064","1483103019","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103028","1483103028","1483103058","1483103028","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103065","1483103065","1483103100","1483103065","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103091","1483103091","1483103123","1483103091","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103127","1483103127","1483103166","1483103127","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103187","1483103187","1483103218","1483103187","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103190","1483103190","1483103246","1483103190","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103194","1483103194","1483103316","1483103194","1","8","0","-1","122","0","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103199","1483103199","1483103238","1483103199","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103219","1483103219","1483103254","1483103219","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103239","1483103239","1483103274","1483103239","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103255","1483103255","1483103302","1483103255","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103264","1483103264","1483103312","1483103264","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981965","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103271","1483103271","1483103315","1483103271","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103275","1483103275","1483103322","1483103275","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103383","1483103383","1483103417","1483103383","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103399","1483103399","1483103447","1483103399","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103469","1483103469","1483103537","1483103469","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103473","1483103473","1483103505","1483103473","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103497","1483103497","1483103557","1483103497","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103538","1483103538","1483103604","1483103538","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982057","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103543","1483103543","1483103594","1483103543","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982065","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103578","1483103578","1483103619","1483103578","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982073","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103595","1483103595","1483103651","1483103595","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982075","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103604","1483103604","1483103653","1483103604","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982079","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103618","1483103618","1483103672","1483103618","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103652","1483103652","1483103698","1483103652","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982101","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103699","1483103699","1483103757","1483103699","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103706","1483103706","1483103781","1483103706","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982111","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103734","1483103734","1483103766","1483103734","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103757","1483103757","1483103800","1483103757","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103758","1483103758","1483103800","1483103758","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103766","1483103766","1483103826","1483103766","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103787","1483103787","1483103880","1483103787","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982128","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103801","1483103801","1483103848","1483103801","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103840","1483103840","1483103883","1483103840","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103881","1483103881","1483103936","1483103881","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103883","1483103883","1483103916","1483103883","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103884","1483103884","1483103925","1483103884","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103908","1483103908","1483103940","1483103908","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103917","1483103917","1483103957","1483103917","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103925","1483103925","1483103964","1483103925","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103941","1483103941","1483104104","1483103941","1","8","0","-1","163","0","1304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103958","1483103958","1483104020","1483103958","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103965","1483103965","1483104061","1483103965","1","8","0","-1","96","0","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103982","1483103982","1483104027","1483103982","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104028","1483104028","1483104154","1483104028","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982199","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104136","1483104136","1483104268","1483104136","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104155","1483104155","1483104281","1483104155","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104269","1483104269","1483104316","1483104269","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104282","1483104282","1483104330","1483104282","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104317","1483104317","1483104391","1483104317","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104326","1483104326","1483104365","1483104326","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104331","1483104331","1483104403","1483104331","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104351","1483104351","1483104406","1483104351","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104377","1483104377","1483104425","1483104377","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104404","1483104404","1483104453","1483104404","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982247","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104407","1483104407","1483104451","1483104407","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104426","1483104426","1483104473","1483104426","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104426","1483104426","1483104496","1483104426","1","8","0","-1","70","0","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104437","1483104437","1483104533","1483104437","1","8","0","-1","96","0","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104452","1483104452","1483104586","1483104452","1","8","0","-1","134","0","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104452","1483104452","1483104531","1483104452","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104473","1483104473","1483104529","1483104473","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104496","1483104496","1483104558","1483104496","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104650","1483104650","1483104816","1483104650","1","8","0","-1","166","0","1328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104706","1483104706","1483104756","1483104706","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104741","1483104741","1483104813","1483104741","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104788","1483104788","1483104825","1483104788","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104796","1483104796","1483104840","1483104796","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104814","1483104814","1483104879","1483104814","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104826","1483104826","1483104862","1483104826","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104838","1483104838","1483104873","1483104838","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104863","1483104863","1483104926","1483104863","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104869","1483104869","1483104954","1483104869","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104873","1483104873","1483104958","1483104873","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104880","1483104880","1483104973","1483104880","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104904","1483104904","1483104975","1483104904","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982362","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104958","1483104958","1483104998","1483104958","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104974","1483104974","1483105027","1483104974","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105027","1483105027","1483105079","1483105027","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105065","1483105065","1483105140","1483105065","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105098","1483105098","1483105188","1483105098","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982406","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105141","1483105141","1483105189","1483105141","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105160","1483105160","1483105224","1483105160","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105222","1483105222","1483105259","1483105222","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982423","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105237","1483105237","1483105298","1483105237","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105287","1483105287","1483105346","1483105287","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105315","1483105315","1483105370","1483105315","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105338","1483105338","1483105403","1483105338","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105346","1483105346","1483105394","1483105346","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105346","1483105346","1483105414","1483105346","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105356","1483105356","1483105397","1483105356","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105427","1483105427","1483105501","1483105427","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105428","1483105428","1483105589","1483105428","1","8","0","-1","161","0","1288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105531","1483105531","1483105588","1483105531","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105620","1483105620","1483105775","1483105620","1","8","0","-1","155","0","1240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105621","1483105621","1483105677","1483105621","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105702","1483105702","1483105744","1483105702","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105717","1483105717","1483105779","1483105717","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105722","1483105722","1483105783","1483105722","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105763","1483105763","1483105795","1483105763","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982550","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105775","1483105775","1483105819","1483105775","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105780","1483105780","1483105818","1483105780","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105784","1483105784","1483105838","1483105784","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105819","1483105819","1483105863","1483105819","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105866","1483105866","1483105924","1483105866","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105929","1483105929","1483106000","1483105929","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105967","1483105967","1483106001","1483105967","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105986","1483105986","1483106030","1483105986","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106000","1483106000","1483106065","1483106000","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106001","1483106001","1483106047","1483106001","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106017","1483106017","1483106050","1483106017","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106031","1483106031","1483106074","1483106031","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106048","1483106048","1483106138","1483106048","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106066","1483106066","1483106135","1483106066","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106074","1483106074","1483106168","1483106074","1","8","0","-1","94","0","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106119","1483106119","1483106191","1483106119","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106130","1483106130","1483106186","1483106130","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982640","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106136","1483106136","1483106208","1483106136","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106139","1483106139","1483106197","1483106139","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106186","1483106186","1483106267","1483106186","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106192","1483106192","1483106281","1483106192","1","8","0","-1","89","0","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106198","1483106198","1483106361","1483106198","1","8","0","-1","163","0","1304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982675","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106281","1483106281","1483106320","1483106281","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106316","1483106316","1483106375","1483106316","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982687","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106338","1483106338","1483106426","1483106338","1","8","0","-1","88","0","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106374","1483106374","1483106417","1483106374","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982711","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106418","1483106418","1483106498","1483106418","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982713","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106425","1483106425","1483106476","1483106425","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982717","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106449","1483106449","1483106607","1483106449","1","8","0","-1","158","0","1264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982723","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106477","1483106477","1483106536","1483106477","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982725","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106499","1483106499","1483106561","1483106499","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982727","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106505","1483106505","1483106556","1483106505","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982729","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106515","1483106515","1483106598","1483106515","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982735","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106537","1483106537","1483106584","1483106537","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106546","1483106546","1483106621","1483106546","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982739","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106556","1483106556","1483106682","1483106556","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106561","1483106561","1483106679","1483106561","1","8","0","-1","118","0","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982743","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106585","1483106585","1483106790","1483106585","1","8","0","-1","205","0","1640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106599","1483106599","1483106730","1483106599","1","8","0","-1","131","0","1048","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982747","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106608","1483106608","1483106744","1483106608","1","8","0","-1","136","0","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106711","1483106711","1483106792","1483106711","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106768","1483106768","1483106806","1483106768","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106868","1483106868","1483106968","1483106868","1","8","0","-1","100","0","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106869","1483106869","1483106915","1483106869","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106884","1483106884","1483106962","1483106884","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106892","1483106892","1483106923","1483106892","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106899","1483106899","1483106949","1483106899","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106916","1483106916","1483106959","1483106916","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982826","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106950","1483106950","1483107081","1483106950","1","8","0","-1","131","0","1048","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106955","1483106955","1483107005","1483106955","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106960","1483106960","1483107036","1483106960","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107037","1483107037","1483107084","1483107037","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107038","1483107038","1483107100","1483107038","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107082","1483107082","1483107145","1483107082","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107085","1483107085","1483107170","1483107085","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982863","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107101","1483107101","1483107206","1483107101","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107124","1483107124","1483107199","1483107124","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107146","1483107146","1483107257","1483107146","1","8","0","-1","111","0","888","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107199","1483107199","1483107381","1483107199","1","8","0","-1","182","0","1456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107207","1483107207","1483107319","1483107207","1","8","0","-1","112","0","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107258","1483107258","1483107547","1483107258","1","8","0","-1","289","0","2312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107278","1483107278","1483107477","1483107278","1","8","0","-1","199","0","1592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107316","1483107316","1483107390","1483107316","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107320","1483107320","1483107378","1483107320","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107382","1483107382","1483107449","1483107382","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982905","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107391","1483107391","1483107444","1483107391","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107445","1483107445","1483107489","1483107445","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107450","1483107450","1483107481","1483107450","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107559","1483107559","1483107601","1483107559","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107602","1483107602","1483107653","1483107602","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107700","1483107700","1483107732","1483107700","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107712","1483107712","1483107855","1483107712","1","8","0","-1","143","0","1144","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107719","1483107719","1483107766","1483107719","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107733","1483107733","1483107794","1483107733","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107754","1483107754","1483107793","1483107754","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107764","1483107764","1483107817","1483107764","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107767","1483107767","1483107815","1483107767","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107794","1483107794","1483107841","1483107794","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107814","1483107814","1483107873","1483107814","1","8","0","-1","59","0","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107817","1483107817","1483107861","1483107817","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107965","1483107965","1483108019","1483107965","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108008","1483108008","1483108056","1483108008","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108020","1483108020","1483108097","1483108020","1","8","0","-1","77","0","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983089","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108081","1483108081","1483108119","1483108081","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983091","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108095","1483108095","1483108144","1483108095","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983095","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108098","1483108098","1483108132","1483108098","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983099","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108116","1483108116","1483108155","1483108116","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108126","1483108126","1483108164","1483108126","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983105","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108133","1483108133","1483108169","1483108133","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108165","1483108165","1483108208","1483108165","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108345","1483108345","1483108376","1483108345","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983183","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108362","1483108362","1483108404","1483108362","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108388","1483108388","1483108450","1483108388","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108399","1483108399","1483108443","1483108399","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108405","1483108405","1483108459","1483108405","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108439","1483108439","1483108470","1483108439","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108451","1483108451","1483108497","1483108451","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108457","1483108457","1483108537","1483108457","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108460","1483108460","1483108520","1483108460","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108471","1483108471","1483108621","1483108471","1","8","0","-1","150","0","1200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108479","1483108479","1483108531","1483108479","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983224","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108520","1483108520","1483108565","1483108520","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108621","1483108621","1483108657","1483108621","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108650","1483108650","1483108799","1483108650","1","8","0","-1","149","0","1192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108658","1483108658","1483108712","1483108658","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108748","1483108748","1483108783","1483108748","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108757","1483108757","1483108791","1483108757","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108765","1483108765","1483108825","1483108765","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108783","1483108783","1483108823","1483108783","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108800","1483108800","1483108850","1483108800","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108824","1483108824","1483108903","1483108824","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108824","1483108824","1483108973","1483108824","1","8","0","-1","149","0","1192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108850","1483108850","1483108934","1483108850","1","8","0","-1","84","0","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108935","1483108935","1483108970","1483108935","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983343","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108992","1483108992","1483109031","1483108992","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109004","1483109004","1483109042","1483109004","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109043","1483109043","1483109118","1483109043","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109049","1483109049","1483109116","1483109049","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109083","1483109083","1483109163","1483109083","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109117","1483109117","1483109196","1483109117","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109127","1483109127","1483109199","1483109127","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109164","1483109164","1483109229","1483109164","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109191","1483109191","1483109258","1483109191","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109194","1483109194","1483109302","1483109194","1","8","0","-1","108","0","864","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109197","1483109197","1483109304","1483109197","1","8","0","-1","107","0","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109200","1483109200","1483109391","1483109200","1","8","0","-1","191","0","1528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109259","1483109259","1483109292","1483109259","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109289","1483109289","1483109330","1483109289","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109293","1483109293","1483109336","1483109293","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109303","1483109303","1483109351","1483109303","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109330","1483109330","1483109383","1483109330","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109410","1483109410","1483109515","1483109410","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109445","1483109445","1483109486","1483109445","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109449","1483109449","1483109488","1483109449","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983451","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109452","1483109452","1483109493","1483109452","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109494","1483109494","1483109538","1483109494","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109514","1483109514","1483109547","1483109514","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109544","1483109544","1483109585","1483109544","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109558","1483109558","1483109610","1483109558","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109567","1483109567","1483109605","1483109567","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109581","1483109581","1483109627","1483109581","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109614","1483109614","1483109664","1483109614","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109628","1483109628","1483109676","1483109628","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109634","1483109634","1483109684","1483109634","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109638","1483109638","1483109672","1483109638","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109691","1483109691","1483109739","1483109691","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109735","1483109735","1483109772","1483109735","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109740","1483109740","1483109774","1483109740","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109790","1483109790","1483109839","1483109790","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109840","1483109840","1483109939","1483109840","1","8","0","-1","99","0","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109843","1483109843","1483109885","1483109843","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109849","1483109849","1483109899","1483109849","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109868","1483109868","1483109907","1483109868","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109886","1483109886","1483109931","1483109886","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109896","1483109896","1483109939","1483109896","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983598","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109912","1483109912","1483109954","1483109912","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109932","1483109932","1483109970","1483109932","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109940","1483109940","1483109991","1483109940","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109954","1483109954","1483109990","1483109954","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109965","1483109965","1483110021","1483109965","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109968","1483109968","1483110024","1483109968","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109971","1483109971","1483110036","1483109971","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983639","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110058","1483110058","1483110115","1483110058","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110109","1483110109","1483110140","1483110109","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110166","1483110166","1483110219","1483110166","1","8","0","-1","53","0","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110192","1483110192","1483110235","1483110192","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110206","1483110206","1483110277","1483110206","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110220","1483110220","1483110276","1483110220","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110277","1483110277","1483110309","1483110277","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110309","1483110309","1483110359","1483110309","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983703","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110323","1483110323","1483110361","1483110323","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110353","1483110353","1483110419","1483110353","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983711","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110360","1483110360","1483110459","1483110360","1","8","0","-1","99","0","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983717","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110383","1483110383","1483110487","1483110383","1","8","0","-1","104","0","832","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983727","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110441","1483110441","1483110513","1483110441","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110510","1483110510","1483110584","1483110510","1","8","0","-1","74","0","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110576","1483110576","1483110637","1483110576","1","8","0","-1","61","0","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110589","1483110589","1483110743","1483110589","1","8","0","-1","154","0","1232","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110626","1483110626","1483110719","1483110626","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110638","1483110638","1483110782","1483110638","1","8","0","-1","144","0","1152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110672","1483110672","1483110816","1483110672","1","8","0","-1","144","0","1152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110681","1483110681","1483110832","1483110681","1","8","0","-1","151","0","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110690","1483110690","1483110829","1483110690","1","8","0","-1","139","0","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110720","1483110720","1483110854","1483110720","1","8","0","-1","134","0","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983779","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110783","1483110783","1483110933","1483110783","1","8","0","-1","150","0","1200","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110817","1483110817","1483110930","1483110817","1","8","0","-1","113","0","904","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110833","1483110833","1483110975","1483110833","1","8","0","-1","142","0","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110854","1483110854","1483110938","1483110854","1","8","0","-1","84","0","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110858","1483110858","1483110951","1483110858","1","8","0","-1","93","0","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110964","1483110964","1483111134","1483110964","1","8","0","-1","170","0","1360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983807","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111063","1483111063","1483111187","1483111063","1","8","0","-1","124","0","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111074","1483111074","1483111173","1483111074","1","8","0","-1","99","0","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111186","1483111186","1483111241","1483111186","1","8","0","-1","55","0","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111188","1483111188","1483111252","1483111188","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111199","1483111199","1483111261","1483111199","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111225","1483111225","1483111290","1483111225","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111242","1483111242","1483111299","1483111242","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111246","1483111246","1483111304","1483111246","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111253","1483111253","1483111329","1483111253","1","8","0","-1","76","0","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111262","1483111262","1483111347","1483111262","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111291","1483111291","1483111364","1483111291","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111300","1483111300","1483111373","1483111300","1","8","0","-1","73","0","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111330","1483111330","1483111415","1483111330","1","8","0","-1","85","0","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111348","1483111348","1483111426","1483111348","1","8","0","-1","78","0","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111364","1483111364","1483111411","1483111364","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111374","1483111374","1483111423","1483111374","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111495","1483111495","1483111534","1483111495","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111504","1483111504","1483111573","1483111504","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111534","1483111534","1483111615","1483111534","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111546","1483111546","1483111662","1483111546","1","8","0","-1","116","0","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111559","1483111559","1483111619","1483111559","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111599","1483111599","1483111670","1483111599","1","8","0","-1","71","0","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111635","1483111635","1483111666","1483111635","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111652","1483111652","1483111734","1483111652","1","8","0","-1","82","0","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111653","1483111653","1483111697","1483111653","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111663","1483111663","1483111698","1483111663","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111671","1483111671","1483111736","1483111671","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111688","1483111688","1483111742","1483111688","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111693","1483111693","1483111785","1483111693","1","8","0","-1","92","0","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111698","1483111698","1483111764","1483111698","1","8","0","-1","66","0","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111742","1483111742","1483111847","1483111742","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111764","1483111764","1483111812","1483111764","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111779","1483111779","1483111817","1483111779","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111812","1483111812","1483111842","1483111812","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111813","1483111813","1483111854","1483111813","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111818","1483111818","1483111851","1483111818","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111848","1483111848","1483111879","1483111848","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["983991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111888","1483111888","1483111930","1483111888","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111944","1483111944","1483111976","1483111944","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111953","1483111953","1483111994","1483111953","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984033","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112011","1483112011","1483112144","1483112011","1","8","0","-1","133","0","1064","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984037","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112026","1483112026","1483112062","1483112026","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984039","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112032","1483112032","1483112099","1483112032","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984043","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112052","1483112052","1483112082","1483112052","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984049","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112075","1483112075","1483112117","1483112075","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984051","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112081","1483112081","1483112126","1483112081","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984055","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112090","1483112090","1483112124","1483112090","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984057","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112100","1483112100","1483112136","1483112100","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984075","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112145","1483112145","1483112277","1483112145","1","8","0","-1","132","0","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984117","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112284","1483112284","1483112329","1483112284","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984127","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112332","1483112332","1483112370","1483112332","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984131","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112342","1483112342","1483112376","1483112342","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112377","1483112377","1483112415","1483112377","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112396","1483112396","1483112432","1483112396","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112413","1483112413","1483112445","1483112413","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112416","1483112416","1483112454","1483112416","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112443","1483112443","1483112485","1483112443","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112651","1483112651","1483112692","1483112651","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112659","1483112659","1483112700","1483112659","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112701","1483112701","1483112770","1483112701","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984257","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112712","1483112712","1483112750","1483112712","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984259","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112735","1483112735","1483112800","1483112735","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112742","1483112742","1483112774","1483112742","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112792","1483112792","1483112822","1483112792","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112798","1483112798","1483112830","1483112798","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112801","1483112801","1483112837","1483112801","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984283","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112804","1483112804","1483112848","1483112804","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112822","1483112822","1483112961","1483112822","1","8","0","-1","139","0","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112830","1483112830","1483112875","1483112830","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112904","1483112904","1483112943","1483112904","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984317","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112943","1483112943","1483112976","1483112943","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984321","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112950","1483112950","1483113014","1483112950","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984333","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112977","1483112977","1483113073","1483112977","1","8","0","-1","96","0","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984339","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113013","1483113013","1483113119","1483113013","1","8","0","-1","106","0","848","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113098","1483113098","1483113130","1483113098","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113109","1483113109","1483113239","1483113109","1","8","0","-1","130","0","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113120","1483113120","1483113156","1483113120","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113123","1483113123","1483113158","1483113123","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113131","1483113131","1483113178","1483113131","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113179","1483113179","1483113227","1483113179","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113183","1483113183","1483113228","1483113183","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113199","1483113199","1483113233","1483113199","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113213","1483113213","1483113244","1483113213","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113370","1483113370","1483113405","1483113370","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113371","1483113371","1483113406","1483113371","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113379","1483113379","1483113417","1483113379","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113394","1483113394","1483113441","1483113394","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113407","1483113407","1483113451","1483113407","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113486","1483113486","1483113554","1483113486","1","8","0","-1","68","0","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113560","1483113560","1483113814","1483113560","1","8","0","-1","254","0","2032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113624","1483113624","1483113772","1483113624","1","8","0","-1","148","0","1184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113644","1483113644","1483113725","1483113644","1","8","0","-1","81","0","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113732","1483113732","1483113769","1483113732","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113770","1483113770","1483113817","1483113770","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113839","1483113839","1483113883","1483113839","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113856","1483113856","1483113894","1483113856","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113918","1483113918","1483113958","1483113918","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113930","1483113930","1483113980","1483113930","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113959","1483113959","1483113992","1483113959","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113980","1483113980","1483114019","1483113980","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113993","1483113993","1483114032","1483113993","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113997","1483113997","1483114047","1483113997","1","8","0","-1","50","0","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114007","1483114007","1483114045","1483114007","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114012","1483114012","1483114047","1483114012","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114020","1483114020","1483114067","1483114020","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114203","1483114203","1483114243","1483114203","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114221","1483114221","1483114286","1483114221","1","8","0","-1","65","0","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114244","1483114244","1483114278","1483114244","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114335","1483114335","1483114365","1483114335","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114348","1483114348","1483114469","1483114348","1","8","0","-1","121","0","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114354","1483114354","1483114417","1483114354","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114361","1483114361","1483114403","1483114361","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114366","1483114366","1483114398","1483114366","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114399","1483114399","1483114440","1483114399","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114502","1483114502","1483114554","1483114502","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114520","1483114520","1483114560","1483114520","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114592","1483114592","1483114632","1483114592","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114642","1483114642","1483114687","1483114642","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114663","1483114663","1483114799","1483114663","1","8","0","-1","136","0","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114674","1483114674","1483114728","1483114674","1","8","0","-1","54","0","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984807","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114688","1483114688","1483114745","1483114688","1","8","0","-1","57","0","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114691","1483114691","1483114731","1483114691","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114705","1483114705","1483114739","1483114705","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114725","1483114725","1483114772","1483114725","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114740","1483114740","1483114775","1483114740","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114746","1483114746","1483114808","1483114746","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114826","1483114826","1483114860","1483114826","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114835","1483114835","1483114895","1483114835","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114928","1483114928","1483114962","1483114928","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114946","1483114946","1483115029","1483114946","1","8","0","-1","83","0","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114955","1483114955","1483115129","1483114955","1","8","0","-1","174","0","1392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115001","1483115001","1483115091","1483115001","1","8","0","-1","90","0","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115012","1483115012","1483115063","1483115012","1","8","0","-1","51","0","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115047","1483115047","1483115081","1483115047","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115054","1483115054","1483115092","1483115054","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115063","1483115063","1483115112","1483115063","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115077","1483115077","1483115107","1483115077","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115082","1483115082","1483115154","1483115082","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115092","1483115092","1483115148","1483115092","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115092","1483115092","1483115123","1483115092","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115108","1483115108","1483115154","1483115108","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115130","1483115130","1483115166","1483115130","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115155","1483115155","1483115189","1483115155","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115213","1483115213","1483115244","1483115213","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115245","1483115245","1483115294","1483115245","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115295","1483115295","1483115347","1483115295","1","8","0","-1","52","0","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115303","1483115303","1483115390","1483115303","1","8","0","-1","87","0","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115318","1483115318","1483115381","1483115318","1","8","0","-1","63","0","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["984991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115326","1483115326","1483115369","1483115326","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115391","1483115391","1483115437","1483115391","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115408","1483115408","1483115453","1483115408","1","8","0","-1","45","0","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115421","1483115421","1483115507","1483115421","1","8","0","-1","86","0","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115429","1483115429","1483115587","1483115429","1","8","0","-1","158","0","1264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115438","1483115438","1483115496","1483115438","1","8","0","-1","58","0","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115454","1483115454","1483115510","1483115454","1","8","0","-1","56","0","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115497","1483115497","1483115569","1483115497","1","8","0","-1","72","0","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115508","1483115508","1483115577","1483115508","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115531","1483115531","1483115563","1483115531","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115544","1483115544","1483115591","1483115544","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115661","1483115661","1483115721","1483115661","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115665","1483115665","1483115791","1483115665","1","8","0","-1","126","0","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115666","1483115666","1483115715","1483115666","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115734","1483115734","1483115769","1483115734","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115754","1483115754","1483115797","1483115754","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115760","1483115760","1483115802","1483115760","1","8","0","-1","42","0","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115791","1483115791","1483115823","1483115791","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115813","1483115813","1483115877","1483115813","1","8","0","-1","64","0","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115835","1483115835","1483115871","1483115835","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115855","1483115855","1483115898","1483115855","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985152","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115872","1483115872","1483115907","1483115872","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115949","1483115949","1483116011","1483115949","1","8","0","-1","62","0","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115949","1483115949","1483116009","1483115949","1","8","0","-1","60","0","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115950","1483115950","1483116072","1483115950","1","8","0","-1","122","0","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116070","1483116070","1483116101","1483116070","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116088","1483116088","1483116128","1483116088","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116167","1483116167","1483116204","1483116167","1","8","0","-1","37","0","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116199","1483116199","1483116247","1483116199","1","8","0","-1","48","0","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116199","1483116199","1483116239","1483116199","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116204","1483116204","1483116238","1483116204","1","8","0","-1","34","0","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116296","1483116296","1483116334","1483116296","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["985318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116320","1483116320","1483116358","1483116320","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168478","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061291","1483061291","1483061330","1483061291","1","8","0","-1","39","0","312","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168529","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061641","1483061641","1483061685","1483061641","1","8","0","-1","44","0","352","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168572","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061921","1483061921","1483061952","1483061921","1","8","0","-1","31","0","248","0","0:0","COMPLETED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["168991","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064965","1483064965","1483065003","1483064965","1","8","0","-1","38","0","304","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169291","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067148","1483067148","1483067192","1483067148","1","8","0","-1","44","0","352","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["169520","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068645","1483068645","1483068686","1483068645","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170128","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072002","1483072002","1483072041","1483072002","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170232","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072642","1483072642","1483072674","1483072642","1","8","0","-1","32","0","256","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170392","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073663","1483073663","1483073710","1483073663","1","8","0","-1","47","0","376","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170434","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073949","1483073949","1483073982","1483073949","1","8","0","-1","33","0","264","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170631","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075162","1483075162","1483075229","1483075162","1","8","0","-1","67","0","536","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["170980","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077809","1483077809","1483077849","1483077809","1","8","0","-1","40","0","320","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171330","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080392","1483080392","1483080467","1483080392","1","8","0","-1","75","0","600","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["171798","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083351","1483083351","1483083386","1483083351","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172319","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085978","1483085978","1483086058","1483085978","1","8","0","-1","80","0","640","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["172503","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086896","1483086896","1483086926","1483086896","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173145","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090877","1483090877","1483090907","1483090877","1","8","0","-1","30","0","240","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173677","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094252","1483094252","1483094293","1483094252","1","8","0","-1","41","0","328","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["173780","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094975","1483094975","1483095014","1483094975","1","8","0","-1","39","0","312","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174372","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099413","1483099413","1483099459","1483099413","1","8","0","-1","46","0","368","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174535","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101072","1483101072","1483101177","1483101072","1","8","0","-1","105","0","840","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["174793","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102731","1483102731","1483102800","1483102731","1","8","0","-1","69","0","552","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175025","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104426","1483104426","1483104461","1483104426","1","8","0","-1","35","0","280","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175125","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105301","1483105301","1483105337","1483105301","1","8","0","-1","36","0","288","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175226","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106141","1483106141","1483106172","1483106141","1","8","0","-1","31","0","248","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175326","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107006","1483107006","1483107055","1483107006","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["175771","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110308","1483110308","1483110357","1483110308","1","8","0","-1","49","0","392","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176081","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112898","1483112898","1483112941","1483112898","1","8","0","-1","43","0","344","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["176450","Phillips","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115510","1483115510","1483115589","1483115510","1","8","0","-1","79","0","632","0","1:0","FAILED","8","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1004944","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483065756","1483065756","1483065962","1483065756","1","8","0","-1","206","0","1648","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005038","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483067447","1483067447","1483067519","1483067447","1","8","0","-1","72","0","576","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1005699","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483076101","1483076101","1483076427","1483076101","1","8","0","-1","326","0","2608","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006110","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483081510","1483081510","1483081599","1483081510","1","8","0","-1","89","0","712","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006907","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483092688","1483092688","1483092798","1483092688","1","8","0","-1","110","0","880","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006918","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483092808","1483092808","1483092945","1483092808","1","8","0","-1","137","0","1096","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007208","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483096654","1483096654","1483096909","1483096654","1","8","0","-1","255","0","2040","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007502","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483100500","1483100500","1483100543","1483100500","1","8","0","-1","43","0","344","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008100","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483109276","1483109276","1483109405","1483109276","1","8","0","-1","129","0","1032","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009303","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483122737","1483122737","1483122867","1483122737","1","8","0","-1","130","0","1040","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010169","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483134032","1483134032","1483134398","1483134032","1","8","0","-1","366","0","2928","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1010262","Posidriv","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483135353","1483135353","1483135568","1483135353","1","8","0","-1","215","0","1720","0","0:0","COMPLETED","8","2147486448Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006431","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483085916","1483085916","1483086069","1483085916","1","8","0","-1","153","0","1224","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006565","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483087982","1483087982","1483089311","1483087982","1","8","0","-1","1329","0","10632","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006572","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483088066","1483088066","1483089805","1483088066","1","8","0","-1","1739","0","13912","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006898","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483092552","1483092552","1483093812","1483092552","1","8","0","-1","1260","0","10080","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007148","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483095876","1483095876","1483096148","1483095876","1","8","0","-1","272","0","2176","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007328","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483098229","1483098229","1483098809","1483098229","1","8","0","-1","580","0","4640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007525","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483100778","1483100778","1483101457","1483100778","1","8","0","-1","679","0","5432","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008311","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483112316","1483112316","1483113071","1483112316","1","8","0","-1","755","0","6040","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008748","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483117476","1483117476","1483118804","1483117476","1","8","0","-1","1328","0","10624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008900","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483118951","1483118951","1483119568","1483118951","1","8","0","-1","617","0","4936","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1006529","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483087348","1483087348","1483088088","1483087348","1","8","0","-1","740","0","5920","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007217","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483096750","1483096750","1483097475","1483096750","1","8","0","-1","725","0","5800","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007259","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483097215","1483097215","1483097965","1483097215","1","8","0","-1","750","0","6000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007271","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483097336","1483097336","1483097492","1483097336","1","8","0","-1","156","0","1248","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1007307","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483097894","1483097894","1483098427","1483097894","1","8","0","-1","533","0","4264","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008041","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483108434","1483108434","1483109513","1483108434","1","8","0","-1","1079","0","8632","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008170","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483110307","1483110307","1483110913","1483110307","1","8","0","-1","606","0","4848","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008240","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483111266","1483111266","1483112030","1483111266","1","8","0","-1","764","0","6112","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008270","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483111758","1483111758","1483112977","1483111758","1","8","0","-1","1219","0","9752","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1008725","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483117278","1483117278","1483117654","1483117278","1","8","0","-1","376","0","3008","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009192","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483121725","1483121725","1483122653","1483121725","1","8","0","-1","928","0","7424","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009293","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483122659","1483122659","1483124416","1483122659","1","8","0","-1","1757","0","14056","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009322","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483123043","1483123043","1483123912","1483123043","1","8","0","-1","869","0","6952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009335","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483123153","1483123153","1483123605","1483123153","1","8","0","-1","452","0","3616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009418","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483124223","1483124223","1483125229","1483124223","1","8","0","-1","1006","0","8048","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2275568","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054500","1483054500","1483056044","1483054500","1","12","0","-1","1544","0","18528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275570","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054513","1483054513","1483056156","1483054513","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275573","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054551","1483054551","1483056328","1483054551","1","12","0","-1","1777","0","21324","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275575","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054560","1483054560","1483056345","1483054560","1","12","0","-1","1785","0","21420","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275582","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054594","1483054594","1483056306","1483054594","1","12","0","-1","1712","0","20544","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275627","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054881","1483054881","1483056285","1483054881","1","12","0","-1","1404","0","16848","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275636","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483054954","1483054954","1483056730","1483054954","1","12","0","-1","1776","0","21312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275643","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055005","1483055005","1483056342","1483055005","1","12","0","-1","1337","0","16044","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275649","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055041","1483055041","1483056413","1483055041","1","12","0","-1","1372","0","16464","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275653","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055070","1483055070","1483056682","1483055070","1","12","0","-1","1612","0","19344","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275688","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055733","1483055733","1483057524","1483055733","1","12","0","-1","1791","0","21492","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275690","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055737","1483055737","1483057202","1483055737","1","12","0","-1","1465","0","17580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275693","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055850","1483055850","1483057279","1483055850","1","12","0","-1","1429","0","17148","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275724","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056191","1483056191","1483057730","1483056191","1","12","0","-1","1539","0","18468","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275730","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056214","1483056214","1483057658","1483056214","1","12","0","-1","1444","0","17328","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275758","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056530","1483056530","1483057738","1483056530","1","12","0","-1","1208","0","14496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275798","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056910","1483056910","1483058553","1483056910","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275800","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056914","1483056914","1483058291","1483056914","1","12","0","-1","1377","0","16524","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275808","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057056","1483057056","1483058586","1483057056","1","12","0","-1","1530","0","18360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275836","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057288","1483057288","1483059051","1483057288","1","12","0","-1","1763","0","21156","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275864","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057642","1483057642","1483059124","1483057642","1","12","0","-1","1482","0","17784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275885","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057968","1483057968","1483059600","1483057968","1","12","0","-1","1632","0","19584","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275894","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058049","1483058049","1483059775","1483058049","1","12","0","-1","1726","0","20712","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275901","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058164","1483058164","1483059959","1483058164","1","12","0","-1","1795","0","21540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275915","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058249","1483058249","1483059810","1483058249","1","12","0","-1","1561","0","18732","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275921","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058361","1483058361","1483060029","1483058361","1","12","0","-1","1668","0","20016","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275971","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058952","1483058952","1483060313","1483058952","1","12","0","-1","1361","0","16332","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275975","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059011","1483059011","1483060797","1483059011","1","12","0","-1","1786","0","21432","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275980","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059072","1483059072","1483060741","1483059072","1","12","0","-1","1669","0","20028","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275986","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059144","1483059144","1483060753","1483059144","1","12","0","-1","1609","0","19308","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275988","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059148","1483059148","1483060864","1483059148","1","12","0","-1","1716","0","20592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2275994","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059222","1483059222","1483060874","1483059222","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276006","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059313","1483059313","1483060878","1483059313","1","12","0","-1","1565","0","18780","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276052","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059841","1483059841","1483061409","1483059841","1","12","0","-1","1568","0","18816","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276054","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059850","1483059850","1483061471","1483059850","1","12","0","-1","1621","0","19452","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276056","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059856","1483059856","1483061486","1483059856","1","12","0","-1","1630","0","19560","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276058","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059883","1483059883","1483061463","1483059883","1","12","0","-1","1580","0","18960","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276060","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059912","1483059912","1483061535","1483059912","1","12","0","-1","1623","0","19476","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276062","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059926","1483059926","1483061546","1483059926","1","12","0","-1","1620","0","19440","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276077","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060105","1483060105","1483061660","1483060105","1","12","0","-1","1555","0","18660","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276079","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060178","1483060178","1483061828","1483060178","1","12","0","-1","1650","0","19800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276109","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060563","1483060563","1483062122","1483060563","1","12","0","-1","1559","0","18708","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276111","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060588","1483060588","1483062274","1483060588","1","12","0","-1","1686","0","20232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276114","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060659","1483060659","1483062174","1483060659","1","12","0","-1","1515","0","18180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276116","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060673","1483060673","1483061859","1483060673","1","12","0","-1","1186","0","14232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276118","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060684","1483060684","1483062343","1483060684","1","12","0","-1","1659","0","19908","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276138","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060802","1483060802","1483062431","1483060802","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276152","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060930","1483060930","1483062475","1483060930","1","12","0","-1","1545","0","18540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276159","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061006","1483061006","1483062326","1483061006","1","12","0","-1","1320","0","15840","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276161","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061041","1483061041","1483062700","1483061041","1","12","0","-1","1659","0","19908","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276167","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061108","1483061108","1483062738","1483061108","1","12","0","-1","1630","0","19560","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276170","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061163","1483061163","1483062818","1483061163","1","12","0","-1","1655","0","19860","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276175","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061305","1483061305","1483062891","1483061305","1","12","0","-1","1586","0","19032","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276177","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061332","1483061332","1483062969","1483061332","1","12","0","-1","1637","0","19644","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276203","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061546","1483061546","1483063297","1483061546","1","12","0","-1","1751","0","21012","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276205","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061551","1483061551","1483062988","1483061551","1","12","0","-1","1437","0","17244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276210","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061605","1483061605","1483063290","1483061605","1","12","0","-1","1685","0","20220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276218","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061714","1483061714","1483063194","1483061714","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276221","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061753","1483061753","1483063170","1483061753","1","12","0","-1","1417","0","17004","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276227","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061796","1483061796","1483063479","1483061796","1","12","0","-1","1683","0","20196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276229","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061805","1483061805","1483063457","1483061805","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276235","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061857","1483061857","1483063312","1483061857","1","12","0","-1","1455","0","17460","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276241","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061890","1483061890","1483063525","1483061890","1","12","0","-1","1635","0","19620","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276256","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062178","1483062178","1483063421","1483062178","1","12","0","-1","1243","0","14916","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276268","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062348","1483062348","1483063721","1483062348","1","12","0","-1","1373","0","16476","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276270","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062370","1483062370","1483064045","1483062370","1","12","0","-1","1675","0","20100","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276272","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062377","1483062377","1483063984","1483062377","1","12","0","-1","1607","0","19284","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276276","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062439","1483062439","1483064151","1483062439","1","12","0","-1","1712","0","20544","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276282","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062466","1483062466","1483063999","1483062466","1","12","0","-1","1533","0","18396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276286","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062480","1483062480","1483064063","1483062480","1","12","0","-1","1583","0","18996","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276289","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062533","1483062533","1483063987","1483062533","1","12","0","-1","1454","0","17448","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276294","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062641","1483062641","1483064326","1483062641","1","12","0","-1","1685","0","20220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276308","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062775","1483062775","1483064451","1483062775","1","12","0","-1","1676","0","20112","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276330","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062900","1483062900","1483064225","1483062900","1","12","0","-1","1325","0","15900","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276336","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062938","1483062938","1483064486","1483062938","1","12","0","-1","1548","0","18576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276340","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062978","1483062978","1483064580","1483062978","1","12","0","-1","1602","0","19224","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276344","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062994","1483062994","1483064305","1483062994","1","12","0","-1","1311","0","15732","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276346","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063014","1483063014","1483064701","1483063014","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276353","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063095","1483063095","1483064730","1483063095","1","12","0","-1","1635","0","19620","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276361","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063175","1483063175","1483064643","1483063175","1","12","0","-1","1468","0","17616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276378","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063300","1483063300","1483065094","1483063300","1","12","0","-1","1794","0","21528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276396","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063425","1483063425","1483065031","1483063425","1","12","0","-1","1606","0","19272","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276402","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063469","1483063469","1483064819","1483063469","1","12","0","-1","1350","0","16200","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276408","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063503","1483063503","1483065195","1483063503","1","12","0","-1","1692","0","20304","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276412","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063512","1483063512","1483065260","1483063512","1","12","0","-1","1748","0","20976","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276414","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063530","1483063530","1483065041","1483063530","1","12","0","-1","1511","0","18132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276416","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063561","1483063561","1483065217","1483063561","1","12","0","-1","1656","0","19872","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276428","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063707","1483063707","1483065407","1483063707","1","12","0","-1","1700","0","20400","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276430","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063746","1483063746","1483065183","1483063746","1","12","0","-1","1437","0","17244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276432","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063753","1483063753","1483065290","1483063753","1","12","0","-1","1537","0","18444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276434","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063762","1483063762","1483065391","1483063762","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276454","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064048","1483064048","1483065728","1483064048","1","12","0","-1","1680","0","20160","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276458","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064067","1483064067","1483065539","1483064067","1","12","0","-1","1472","0","17664","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276460","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064115","1483064115","1483065620","1483064115","1","12","0","-1","1505","0","18060","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276466","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064177","1483064177","1483065701","1483064177","1","12","0","-1","1524","0","18288","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276470","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064226","1483064226","1483065862","1483064226","1","12","0","-1","1636","0","19632","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276472","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064230","1483064230","1483065710","1483064230","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276474","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064242","1483064242","1483065880","1483064242","1","12","0","-1","1638","0","19656","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276476","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064246","1483064246","1483065857","1483064246","1","12","0","-1","1611","0","19332","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276478","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064251","1483064251","1483065725","1483064251","1","12","0","-1","1474","0","17688","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276480","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064308","1483064308","1483065892","1483064308","1","12","0","-1","1584","0","19008","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276482","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064315","1483064315","1483066028","1483064315","1","12","0","-1","1713","0","20556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276484","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064330","1483064330","1483065873","1483064330","1","12","0","-1","1543","0","18516","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276508","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064586","1483064586","1483066104","1483064586","1","12","0","-1","1518","0","18216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276511","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064647","1483064647","1483066385","1483064647","1","12","0","-1","1738","0","20856","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276515","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064658","1483064658","1483066214","1483064658","1","12","0","-1","1556","0","18672","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276517","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064672","1483064672","1483065998","1483064672","1","12","0","-1","1326","0","15912","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276565","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065065","1483065065","1483066488","1483065065","1","12","0","-1","1423","0","17076","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276572","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065141","1483065141","1483066513","1483065141","1","12","0","-1","1372","0","16464","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276575","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065189","1483065189","1483066700","1483065189","1","12","0","-1","1511","0","18132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276581","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065221","1483065221","1483066551","1483065221","1","12","0","-1","1330","0","15960","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276592","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065301","1483065301","1483066916","1483065301","1","12","0","-1","1615","0","19380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276616","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065544","1483065544","1483066918","1483065544","1","12","0","-1","1374","0","16488","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276642","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065849","1483065849","1483067444","1483065849","1","12","0","-1","1595","0","19140","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276650","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065879","1483065879","1483067566","1483065879","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276654","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065893","1483065893","1483067517","1483065893","1","12","0","-1","1624","0","19488","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276661","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065947","1483065947","1483067613","1483065947","1","12","0","-1","1666","0","19992","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276665","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065967","1483065967","1483067561","1483065967","1","12","0","-1","1594","0","19128","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276667","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065982","1483065982","1483067778","1483065982","1","12","0","-1","1796","0","21552","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276671","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066002","1483066002","1483067778","1483066002","1","12","0","-1","1776","0","21312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276673","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066007","1483066007","1483067655","1483066007","1","12","0","-1","1648","0","19776","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276675","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066031","1483066031","1483067444","1483066031","1","12","0","-1","1413","0","16956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276680","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066060","1483066060","1483067444","1483066060","1","12","0","-1","1384","0","16608","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276683","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066071","1483066071","1483067836","1483066071","1","12","0","-1","1765","0","21180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276690","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066133","1483066133","1483067670","1483066133","1","12","0","-1","1537","0","18444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276713","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066502","1483066502","1483067915","1483066502","1","12","0","-1","1413","0","16956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276722","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066579","1483066579","1483067959","1483066579","1","12","0","-1","1380","0","16560","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276730","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066666","1483066666","1483068207","1483066666","1","12","0","-1","1541","0","18492","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276741","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066779","1483066779","1483067994","1483066779","1","12","0","-1","1215","0","14580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276752","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067007","1483067007","1483068748","1483067007","1","12","0","-1","1741","0","20892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276754","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067069","1483067069","1483068620","1483067069","1","12","0","-1","1551","0","18612","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276770","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067397","1483067397","1483068598","1483067397","1","12","0","-1","1201","0","14412","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276780","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067517","1483067517","1483069053","1483067517","1","12","0","-1","1536","0","18432","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276784","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067556","1483067556","1483069246","1483067556","1","12","0","-1","1690","0","20280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276808","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067712","1483067712","1483069428","1483067712","1","12","0","-1","1716","0","20592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276869","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067932","1483067932","1483069395","1483067932","1","12","0","-1","1463","0","17556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276884","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068032","1483068032","1483069076","1483068032","1","12","0","-1","1044","0","12528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276889","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068084","1483068084","1483069566","1483068084","1","12","0","-1","1482","0","17784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276891","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068097","1483068097","1483069479","1483068097","1","12","0","-1","1382","0","16584","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276893","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068126","1483068126","1483069615","1483068126","1","12","0","-1","1489","0","17868","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276899","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068214","1483068214","1483069957","1483068214","1","12","0","-1","1743","0","20916","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276915","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068521","1483068521","1483069783","1483068521","1","12","0","-1","1262","0","15144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276919","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068601","1483068601","1483070393","1483068601","1","12","0","-1","1792","0","21504","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276925","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068625","1483068625","1483070230","1483068625","1","12","0","-1","1605","0","19260","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276931","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068790","1483068790","1483070286","1483068790","1","12","0","-1","1496","0","17952","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276939","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068984","1483068984","1483070260","1483068984","1","12","0","-1","1276","0","15312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276941","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068995","1483068995","1483070705","1483068995","1","12","0","-1","1710","0","20520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276947","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069081","1483069081","1483070766","1483069081","1","12","0","-1","1685","0","20220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276961","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069249","1483069249","1483070924","1483069249","1","12","0","-1","1675","0","20100","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276967","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069311","1483069311","1483070916","1483069311","1","12","0","-1","1605","0","19260","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276971","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069320","1483069320","1483071027","1483069320","1","12","0","-1","1707","0","20484","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276973","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069333","1483069333","1483071034","1483069333","1","12","0","-1","1701","0","20412","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276978","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069347","1483069347","1483070989","1483069347","1","12","0","-1","1642","0","19704","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276990","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069427","1483069427","1483071092","1483069427","1","12","0","-1","1665","0","19980","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276992","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069431","1483069431","1483071158","1483069431","1","12","0","-1","1727","0","20724","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276996","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069450","1483069450","1483070684","1483069450","1","12","0","-1","1234","0","14808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2276998","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069454","1483069454","1483071024","1483069454","1","12","0","-1","1570","0","18840","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277032","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069660","1483069660","1483071007","1483069660","1","12","0","-1","1347","0","16164","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277035","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069716","1483069716","1483071245","1483069716","1","12","0","-1","1529","0","18348","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277049","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069789","1483069789","1483071258","1483069789","1","12","0","-1","1469","0","17628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277053","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069810","1483069810","1483071322","1483069810","1","12","0","-1","1512","0","18144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277055","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069817","1483069817","1483071397","1483069817","1","12","0","-1","1580","0","18960","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277062","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069920","1483069920","1483071450","1483069920","1","12","0","-1","1530","0","18360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277064","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069924","1483069924","1483071131","1483069924","1","12","0","-1","1207","0","14484","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277066","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069971","1483069971","1483071519","1483069971","1","12","0","-1","1548","0","18576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277117","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070269","1483070269","1483071830","1483070269","1","12","0","-1","1561","0","18732","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277162","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070845","1483070845","1483072287","1483070845","1","12","0","-1","1442","0","17304","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277178","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071012","1483071012","1483072601","1483071012","1","12","0","-1","1589","0","19068","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277184","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071027","1483071027","1483072137","1483071027","1","12","0","-1","1110","0","13320","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277186","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071032","1483071032","1483072308","1483071032","1","12","0","-1","1276","0","15312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277188","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071036","1483071036","1483072201","1483071036","1","12","0","-1","1165","0","13980","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277190","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071040","1483071040","1483072308","1483071040","1","12","0","-1","1268","0","15216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277195","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071096","1483071096","1483072863","1483071096","1","12","0","-1","1767","0","21204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277203","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071162","1483071162","1483072707","1483071162","1","12","0","-1","1545","0","18540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277205","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071176","1483071176","1483072674","1483071176","1","12","0","-1","1498","0","17976","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277207","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071180","1483071180","1483072823","1483071180","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277211","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071250","1483071250","1483072903","1483071250","1","12","0","-1","1653","0","19836","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277225","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071311","1483071311","1483073027","1483071311","1","12","0","-1","1716","0","20592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277240","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071452","1483071452","1483073067","1483071452","1","12","0","-1","1615","0","19380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277247","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071523","1483071523","1483073223","1483071523","1","12","0","-1","1700","0","20400","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277260","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071626","1483071626","1483072943","1483071626","1","12","0","-1","1317","0","15804","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277267","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071729","1483071729","1483073516","1483071729","1","12","0","-1","1787","0","21444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277273","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071824","1483071824","1483073534","1483071824","1","12","0","-1","1710","0","20520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277309","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072165","1483072165","1483073630","1483072165","1","12","0","-1","1465","0","17580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277325","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072232","1483072232","1483074020","1483072232","1","12","0","-1","1788","0","21456","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277327","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072243","1483072243","1483073726","1483072243","1","12","0","-1","1483","0","17796","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277333","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072290","1483072290","1483073793","1483072290","1","12","0","-1","1503","0","18036","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277358","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072530","1483072530","1483074147","1483072530","1","12","0","-1","1617","0","19404","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277367","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072615","1483072615","1483074356","1483072615","1","12","0","-1","1741","0","20892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277384","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072879","1483072879","1483074592","1483072879","1","12","0","-1","1713","0","20556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277395","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073020","1483073020","1483074478","1483073020","1","12","0","-1","1458","0","17496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277397","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073024","1483073024","1483074557","1483073024","1","12","0","-1","1533","0","18396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277406","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073059","1483073059","1483074775","1483073059","1","12","0","-1","1716","0","20592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277411","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073075","1483073075","1483074593","1483073075","1","12","0","-1","1518","0","18216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277428","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073222","1483073222","1483074975","1483073222","1","12","0","-1","1753","0","21036","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277436","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073250","1483073250","1483074908","1483073250","1","12","0","-1","1658","0","19896","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277457","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073540","1483073540","1483074973","1483073540","1","12","0","-1","1433","0","17196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277459","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073545","1483073545","1483075230","1483073545","1","12","0","-1","1685","0","20220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277476","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073710","1483073710","1483075478","1483073710","1","12","0","-1","1768","0","21216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277524","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074076","1483074076","1483075621","1483074076","1","12","0","-1","1545","0","18540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277526","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074081","1483074081","1483075862","1483074081","1","12","0","-1","1781","0","21372","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277528","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074096","1483074096","1483075668","1483074096","1","12","0","-1","1572","0","18864","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277586","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074712","1483074712","1483076204","1483074712","1","12","0","-1","1492","0","17904","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277601","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074908","1483074908","1483076315","1483074908","1","12","0","-1","1407","0","16884","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277603","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074913","1483074913","1483076585","1483074913","1","12","0","-1","1672","0","20064","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277605","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074942","1483074942","1483076390","1483074942","1","12","0","-1","1448","0","17376","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277610","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074977","1483074977","1483076627","1483074977","1","12","0","-1","1650","0","19800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277619","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075034","1483075034","1483076675","1483075034","1","12","0","-1","1641","0","19692","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277653","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075336","1483075336","1483076985","1483075336","1","12","0","-1","1649","0","19788","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277665","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075481","1483075481","1483076950","1483075481","1","12","0","-1","1469","0","17628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277672","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075523","1483075523","1483077097","1483075523","1","12","0","-1","1574","0","18888","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277677","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075541","1483075541","1483077055","1483075541","1","12","0","-1","1514","0","18168","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277681","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075595","1483075595","1483077308","1483075595","1","12","0","-1","1713","0","20556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277745","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076325","1483076325","1483078104","1483076325","1","12","0","-1","1779","0","21348","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277755","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076400","1483076400","1483078090","1483076400","1","12","0","-1","1690","0","20280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277764","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076494","1483076494","1483078183","1483076494","1","12","0","-1","1689","0","20268","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277796","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076841","1483076841","1483078263","1483076841","1","12","0","-1","1422","0","17064","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277798","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076856","1483076856","1483078530","1483076856","1","12","0","-1","1674","0","20088","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277800","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076886","1483076886","1483078498","1483076886","1","12","0","-1","1612","0","19344","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277840","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077132","1483077132","1483078835","1483077132","1","12","0","-1","1703","0","20436","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277870","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077482","1483077482","1483079221","1483077482","1","12","0","-1","1739","0","20868","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277893","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077814","1483077814","1483079476","1483077814","1","12","0","-1","1662","0","19944","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277901","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077849","1483077849","1483079147","1483077849","1","12","0","-1","1298","0","15576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277903","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077853","1483077853","1483079288","1483077853","1","12","0","-1","1435","0","17220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277906","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077871","1483077871","1483079423","1483077871","1","12","0","-1","1552","0","18624","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277913","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077904","1483077904","1483079384","1483077904","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277919","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078045","1483078045","1483079634","1483078045","1","12","0","-1","1589","0","19068","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277928","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078137","1483078137","1483079597","1483078137","1","12","0","-1","1460","0","17520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277938","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078188","1483078188","1483079813","1483078188","1","12","0","-1","1625","0","19500","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277942","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078223","1483078223","1483079978","1483078223","1","12","0","-1","1755","0","21060","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277976","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078509","1483078509","1483080257","1483078509","1","12","0","-1","1748","0","20976","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277990","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078601","1483078601","1483080253","1483078601","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2277992","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078622","1483078622","1483080062","1483078622","1","12","0","-1","1440","0","17280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278040","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079031","1483079031","1483080786","1483079031","1","12","0","-1","1755","0","21060","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278065","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079153","1483079153","1483080907","1483079153","1","12","0","-1","1754","0","21048","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278076","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079226","1483079226","1483080934","1483079226","1","12","0","-1","1708","0","20496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278082","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079243","1483079243","1483080799","1483079243","1","12","0","-1","1556","0","18672","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278090","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079341","1483079341","1483080883","1483079341","1","12","0","-1","1542","0","18504","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278093","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079388","1483079388","1483080716","1483079388","1","12","0","-1","1328","0","15936","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278095","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079393","1483079393","1483080630","1483079393","1","12","0","-1","1237","0","14844","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278097","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079397","1483079397","1483081040","1483079397","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278113","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079605","1483079605","1483080831","1483079605","1","12","0","-1","1226","0","14712","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278117","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079638","1483079638","1483081118","1483079638","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278120","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079680","1483079680","1483080801","1483079680","1","12","0","-1","1121","0","13452","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278129","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079976","1483079976","1483081626","1483079976","1","12","0","-1","1650","0","19800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278131","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079980","1483079980","1483081318","1483079980","1","12","0","-1","1338","0","16056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278138","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080067","1483080067","1483081445","1483080067","1","12","0","-1","1378","0","16536","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278140","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080091","1483080091","1483081860","1483080091","1","12","0","-1","1769","0","21228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278179","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080524","1483080524","1483082282","1483080524","1","12","0","-1","1758","0","21096","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278181","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080531","1483080531","1483082068","1483080531","1","12","0","-1","1537","0","18444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278185","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080539","1483080539","1483082047","1483080539","1","12","0","-1","1508","0","18096","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278190","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080590","1483080590","1483082308","1483080590","1","12","0","-1","1718","0","20616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278192","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080595","1483080595","1483082081","1483080595","1","12","0","-1","1486","0","17832","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278206","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080654","1483080654","1483082429","1483080654","1","12","0","-1","1775","0","21300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278211","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080676","1483080676","1483082371","1483080676","1","12","0","-1","1695","0","20340","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278255","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080961","1483080961","1483082676","1483080961","1","12","0","-1","1715","0","20580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278263","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081003","1483081003","1483082505","1483081003","1","12","0","-1","1502","0","18024","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278265","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081010","1483081010","1483082786","1483081010","1","12","0","-1","1776","0","21312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278274","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081103","1483081103","1483082807","1483081103","1","12","0","-1","1704","0","20448","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278283","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081163","1483081163","1483082815","1483081163","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278285","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081167","1483081167","1483082917","1483081167","1","12","0","-1","1750","0","21000","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278302","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081316","1483081316","1483083085","1483081316","1","12","0","-1","1769","0","21228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278321","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081502","1483081502","1483082938","1483081502","1","12","0","-1","1436","0","17232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278333","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081823","1483081823","1483083028","1483081823","1","12","0","-1","1205","0","14460","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278337","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081867","1483081867","1483083608","1483081867","1","12","0","-1","1741","0","20892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278339","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081879","1483081879","1483083349","1483081879","1","12","0","-1","1470","0","17640","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278341","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081887","1483081887","1483083318","1483081887","1","12","0","-1","1431","0","17172","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278349","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082082","1483082082","1483083213","1483082082","1","12","0","-1","1131","0","13572","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278374","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082430","1483082430","1483083591","1483082430","1","12","0","-1","1161","0","13932","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278376","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082435","1483082435","1483083523","1483082435","1","12","0","-1","1088","0","13056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278403","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082557","1483082557","1483084288","1483082557","1","12","0","-1","1731","0","20772","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278433","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082791","1483082791","1483084506","1483082791","1","12","0","-1","1715","0","20580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278435","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082806","1483082806","1483084599","1483082806","1","12","0","-1","1793","0","21516","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278480","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082996","1483082996","1483084662","1483082996","1","12","0","-1","1666","0","19992","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278491","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083090","1483083090","1483084623","1483083090","1","12","0","-1","1533","0","18396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278521","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083342","1483083342","1483085133","1483083342","1","12","0","-1","1791","0","21492","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278534","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083526","1483083526","1483084877","1483083526","1","12","0","-1","1351","0","16212","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278536","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083542","1483083542","1483085093","1483083542","1","12","0","-1","1551","0","18612","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278538","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083551","1483083551","1483085180","1483083551","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278542","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083595","1483083595","1483085161","1483083595","1","12","0","-1","1566","0","18792","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278544","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083611","1483083611","1483085376","1483083611","1","12","0","-1","1765","0","21180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278546","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083615","1483083615","1483085269","1483083615","1","12","0","-1","1654","0","19848","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278566","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084066","1483084066","1483085762","1483084066","1","12","0","-1","1696","0","20352","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278568","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084103","1483084103","1483085691","1483084103","1","12","0","-1","1588","0","19056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278575","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084209","1483084209","1483085776","1483084209","1","12","0","-1","1567","0","18804","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278613","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084571","1483084571","1483086161","1483084571","1","12","0","-1","1590","0","19080","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278645","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084761","1483084761","1483086343","1483084761","1","12","0","-1","1582","0","18984","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278659","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084852","1483084852","1483086474","1483084852","1","12","0","-1","1622","0","19464","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278665","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084874","1483084874","1483086448","1483084874","1","12","0","-1","1574","0","18888","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278671","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084892","1483084892","1483086578","1483084892","1","12","0","-1","1686","0","20232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278675","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084901","1483084901","1483086566","1483084901","1","12","0","-1","1665","0","19980","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278679","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084910","1483084910","1483086704","1483084910","1","12","0","-1","1794","0","21528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278703","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085137","1483085137","1483086913","1483085137","1","12","0","-1","1776","0","21312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278711","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085247","1483085247","1483087000","1483085247","1","12","0","-1","1753","0","21036","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278719","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085276","1483085276","1483086986","1483085276","1","12","0","-1","1710","0","20520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278735","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085380","1483085380","1483087034","1483085380","1","12","0","-1","1654","0","19848","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278740","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085447","1483085447","1483087170","1483085447","1","12","0","-1","1723","0","20676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278780","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086058","1483086058","1483087848","1483086058","1","12","0","-1","1790","0","21480","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278795","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086379","1483086379","1483087918","1483086379","1","12","0","-1","1539","0","18468","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278809","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086541","1483086541","1483088131","1483086541","1","12","0","-1","1590","0","19080","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278811","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086552","1483086552","1483088070","1483086552","1","12","0","-1","1518","0","18216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278813","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086556","1483086556","1483087809","1483086556","1","12","0","-1","1253","0","15036","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278817","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086572","1483086572","1483088196","1483086572","1","12","0","-1","1624","0","19488","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278819","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086576","1483086576","1483088185","1483086576","1","12","0","-1","1609","0","19308","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278823","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086585","1483086585","1483087970","1483086585","1","12","0","-1","1385","0","16620","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278825","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086627","1483086627","1483088242","1483086627","1","12","0","-1","1615","0","19380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278838","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086721","1483086721","1483088423","1483086721","1","12","0","-1","1702","0","20424","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278845","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086761","1483086761","1483088434","1483086761","1","12","0","-1","1673","0","20076","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278851","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086774","1483086774","1483088407","1483086774","1","12","0","-1","1633","0","19596","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278853","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086783","1483086783","1483088352","1483086783","1","12","0","-1","1569","0","18828","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278855","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086788","1483086788","1483088533","1483086788","1","12","0","-1","1745","0","20940","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278857","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086808","1483086808","1483088583","1483086808","1","12","0","-1","1775","0","21300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278861","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086828","1483086828","1483088596","1483086828","1","12","0","-1","1768","0","21216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278865","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086844","1483086844","1483088587","1483086844","1","12","0","-1","1743","0","20916","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278870","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086896","1483086896","1483088391","1483086896","1","12","0","-1","1495","0","17940","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278874","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086930","1483086930","1483088713","1483086930","1","12","0","-1","1783","0","21396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278876","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086960","1483086960","1483088571","1483086960","1","12","0","-1","1611","0","19332","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278893","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087009","1483087009","1483088621","1483087009","1","12","0","-1","1612","0","19344","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278902","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087037","1483087037","1483088788","1483087037","1","12","0","-1","1751","0","21012","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278907","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087061","1483087061","1483088743","1483087061","1","12","0","-1","1682","0","20184","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278931","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087248","1483087248","1483088813","1483087248","1","12","0","-1","1565","0","18780","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278933","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087270","1483087270","1483088884","1483087270","1","12","0","-1","1614","0","19368","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278935","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087275","1483087275","1483089057","1483087275","1","12","0","-1","1782","0","21384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278937","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087286","1483087286","1483089033","1483087286","1","12","0","-1","1747","0","20964","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278939","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087305","1483087305","1483088407","1483087305","1","12","0","-1","1102","0","13224","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278941","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087310","1483087310","1483088661","1483087310","1","12","0","-1","1351","0","16212","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278946","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087351","1483087351","1483088927","1483087351","1","12","0","-1","1576","0","18912","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2278954","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087421","1483087421","1483088719","1483087421","1","12","0","-1","1298","0","15576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279023","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088362","1483088362","1483090019","1483088362","1","12","0","-1","1657","0","19884","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279044","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088453","1483088453","1483090021","1483088453","1","12","0","-1","1568","0","18816","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279046","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088464","1483088464","1483090185","1483088464","1","12","0","-1","1721","0","20652","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279055","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088538","1483088538","1483090049","1483088538","1","12","0","-1","1511","0","18132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279062","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088592","1483088592","1483090352","1483088592","1","12","0","-1","1760","0","21120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279070","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088624","1483088624","1483089973","1483088624","1","12","0","-1","1349","0","16188","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279072","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088635","1483088635","1483090212","1483088635","1","12","0","-1","1577","0","18924","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279079","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088685","1483088685","1483090038","1483088685","1","12","0","-1","1353","0","16236","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279082","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088708","1483088708","1483090341","1483088708","1","12","0","-1","1633","0","19596","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279121","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089002","1483089002","1483090489","1483089002","1","12","0","-1","1487","0","17844","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279125","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089016","1483089016","1483090613","1483089016","1","12","0","-1","1597","0","19164","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279127","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089037","1483089037","1483090807","1483089037","1","12","0","-1","1770","0","21240","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279132","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089071","1483089071","1483090787","1483089071","1","12","0","-1","1716","0","20592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279136","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089113","1483089113","1483090891","1483089113","1","12","0","-1","1778","0","21336","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279145","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089272","1483089272","1483090978","1483089272","1","12","0","-1","1706","0","20472","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279169","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089603","1483089603","1483091384","1483089603","1","12","0","-1","1781","0","21372","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279175","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089662","1483089662","1483090760","1483089662","1","12","0","-1","1098","0","13176","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279181","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089757","1483089757","1483091235","1483089757","1","12","0","-1","1478","0","17736","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279183","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089775","1483089775","1483091459","1483089775","1","12","0","-1","1684","0","20208","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279185","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089798","1483089798","1483091478","1483089798","1","12","0","-1","1680","0","20160","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279197","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089952","1483089952","1483091214","1483089952","1","12","0","-1","1262","0","15144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279199","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089963","1483089963","1483091625","1483089963","1","12","0","-1","1662","0","19944","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279205","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090009","1483090009","1483091218","1483090009","1","12","0","-1","1209","0","14508","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279258","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090346","1483090346","1483092105","1483090346","1","12","0","-1","1759","0","21108","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279267","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090477","1483090477","1483092188","1483090477","1","12","0","-1","1711","0","20532","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279272","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090503","1483090503","1483092175","1483090503","1","12","0","-1","1672","0","20064","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279274","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090507","1483090507","1483092138","1483090507","1","12","0","-1","1631","0","19572","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279311","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090775","1483090775","1483092450","1483090775","1","12","0","-1","1675","0","20100","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279324","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090910","1483090910","1483092656","1483090910","1","12","0","-1","1746","0","20952","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279336","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091059","1483091059","1483092685","1483091059","1","12","0","-1","1626","0","19512","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279355","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091324","1483091324","1483093000","1483091324","1","12","0","-1","1676","0","20112","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279358","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091367","1483091367","1483093053","1483091367","1","12","0","-1","1686","0","20232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279366","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091387","1483091387","1483092950","1483091387","1","12","0","-1","1563","0","18756","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279387","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091518","1483091518","1483093173","1483091518","1","12","0","-1","1655","0","19860","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279402","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091634","1483091634","1483093281","1483091634","1","12","0","-1","1647","0","19764","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279405","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091764","1483091764","1483093429","1483091764","1","12","0","-1","1665","0","19980","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279429","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092104","1483092104","1483093654","1483092104","1","12","0","-1","1550","0","18600","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279435","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092125","1483092125","1483093521","1483092125","1","12","0","-1","1396","0","16752","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279445","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092177","1483092177","1483093961","1483092177","1","12","0","-1","1784","0","21408","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279448","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092189","1483092189","1483093867","1483092189","1","12","0","-1","1678","0","20136","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279454","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092241","1483092241","1483093469","1483092241","1","12","0","-1","1228","0","14736","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279464","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092352","1483092352","1483093944","1483092352","1","12","0","-1","1592","0","19104","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279467","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092406","1483092406","1483093996","1483092406","1","12","0","-1","1590","0","19080","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279469","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092413","1483092413","1483093960","1483092413","1","12","0","-1","1547","0","18564","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279496","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092643","1483092643","1483094092","1483092643","1","12","0","-1","1449","0","17388","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279501","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092665","1483092665","1483094068","1483092665","1","12","0","-1","1403","0","16836","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279513","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092741","1483092741","1483094407","1483092741","1","12","0","-1","1666","0","19992","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279522","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092796","1483092796","1483094563","1483092796","1","12","0","-1","1767","0","21204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279563","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093165","1483093165","1483094849","1483093165","1","12","0","-1","1684","0","20208","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279592","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093431","1483093431","1483095078","1483093431","1","12","0","-1","1647","0","19764","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279594","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093456","1483093456","1483095219","1483093456","1","12","0","-1","1763","0","21156","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279604","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093544","1483093544","1483095132","1483093544","1","12","0","-1","1588","0","19056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279626","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093877","1483093877","1483095295","1483093877","1","12","0","-1","1418","0","17016","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279632","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093948","1483093948","1483095527","1483093948","1","12","0","-1","1579","0","18948","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279647","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094058","1483094058","1483095783","1483094058","1","12","0","-1","1725","0","20700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279649","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094069","1483094069","1483095866","1483094069","1","12","0","-1","1797","0","21564","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279681","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094416","1483094416","1483096062","1483094416","1","12","0","-1","1646","0","19752","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279683","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094434","1483094434","1483096136","1483094434","1","12","0","-1","1702","0","20424","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279707","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094653","1483094653","1483096381","1483094653","1","12","0","-1","1728","0","20736","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279711","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094687","1483094687","1483096365","1483094687","1","12","0","-1","1678","0","20136","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279713","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094714","1483094714","1483096381","1483094714","1","12","0","-1","1667","0","20004","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279715","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094730","1483094730","1483096351","1483094730","1","12","0","-1","1621","0","19452","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279726","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094823","1483094823","1483096475","1483094823","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279744","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094925","1483094925","1483096111","1483094925","1","12","0","-1","1186","0","14232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279755","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095028","1483095028","1483096730","1483095028","1","12","0","-1","1702","0","20424","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279757","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095032","1483095032","1483096800","1483095032","1","12","0","-1","1768","0","21216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279776","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095136","1483095136","1483096770","1483095136","1","12","0","-1","1634","0","19608","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279778","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095141","1483095141","1483096617","1483095141","1","12","0","-1","1476","0","17712","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279781","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095201","1483095201","1483096911","1483095201","1","12","0","-1","1710","0","20520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279850","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095966","1483095966","1483097706","1483095966","1","12","0","-1","1740","0","20880","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279852","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095982","1483095982","1483097503","1483095982","1","12","0","-1","1521","0","18252","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279863","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096116","1483096116","1483097887","1483096116","1","12","0","-1","1771","0","21252","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279870","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096162","1483096162","1483097842","1483096162","1","12","0","-1","1680","0","20160","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279881","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096290","1483096290","1483098040","1483096290","1","12","0","-1","1750","0","21000","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279883","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096304","1483096304","1483098071","1483096304","1","12","0","-1","1767","0","21204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279887","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096326","1483096326","1483097816","1483096326","1","12","0","-1","1490","0","17880","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279915","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096552","1483096552","1483098029","1483096552","1","12","0","-1","1477","0","17724","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279949","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096766","1483096766","1483098160","1483096766","1","12","0","-1","1394","0","16728","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279951","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096773","1483096773","1483098468","1483096773","1","12","0","-1","1695","0","20340","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279954","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096809","1483096809","1483098571","1483096809","1","12","0","-1","1762","0","21144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279968","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096941","1483096941","1483098452","1483096941","1","12","0","-1","1511","0","18132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279982","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097030","1483097030","1483098725","1483097030","1","12","0","-1","1695","0","20340","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279986","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097074","1483097074","1483098747","1483097074","1","12","0","-1","1673","0","20076","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2279994","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097112","1483097112","1483098470","1483097112","1","12","0","-1","1358","0","16296","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280011","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097509","1483097509","1483099245","1483097509","1","12","0","-1","1736","0","20832","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280017","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097711","1483097711","1483099319","1483097711","1","12","0","-1","1608","0","19296","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280021","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097756","1483097756","1483099468","1483097756","1","12","0","-1","1712","0","20544","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280023","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097765","1483097765","1483099408","1483097765","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280025","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097806","1483097806","1483099549","1483097806","1","12","0","-1","1743","0","20916","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280033","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097867","1483097867","1483099530","1483097867","1","12","0","-1","1663","0","19956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280038","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097897","1483097897","1483099549","1483097897","1","12","0","-1","1652","0","19824","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280042","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097924","1483097924","1483099603","1483097924","1","12","0","-1","1679","0","20148","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280073","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098192","1483098192","1483099927","1483098192","1","12","0","-1","1735","0","20820","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280092","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098274","1483098274","1483099797","1483098274","1","12","0","-1","1523","0","18276","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280100","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098296","1483098296","1483100034","1483098296","1","12","0","-1","1738","0","20856","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280115","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098376","1483098376","1483100132","1483098376","1","12","0","-1","1756","0","21072","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280144","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098656","1483098656","1483100138","1483098656","1","12","0","-1","1482","0","17784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280151","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098756","1483098756","1483100150","1483098756","1","12","0","-1","1394","0","16728","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280153","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098786","1483098786","1483100272","1483098786","1","12","0","-1","1486","0","17832","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280159","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098823","1483098823","1483100360","1483098823","1","12","0","-1","1537","0","18444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280162","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098894","1483098894","1483100391","1483098894","1","12","0","-1","1497","0","17964","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280165","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098926","1483098926","1483100635","1483098926","1","12","0","-1","1709","0","20508","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280169","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098975","1483098975","1483100663","1483098975","1","12","0","-1","1688","0","20256","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280177","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099010","1483099010","1483100375","1483099010","1","12","0","-1","1365","0","16380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280179","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099015","1483099015","1483100504","1483099015","1","12","0","-1","1489","0","17868","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280182","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099060","1483099060","1483100824","1483099060","1","12","0","-1","1764","0","21168","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280219","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099558","1483099558","1483101248","1483099558","1","12","0","-1","1690","0","20280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280257","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099860","1483099860","1483101342","1483099860","1","12","0","-1","1482","0","17784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280269","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099990","1483099990","1483101475","1483099990","1","12","0","-1","1485","0","17820","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280274","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100038","1483100038","1483101829","1483100038","1","12","0","-1","1791","0","21492","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280276","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100043","1483100043","1483101677","1483100043","1","12","0","-1","1634","0","19608","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280285","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100091","1483100091","1483101862","1483100091","1","12","0","-1","1771","0","21252","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280298","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100154","1483100154","1483101580","1483100154","1","12","0","-1","1426","0","17112","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280302","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100180","1483100180","1483101884","1483100180","1","12","0","-1","1704","0","20448","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280316","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100278","1483100278","1483102009","1483100278","1","12","0","-1","1731","0","20772","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280318","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100294","1483100294","1483102061","1483100294","1","12","0","-1","1767","0","21204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280320","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100299","1483100299","1483101903","1483100299","1","12","0","-1","1604","0","19248","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280326","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100327","1483100327","1483101882","1483100327","1","12","0","-1","1555","0","18660","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280330","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100345","1483100345","1483101943","1483100345","1","12","0","-1","1598","0","19176","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280350","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100494","1483100494","1483102173","1483100494","1","12","0","-1","1679","0","20148","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280426","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101453","1483101453","1483103079","1483101453","1","12","0","-1","1626","0","19512","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280430","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101478","1483101478","1483103167","1483101478","1","12","0","-1","1689","0","20268","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280442","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101567","1483101567","1483103255","1483101567","1","12","0","-1","1688","0","20256","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280445","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101585","1483101585","1483103350","1483101585","1","12","0","-1","1765","0","21180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280447","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101589","1483101589","1483103272","1483101589","1","12","0","-1","1683","0","20196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280452","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101645","1483101645","1483103332","1483101645","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280497","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101981","1483101981","1483103760","1483101981","1","12","0","-1","1779","0","21348","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280499","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102013","1483102013","1483103724","1483102013","1","12","0","-1","1711","0","20532","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280505","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102029","1483102029","1483103636","1483102029","1","12","0","-1","1607","0","19284","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280509","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102045","1483102045","1483103455","1483102045","1","12","0","-1","1410","0","16920","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280511","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102049","1483102049","1483103287","1483102049","1","12","0","-1","1238","0","14856","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280513","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102054","1483102054","1483103584","1483102054","1","12","0","-1","1530","0","18360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280517","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102072","1483102072","1483103690","1483102072","1","12","0","-1","1618","0","19416","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280519","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102095","1483102095","1483103722","1483102095","1","12","0","-1","1627","0","19524","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280521","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102099","1483102099","1483103318","1483102099","1","12","0","-1","1219","0","14628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280523","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102104","1483102104","1483103497","1483102104","1","12","0","-1","1393","0","16716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280526","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102123","1483102123","1483103511","1483102123","1","12","0","-1","1388","0","16656","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280533","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102177","1483102177","1483103799","1483102177","1","12","0","-1","1622","0","19464","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280537","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102204","1483102204","1483103436","1483102204","1","12","0","-1","1232","0","14784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280592","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102847","1483102847","1483104588","1483102847","1","12","0","-1","1741","0","20892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280596","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102893","1483102893","1483104480","1483102893","1","12","0","-1","1587","0","19044","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280611","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103093","1483103093","1483104762","1483103093","1","12","0","-1","1669","0","20028","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280648","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103350","1483103350","1483104925","1483103350","1","12","0","-1","1575","0","18900","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280658","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103458","1483103458","1483105101","1483103458","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280712","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104062","1483104062","1483105681","1483104062","1","12","0","-1","1619","0","19428","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280721","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104133","1483104133","1483105697","1483104133","1","12","0","-1","1564","0","18768","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280726","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104167","1483104167","1483105936","1483104167","1","12","0","-1","1769","0","21228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280744","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104356","1483104356","1483106100","1483104356","1","12","0","-1","1744","0","20928","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280756","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104528","1483104528","1483106323","1483104528","1","12","0","-1","1795","0","21540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280764","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104688","1483104688","1483106333","1483104688","1","12","0","-1","1645","0","19740","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280769","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104757","1483104757","1483106319","1483104757","1","12","0","-1","1562","0","18744","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280780","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104791","1483104791","1483106572","1483104791","1","12","0","-1","1781","0","21372","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280783","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104800","1483104800","1483106439","1483104800","1","12","0","-1","1639","0","19668","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280814","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105057","1483105057","1483106592","1483105057","1","12","0","-1","1535","0","18420","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280816","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105061","1483105061","1483106593","1483105061","1","12","0","-1","1532","0","18384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280819","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105106","1483105106","1483106869","1483105106","1","12","0","-1","1763","0","21156","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280821","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105110","1483105110","1483106763","1483105110","1","12","0","-1","1653","0","19836","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280823","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105115","1483105115","1483106298","1483105115","1","12","0","-1","1183","0","14196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280837","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105236","1483105236","1483106760","1483105236","1","12","0","-1","1524","0","18288","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280839","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105245","1483105245","1483107024","1483105245","1","12","0","-1","1779","0","21348","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280841","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105255","1483105255","1483106813","1483105255","1","12","0","-1","1558","0","18696","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280844","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105376","1483105376","1483106965","1483105376","1","12","0","-1","1589","0","19068","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280846","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105389","1483105389","1483106850","1483105389","1","12","0","-1","1461","0","17532","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280848","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105401","1483105401","1483107086","1483105401","1","12","0","-1","1685","0","20220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280851","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105417","1483105417","1483106599","1483105417","1","12","0","-1","1182","0","14184","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280907","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106026","1483106026","1483107751","1483106026","1","12","0","-1","1725","0","20700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280909","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106042","1483106042","1483107768","1483106042","1","12","0","-1","1726","0","20712","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280947","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106349","1483106349","1483107942","1483106349","1","12","0","-1","1593","0","19116","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280956","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106451","1483106451","1483108210","1483106451","1","12","0","-1","1759","0","21108","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280968","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106548","1483106548","1483108290","1483106548","1","12","0","-1","1742","0","20904","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280972","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106587","1483106587","1483108110","1483106587","1","12","0","-1","1523","0","18276","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280976","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106600","1483106600","1483108334","1483106600","1","12","0","-1","1734","0","20808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2280978","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106605","1483106605","1483108149","1483106605","1","12","0","-1","1544","0","18528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281011","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106784","1483106784","1483108271","1483106784","1","12","0","-1","1487","0","17844","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281027","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106954","1483106954","1483108679","1483106954","1","12","0","-1","1725","0","20700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281031","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106984","1483106984","1483108702","1483106984","1","12","0","-1","1718","0","20616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281033","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107008","1483107008","1483108684","1483107008","1","12","0","-1","1676","0","20112","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281035","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107044","1483107044","1483108518","1483107044","1","12","0","-1","1474","0","17688","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281059","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107458","1483107458","1483109060","1483107458","1","12","0","-1","1602","0","19224","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281066","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107506","1483107506","1483109012","1483107506","1","12","0","-1","1506","0","18072","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281073","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107583","1483107583","1483109108","1483107583","1","12","0","-1","1525","0","18300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281087","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107793","1483107793","1483109385","1483107793","1","12","0","-1","1592","0","19104","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281089","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107811","1483107811","1483109380","1483107811","1","12","0","-1","1569","0","18828","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281094","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107893","1483107893","1483109675","1483107893","1","12","0","-1","1782","0","21384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281133","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108208","1483108208","1483110006","1483108208","1","12","0","-1","1798","0","21576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281135","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108212","1483108212","1483109709","1483108212","1","12","0","-1","1497","0","17964","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281139","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108230","1483108230","1483109682","1483108230","1","12","0","-1","1452","0","17424","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281146","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108285","1483108285","1483109945","1483108285","1","12","0","-1","1660","0","19920","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281148","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108294","1483108294","1483109826","1483108294","1","12","0","-1","1532","0","18384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281150","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108301","1483108301","1483109992","1483108301","1","12","0","-1","1691","0","20292","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281152","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108308","1483108308","1483109798","1483108308","1","12","0","-1","1490","0","17880","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281154","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108321","1483108321","1483109551","1483108321","1","12","0","-1","1230","0","14760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281158","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108369","1483108369","1483109868","1483108369","1","12","0","-1","1499","0","17988","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281164","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108407","1483108407","1483110058","1483108407","1","12","0","-1","1651","0","19812","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281168","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108463","1483108463","1483109784","1483108463","1","12","0","-1","1321","0","15852","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281173","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108500","1483108500","1483109804","1483108500","1","12","0","-1","1304","0","15648","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281187","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108620","1483108620","1483110003","1483108620","1","12","0","-1","1383","0","16596","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281192","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108650","1483108650","1483110348","1483108650","1","12","0","-1","1698","0","20376","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281224","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108863","1483108863","1483110398","1483108863","1","12","0","-1","1535","0","18420","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281227","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108895","1483108895","1483110415","1483108895","1","12","0","-1","1520","0","18240","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281231","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483108904","1483108904","1483110521","1483108904","1","12","0","-1","1617","0","19404","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281238","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109016","1483109016","1483110647","1483109016","1","12","0","-1","1631","0","19572","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281288","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109546","1483109546","1483111200","1483109546","1","12","0","-1","1654","0","19848","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281346","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109952","1483109952","1483111401","1483109952","1","12","0","-1","1449","0","17388","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281354","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483109997","1483109997","1483111795","1483109997","1","12","0","-1","1798","0","21576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281362","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110057","1483110057","1483111673","1483110057","1","12","0","-1","1616","0","19392","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281364","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110062","1483110062","1483111757","1483110062","1","12","0","-1","1695","0","20340","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281400","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110526","1483110526","1483112314","1483110526","1","12","0","-1","1788","0","21456","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281403","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110564","1483110564","1483112085","1483110564","1","12","0","-1","1521","0","18252","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281409","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110656","1483110656","1483112230","1483110656","1","12","0","-1","1574","0","18888","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281417","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110710","1483110710","1483112462","1483110710","1","12","0","-1","1752","0","21024","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281423","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110743","1483110743","1483112357","1483110743","1","12","0","-1","1614","0","19368","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281426","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110752","1483110752","1483112544","1483110752","1","12","0","-1","1792","0","21504","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281431","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110793","1483110793","1483112347","1483110793","1","12","0","-1","1554","0","18648","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281433","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110817","1483110817","1483112410","1483110817","1","12","0","-1","1593","0","19116","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281435","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110823","1483110823","1483112519","1483110823","1","12","0","-1","1696","0","20352","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281438","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483110836","1483110836","1483112536","1483110836","1","12","0","-1","1700","0","20400","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281451","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111086","1483111086","1483112733","1483111086","1","12","0","-1","1647","0","19764","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281456","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111146","1483111146","1483112562","1483111146","1","12","0","-1","1416","0","16992","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281472","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111288","1483111288","1483113049","1483111288","1","12","0","-1","1761","0","21132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281478","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111387","1483111387","1483113167","1483111387","1","12","0","-1","1780","0","21360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281480","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111396","1483111396","1483112968","1483111396","1","12","0","-1","1572","0","18864","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281482","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111414","1483111414","1483113096","1483111414","1","12","0","-1","1682","0","20184","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281489","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111577","1483111577","1483113183","1483111577","1","12","0","-1","1606","0","19272","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281501","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111687","1483111687","1483113421","1483111687","1","12","0","-1","1734","0","20808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281506","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111713","1483111713","1483113436","1483111713","1","12","0","-1","1723","0","20676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281514","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111756","1483111756","1483113266","1483111756","1","12","0","-1","1510","0","18120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281524","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111799","1483111799","1483113443","1483111799","1","12","0","-1","1644","0","19728","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281538","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483111923","1483111923","1483113615","1483111923","1","12","0","-1","1692","0","20304","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281548","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112005","1483112005","1483113522","1483112005","1","12","0","-1","1517","0","18204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281550","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112012","1483112012","1483113773","1483112012","1","12","0","-1","1761","0","21132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281599","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112372","1483112372","1483114090","1483112372","1","12","0","-1","1718","0","20616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281602","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112415","1483112415","1483114203","1483112415","1","12","0","-1","1788","0","21456","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281620","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112549","1483112549","1483114110","1483112549","1","12","0","-1","1561","0","18732","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281622","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112566","1483112566","1483114360","1483112566","1","12","0","-1","1794","0","21528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281659","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483112872","1483112872","1483114668","1483112872","1","12","0","-1","1796","0","21552","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281668","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113072","1483113072","1483114638","1483113072","1","12","0","-1","1566","0","18792","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281692","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113411","1483113411","1483115011","1483113411","1","12","0","-1","1600","0","19200","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281696","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113429","1483113429","1483115210","1483113429","1","12","0","-1","1781","0","21372","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281714","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113566","1483113566","1483115338","1483113566","1","12","0","-1","1772","0","21264","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281717","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113582","1483113582","1483115327","1483113582","1","12","0","-1","1745","0","20940","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281728","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113665","1483113665","1483115040","1483113665","1","12","0","-1","1375","0","16500","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281730","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113670","1483113670","1483115279","1483113670","1","12","0","-1","1609","0","19308","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281732","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113681","1483113681","1483115277","1483113681","1","12","0","-1","1596","0","19152","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281736","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113689","1483113689","1483115248","1483113689","1","12","0","-1","1559","0","18708","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281740","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113698","1483113698","1483115343","1483113698","1","12","0","-1","1645","0","19740","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281748","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113776","1483113776","1483115267","1483113776","1","12","0","-1","1491","0","17892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281750","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113783","1483113783","1483115050","1483113783","1","12","0","-1","1267","0","15204","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281752","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113816","1483113816","1483115562","1483113816","1","12","0","-1","1746","0","20952","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281754","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113822","1483113822","1483115480","1483113822","1","12","0","-1","1658","0","19896","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281760","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483113867","1483113867","1483115606","1483113867","1","12","0","-1","1739","0","20868","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281777","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114065","1483114065","1483115842","1483114065","1","12","0","-1","1777","0","21324","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281791","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114126","1483114126","1483115645","1483114126","1","12","0","-1","1519","0","18228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281794","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114206","1483114206","1483115463","1483114206","1","12","0","-1","1257","0","15084","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281806","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114289","1483114289","1483116031","1483114289","1","12","0","-1","1742","0","20904","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281812","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114368","1483114368","1483115896","1483114368","1","12","0","-1","1528","0","18336","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281824","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114434","1483114434","1483116121","1483114434","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281826","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114438","1483114438","1483115972","1483114438","1","12","0","-1","1534","0","18408","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281844","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114636","1483114636","1483116229","1483114636","1","12","0","-1","1593","0","19116","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281861","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114721","1483114721","1483116487","1483114721","1","12","0","-1","1766","0","21192","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281875","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483114939","1483114939","1483116641","1483114939","1","12","0","-1","1702","0","20424","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281883","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115045","1483115045","1483116764","1483115045","1","12","0","-1","1719","0","20628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281885","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115053","1483115053","1483116641","1483115053","1","12","0","-1","1588","0","19056","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281887","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115062","1483115062","1483116537","1483115062","1","12","0","-1","1475","0","17700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281890","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115090","1483115090","1483116641","1483115090","1","12","0","-1","1551","0","18612","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281892","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115094","1483115094","1483116811","1483115094","1","12","0","-1","1717","0","20604","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281895","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115132","1483115132","1483116616","1483115132","1","12","0","-1","1484","0","17808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281899","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115144","1483115144","1483116857","1483115144","1","12","0","-1","1713","0","20556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281916","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115280","1483115280","1483116864","1483115280","1","12","0","-1","1584","0","19008","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281927","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115347","1483115347","1483116766","1483115347","1","12","0","-1","1419","0","17028","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281930","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115399","1483115399","1483116876","1483115399","1","12","0","-1","1477","0","17724","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281934","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115417","1483115417","1483116907","1483115417","1","12","0","-1","1490","0","17880","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281941","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115520","1483115520","1483117081","1483115520","1","12","0","-1","1561","0","18732","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281943","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115529","1483115529","1483116907","1483115529","1","12","0","-1","1378","0","16536","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281947","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115538","1483115538","1483117105","1483115538","1","12","0","-1","1567","0","18804","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281949","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115567","1483115567","1483116907","1483115567","1","12","0","-1","1340","0","16080","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281953","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115599","1483115599","1483117025","1483115599","1","12","0","-1","1426","0","17112","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281956","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115626","1483115626","1483116953","1483115626","1","12","0","-1","1327","0","15924","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281958","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115635","1483115635","1483117219","1483115635","1","12","0","-1","1584","0","19008","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281960","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115646","1483115646","1483117319","1483115646","1","12","0","-1","1673","0","20076","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281962","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115651","1483115651","1483117353","1483115651","1","12","0","-1","1702","0","20424","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281964","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115655","1483115655","1483117025","1483115655","1","12","0","-1","1370","0","16440","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281968","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115675","1483115675","1483117025","1483115675","1","12","0","-1","1350","0","16200","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281972","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115711","1483115711","1483117025","1483115711","1","12","0","-1","1314","0","15768","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281982","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115815","1483115815","1483117025","1483115815","1","12","0","-1","1210","0","14520","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281992","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483115997","1483115997","1483117262","1483115997","1","12","0","-1","1265","0","15180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2281996","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116006","1483116006","1483117025","1483116006","1","12","0","-1","1019","0","12228","0","0:0","PREEMPTED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282018","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116087","1483116087","1483117807","1483116087","1","12","0","-1","1720","0","20640","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282024","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116131","1483116131","1483117895","1483116131","1","12","0","-1","1764","0","21168","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282036","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116176","1483116176","1483117942","1483116176","1","12","0","-1","1766","0","21192","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282039","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116210","1483116210","1483117839","1483116210","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282043","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116228","1483116228","1483117874","1483116228","1","12","0","-1","1646","0","19752","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282045","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116232","1483116232","1483118015","1483116232","1","12","0","-1","1783","0","21396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282057","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116328","1483116328","1483118121","1483116328","1","12","0","-1","1793","0","21516","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282062","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116346","1483116346","1483117825","1483116346","1","12","0","-1","1479","0","17748","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282075","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116432","1483116432","1483117905","1483116432","1","12","0","-1","1473","0","17676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282088","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116514","1483116514","1483117841","1483116514","1","12","0","-1","1327","0","15924","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282101","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116633","1483116633","1483118163","1483116633","1","12","0","-1","1530","0","18360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282112","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116697","1483116697","1483118301","1483116697","1","12","0","-1","1604","0","19248","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282125","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116815","1483116815","1483118427","1483116815","1","12","0","-1","1612","0","19344","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282161","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483116998","1483116998","1483118246","1483116998","1","12","0","-1","1248","0","14976","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282182","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117107","1483117107","1483118904","1483117107","1","12","0","-1","1797","0","21564","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282197","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117266","1483117266","1483118706","1483117266","1","12","0","-1","1440","0","17280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282202","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117323","1483117323","1483118711","1483117323","1","12","0","-1","1388","0","16656","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282205","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117356","1483117356","1483118980","1483117356","1","12","0","-1","1624","0","19488","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282227","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117695","1483117695","1483119190","1483117695","1","12","0","-1","1495","0","17940","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282234","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117811","1483117811","1483119577","1483117811","1","12","0","-1","1766","0","21192","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282236","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117826","1483117826","1483119299","1483117826","1","12","0","-1","1473","0","17676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282238","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117830","1483117830","1483119606","1483117830","1","12","0","-1","1776","0","21312","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282243","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117849","1483117849","1483119437","1483117849","1","12","0","-1","1588","0","19056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282251","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117903","1483117903","1483119261","1483117903","1","12","0","-1","1358","0","16296","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282253","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117910","1483117910","1483119523","1483117910","1","12","0","-1","1613","0","19356","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282256","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117941","1483117941","1483119611","1483117941","1","12","0","-1","1670","0","20040","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282261","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117966","1483117966","1483119446","1483117966","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282263","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483117978","1483117978","1483119758","1483117978","1","12","0","-1","1780","0","21360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282270","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118019","1483118019","1483119679","1483118019","1","12","0","-1","1660","0","19920","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282295","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118143","1483118143","1483119913","1483118143","1","12","0","-1","1770","0","21240","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282324","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118285","1483118285","1483120021","1483118285","1","12","0","-1","1736","0","20832","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282331","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118310","1483118310","1483119776","1483118310","1","12","0","-1","1466","0","17592","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282337","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118367","1483118367","1483120152","1483118367","1","12","0","-1","1785","0","21420","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282344","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118418","1483118418","1483119853","1483118418","1","12","0","-1","1435","0","17220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282346","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118431","1483118431","1483120064","1483118431","1","12","0","-1","1633","0","19596","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282396","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118910","1483118910","1483120628","1483118910","1","12","0","-1","1718","0","20616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282405","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118945","1483118945","1483120651","1483118945","1","12","0","-1","1706","0","20472","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282409","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483118974","1483118974","1483120432","1483118974","1","12","0","-1","1458","0","17496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282470","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119569","1483119569","1483121223","1483119569","1","12","0","-1","1654","0","19848","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282479","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119611","1483119611","1483121212","1483119611","1","12","0","-1","1601","0","19212","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282481","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119616","1483119616","1483121141","1483119616","1","12","0","-1","1525","0","18300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282486","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119629","1483119629","1483120924","1483119629","1","12","0","-1","1295","0","15540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282490","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119680","1483119680","1483120972","1483119680","1","12","0","-1","1292","0","15504","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282496","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119712","1483119712","1483121446","1483119712","1","12","0","-1","1734","0","20808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282498","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119716","1483119716","1483121309","1483119716","1","12","0","-1","1593","0","19116","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282501","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119759","1483119759","1483121217","1483119759","1","12","0","-1","1458","0","17496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282503","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119763","1483119763","1483121399","1483119763","1","12","0","-1","1636","0","19632","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282506","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119780","1483119780","1483121371","1483119780","1","12","0","-1","1591","0","19092","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282508","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119787","1483119787","1483121172","1483119787","1","12","0","-1","1385","0","16620","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282518","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119866","1483119866","1483121279","1483119866","1","12","0","-1","1413","0","16956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282531","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483119917","1483119917","1483121401","1483119917","1","12","0","-1","1484","0","17808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282542","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120005","1483120005","1483121634","1483120005","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282544","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120025","1483120025","1483121611","1483120025","1","12","0","-1","1586","0","19032","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282548","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120068","1483120068","1483121850","1483120068","1","12","0","-1","1782","0","21384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282553","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120122","1483120122","1483121575","1483120122","1","12","0","-1","1453","0","17436","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282557","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120178","1483120178","1483121965","1483120178","1","12","0","-1","1787","0","21444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282580","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120343","1483120343","1483122118","1483120343","1","12","0","-1","1775","0","21300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282587","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120414","1483120414","1483121889","1483120414","1","12","0","-1","1475","0","17700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282597","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120553","1483120553","1483122288","1483120553","1","12","0","-1","1735","0","20820","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282641","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483120953","1483120953","1483122629","1483120953","1","12","0","-1","1676","0","20112","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282675","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121176","1483121176","1483122971","1483121176","1","12","0","-1","1795","0","21540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282707","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121373","1483121373","1483123002","1483121373","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282711","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121404","1483121404","1483123127","1483121404","1","12","0","-1","1723","0","20676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282717","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121429","1483121429","1483123133","1483121429","1","12","0","-1","1704","0","20448","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282721","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121450","1483121450","1483123082","1483121450","1","12","0","-1","1632","0","19584","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282725","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121462","1483121462","1483122827","1483121462","1","12","0","-1","1365","0","16380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282737","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121592","1483121592","1483123267","1483121592","1","12","0","-1","1675","0","20100","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282761","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483121892","1483121892","1483123598","1483121892","1","12","0","-1","1706","0","20472","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282787","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122232","1483122232","1483123953","1483122232","1","12","0","-1","1721","0","20652","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282833","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122632","1483122632","1483124318","1483122632","1","12","0","-1","1686","0","20232","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282843","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122686","1483122686","1483124427","1483122686","1","12","0","-1","1741","0","20892","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282862","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122887","1483122887","1483124612","1483122887","1","12","0","-1","1725","0","20700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282869","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483122942","1483122942","1483124601","1483122942","1","12","0","-1","1659","0","19908","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282900","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123209","1483123209","1483124960","1483123209","1","12","0","-1","1751","0","21012","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282917","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123313","1483123313","1483124891","1483123313","1","12","0","-1","1578","0","18936","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282926","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123374","1483123374","1483124708","1483123374","1","12","0","-1","1334","0","16008","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282930","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123383","1483123383","1483124816","1483123383","1","12","0","-1","1433","0","17196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282932","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123387","1483123387","1483125023","1483123387","1","12","0","-1","1636","0","19632","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282934","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123392","1483123392","1483125117","1483123392","1","12","0","-1","1725","0","20700","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282936","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123396","1483123396","1483125156","1483123396","1","12","0","-1","1760","0","21120","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282940","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123436","1483123436","1483125191","1483123436","1","12","0","-1","1755","0","21060","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282943","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123473","1483123473","1483125270","1483123473","1","12","0","-1","1797","0","21564","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282965","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123710","1483123710","1483125429","1483123710","1","12","0","-1","1719","0","20628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2282980","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483123957","1483123957","1483125422","1483123957","1","12","0","-1","1465","0","17580","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283004","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124329","1483124329","1483126074","1483124329","1","12","0","-1","1745","0","20940","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283006","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124340","1483124340","1483125891","1483124340","1","12","0","-1","1551","0","18612","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283013","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124408","1483124408","1483126166","1483124408","1","12","0","-1","1758","0","21096","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283026","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124576","1483124576","1483126053","1483124576","1","12","0","-1","1477","0","17724","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283028","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124605","1483124605","1483126261","1483124605","1","12","0","-1","1656","0","19872","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283035","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124640","1483124640","1483126300","1483124640","1","12","0","-1","1660","0","19920","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283041","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124704","1483124704","1483126138","1483124704","1","12","0","-1","1434","0","17208","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283045","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124713","1483124713","1483126182","1483124713","1","12","0","-1","1469","0","17628","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283047","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124718","1483124718","1483126405","1483124718","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283051","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124738","1483124738","1483126326","1483124738","1","12","0","-1","1588","0","19056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283069","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483124885","1483124885","1483126410","1483124885","1","12","0","-1","1525","0","18300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283091","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125027","1483125027","1483126419","1483125027","1","12","0","-1","1392","0","16704","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283095","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125111","1483125111","1483126725","1483125111","1","12","0","-1","1614","0","19368","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283097","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125120","1483125120","1483126389","1483125120","1","12","0","-1","1269","0","15228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283099","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125125","1483125125","1483126778","1483125125","1","12","0","-1","1653","0","19836","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283101","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125150","1483125150","1483126720","1483125150","1","12","0","-1","1570","0","18840","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283104","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125159","1483125159","1483126614","1483125159","1","12","0","-1","1455","0","17460","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283110","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125196","1483125196","1483126903","1483125196","1","12","0","-1","1707","0","20484","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283114","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125210","1483125210","1483126796","1483125210","1","12","0","-1","1586","0","19032","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283116","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125230","1483125230","1483126814","1483125230","1","12","0","-1","1584","0","19008","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283118","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125235","1483125235","1483126968","1483125235","1","12","0","-1","1733","0","20796","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283120","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125242","1483125242","1483126822","1483125242","1","12","0","-1","1580","0","18960","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283122","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125264","1483125264","1483126736","1483125264","1","12","0","-1","1472","0","17664","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283124","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125269","1483125269","1483126959","1483125269","1","12","0","-1","1690","0","20280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283127","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125278","1483125278","1483126468","1483125278","1","12","0","-1","1190","0","14280","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283129","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125284","1483125284","1483126855","1483125284","1","12","0","-1","1571","0","18852","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283131","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125321","1483125321","1483126875","1483125321","1","12","0","-1","1554","0","18648","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283137","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125366","1483125366","1483126878","1483125366","1","12","0","-1","1512","0","18144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283151","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125473","1483125473","1483126800","1483125473","1","12","0","-1","1327","0","15924","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283155","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125525","1483125525","1483127007","1483125525","1","12","0","-1","1482","0","17784","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283167","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125851","1483125851","1483127057","1483125851","1","12","0","-1","1206","0","14472","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283169","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125858","1483125858","1483127466","1483125858","1","12","0","-1","1608","0","19296","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283171","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125873","1483125873","1483127432","1483125873","1","12","0","-1","1559","0","18708","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283174","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125896","1483125896","1483127240","1483125896","1","12","0","-1","1344","0","16128","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283176","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125925","1483125925","1483127341","1483125925","1","12","0","-1","1416","0","16992","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283178","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125932","1483125932","1483127512","1483125932","1","12","0","-1","1580","0","18960","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283180","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125939","1483125939","1483127396","1483125939","1","12","0","-1","1457","0","17484","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283182","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483125997","1483125997","1483127330","1483125997","1","12","0","-1","1333","0","15996","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283184","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126022","1483126022","1483127193","1483126022","1","12","0","-1","1171","0","14052","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283192","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126077","1483126077","1483127667","1483126077","1","12","0","-1","1590","0","19080","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283208","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126185","1483126185","1483127872","1483126185","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283215","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126251","1483126251","1483127860","1483126251","1","12","0","-1","1609","0","19308","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283219","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126271","1483126271","1483127989","1483126271","1","12","0","-1","1718","0","20616","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283221","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126282","1483126282","1483127745","1483126282","1","12","0","-1","1463","0","17556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283246","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126470","1483126470","1483128097","1483126470","1","12","0","-1","1627","0","19524","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283255","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126565","1483126565","1483128194","1483126565","1","12","0","-1","1629","0","19548","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283265","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126625","1483126625","1483128387","1483126625","1","12","0","-1","1762","0","21144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283314","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483126956","1483126956","1483128607","1483126956","1","12","0","-1","1651","0","19812","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283365","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127350","1483127350","1483129129","1483127350","1","12","0","-1","1779","0","21348","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283394","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483127672","1483127672","1483129145","1483127672","1","12","0","-1","1473","0","17676","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283449","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128478","1483128478","1483130141","1483128478","1","12","0","-1","1663","0","19956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283454","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128501","1483128501","1483130287","1483128501","1","12","0","-1","1786","0","21432","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283460","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128528","1483128528","1483130222","1483128528","1","12","0","-1","1694","0","20328","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283486","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128743","1483128743","1483130425","1483128743","1","12","0","-1","1682","0","20184","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283496","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128807","1483128807","1483130515","1483128807","1","12","0","-1","1708","0","20496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283508","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128901","1483128901","1483130596","1483128901","1","12","0","-1","1695","0","20340","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283522","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483128969","1483128969","1483130675","1483128969","1","12","0","-1","1706","0","20472","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283549","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129245","1483129245","1483130928","1483129245","1","12","0","-1","1683","0","20196","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283561","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129403","1483129403","1483131046","1483129403","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283572","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129642","1483129642","1483131200","1483129642","1","12","0","-1","1558","0","18696","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283578","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129669","1483129669","1483131409","1483129669","1","12","0","-1","1740","0","20880","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283580","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483129684","1483129684","1483131358","1483129684","1","12","0","-1","1674","0","20088","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283613","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130097","1483130097","1483131727","1483130097","1","12","0","-1","1630","0","19560","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283617","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130106","1483130106","1483131683","1483130106","1","12","0","-1","1577","0","18924","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283635","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130315","1483130315","1483132105","1483130315","1","12","0","-1","1790","0","21480","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283673","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130599","1483130599","1483132223","1483130599","1","12","0","-1","1624","0","19488","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283677","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130608","1483130608","1483132170","1483130608","1","12","0","-1","1562","0","18744","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283691","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130700","1483130700","1483132044","1483130700","1","12","0","-1","1344","0","16128","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283703","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130796","1483130796","1483132336","1483130796","1","12","0","-1","1540","0","18480","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283712","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130907","1483130907","1483132399","1483130907","1","12","0","-1","1492","0","17904","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283714","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130929","1483130929","1483132529","1483130929","1","12","0","-1","1600","0","19200","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283717","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130965","1483130965","1483132471","1483130965","1","12","0","-1","1506","0","18072","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283719","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483130969","1483130969","1483132326","1483130969","1","12","0","-1","1357","0","16284","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283731","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131086","1483131086","1483132720","1483131086","1","12","0","-1","1634","0","19608","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283735","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131153","1483131153","1483132834","1483131153","1","12","0","-1","1681","0","20172","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283743","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131216","1483131216","1483132758","1483131216","1","12","0","-1","1542","0","18504","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283750","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131263","1483131263","1483132663","1483131263","1","12","0","-1","1400","0","16800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283752","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131270","1483131270","1483132788","1483131270","1","12","0","-1","1518","0","18216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283754","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131274","1483131274","1483132889","1483131274","1","12","0","-1","1615","0","19380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283759","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131288","1483131288","1483132835","1483131288","1","12","0","-1","1547","0","18564","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283762","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131311","1483131311","1483132805","1483131311","1","12","0","-1","1494","0","17928","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283764","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131331","1483131331","1483132701","1483131331","1","12","0","-1","1370","0","16440","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283770","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131415","1483131415","1483133195","1483131415","1","12","0","-1","1780","0","21360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283774","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131473","1483131473","1483133152","1483131473","1","12","0","-1","1679","0","20148","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283776","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131486","1483131486","1483133156","1483131486","1","12","0","-1","1670","0","20040","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283798","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131848","1483131848","1483133194","1483131848","1","12","0","-1","1346","0","16152","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283802","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131957","1483131957","1483133600","1483131957","1","12","0","-1","1643","0","19716","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283806","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483131986","1483131986","1483133513","1483131986","1","12","0","-1","1527","0","18324","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283829","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132109","1483132109","1483133891","1483132109","1","12","0","-1","1782","0","21384","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283860","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132429","1483132429","1483134098","1483132429","1","12","0","-1","1669","0","20028","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283867","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132476","1483132476","1483133987","1483132476","1","12","0","-1","1511","0","18132","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283878","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132534","1483132534","1483134026","1483132534","1","12","0","-1","1492","0","17904","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283882","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132555","1483132555","1483133968","1483132555","1","12","0","-1","1413","0","16956","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283890","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132667","1483132667","1483134205","1483132667","1","12","0","-1","1538","0","18456","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283892","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132688","1483132688","1483134343","1483132688","1","12","0","-1","1655","0","19860","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283902","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132716","1483132716","1483134389","1483132716","1","12","0","-1","1673","0","20076","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283904","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132725","1483132725","1483134206","1483132725","1","12","0","-1","1481","0","17772","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283908","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132742","1483132742","1483134205","1483132742","1","12","0","-1","1463","0","17556","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283912","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132763","1483132763","1483134259","1483132763","1","12","0","-1","1496","0","17952","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283915","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483132793","1483132793","1483134190","1483132793","1","12","0","-1","1397","0","16764","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283941","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133159","1483133159","1483134679","1483133159","1","12","0","-1","1520","0","18240","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283947","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133198","1483133198","1483134555","1483133198","1","12","0","-1","1357","0","16284","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283949","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133202","1483133202","1483134351","1483133202","1","12","0","-1","1149","0","13788","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283951","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133206","1483133206","1483134637","1483133206","1","12","0","-1","1431","0","17172","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283956","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133238","1483133238","1483134563","1483133238","1","12","0","-1","1325","0","15900","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283964","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133355","1483133355","1483134481","1483133355","1","12","0","-1","1126","0","13512","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283968","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133364","1483133364","1483134684","1483133364","1","12","0","-1","1320","0","15840","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283975","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133462","1483133462","1483135149","1483133462","1","12","0","-1","1687","0","20244","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2283999","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133758","1483133758","1483135484","1483133758","1","12","0","-1","1726","0","20712","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284014","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133944","1483133944","1483135463","1483133944","1","12","0","-1","1519","0","18228","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284016","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483133949","1483133949","1483135736","1483133949","1","12","0","-1","1787","0","21444","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284033","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134030","1483134030","1483135826","1483134030","1","12","0","-1","1796","0","21552","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284087","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134410","1483134410","1483136124","1483134410","1","12","0","-1","1714","0","20568","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284095","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134484","1483134484","1483136060","1483134484","1","12","0","-1","1576","0","18912","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284101","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134558","1483134558","1483136127","1483134558","1","12","0","-1","1569","0","18828","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284105","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134571","1483134571","1483136221","1483134571","1","12","0","-1","1650","0","19800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284132","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134777","1483134777","1483136565","1483134777","1","12","0","-1","1788","0","21456","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284134","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134802","1483134802","1483136495","1483134802","1","12","0","-1","1693","0","20316","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284141","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483134887","1483134887","1483136483","1483134887","1","12","0","-1","1596","0","19152","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284203","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135744","1483135744","1483137452","1483135744","1","12","0","-1","1708","0","20496","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284208","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135817","1483135817","1483137572","1483135817","1","12","0","-1","1755","0","21060","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284215","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483135902","1483135902","1483137478","1483135902","1","12","0","-1","1576","0","18912","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284261","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483136211","1483136211","1483137947","1483136211","1","12","0","-1","1736","0","20832","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284280","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483136370","1483136370","1483137799","1483136370","1","12","0","-1","1429","0","17148","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284282","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483136388","1483136388","1483137959","1483136388","1","12","0","-1","1571","0","18852","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284295","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483136498","1483136498","1483138048","1483136498","1","12","0","-1","1550","0","18600","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284345","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137049","1483137049","1483138706","1483137049","1","12","0","-1","1657","0","19884","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284347","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137056","1483137056","1483138736","1483137056","1","12","0","-1","1680","0","20160","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284351","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137072","1483137072","1483138847","1483137072","1","12","0","-1","1775","0","21300","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284353","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137097","1483137097","1483138685","1483137097","1","12","0","-1","1588","0","19056","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284378","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137346","1483137346","1483138830","1483137346","1","12","0","-1","1484","0","17808","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284386","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137483","1483137483","1483138777","1483137483","1","12","0","-1","1294","0","15528","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284393","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137578","1483137578","1483139012","1483137578","1","12","0","-1","1434","0","17208","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284407","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137720","1483137720","1483139040","1483137720","1","12","0","-1","1320","0","15840","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284412","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137797","1483137797","1483139454","1483137797","1","12","0","-1","1657","0","19884","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284416","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137813","1483137813","1483139452","1483137813","1","12","0","-1","1639","0","19668","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284428","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483137959","1483137959","1483139609","1483137959","1","12","0","-1","1650","0","19800","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284444","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138070","1483138070","1483139464","1483138070","1","12","0","-1","1394","0","16728","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284455","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138174","1483138174","1483139673","1483138174","1","12","0","-1","1499","0","17988","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284473","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138325","1483138325","1483139870","1483138325","1","12","0","-1","1545","0","18540","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284477","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138378","1483138378","1483140113","1483138378","1","12","0","-1","1735","0","20820","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284479","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138411","1483138411","1483139970","1483138411","1","12","0","-1","1559","0","18708","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284499","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138559","1483138559","1483140184","1483138559","1","12","0","-1","1625","0","19500","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284519","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138691","1483138691","1483140191","1483138691","1","12","0","-1","1500","0","18000","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284531","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138775","1483138775","1483140539","1483138775","1","12","0","-1","1764","0","21168","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284533","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138779","1483138779","1483140236","1483138779","1","12","0","-1","1457","0","17484","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284552","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483138889","1483138889","1483140484","1483138889","1","12","0","-1","1595","0","19140","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284563","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139044","1483139044","1483140410","1483139044","1","12","0","-1","1366","0","16392","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284581","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139253","1483139253","1483140706","1483139253","1","12","0","-1","1453","0","17436","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284587","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139313","1483139313","1483140790","1483139313","1","12","0","-1","1477","0","17724","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284590","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139369","1483139369","1483140917","1483139369","1","12","0","-1","1548","0","18576","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284594","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139420","1483139420","1483140855","1483139420","1","12","0","-1","1435","0","17220","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284601","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139468","1483139468","1483141004","1483139468","1","12","0","-1","1536","0","18432","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284603","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139473","1483139473","1483140853","1483139473","1","12","0","-1","1380","0","16560","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284606","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139516","1483139516","1483140881","1483139516","1","12","0","-1","1365","0","16380","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284608","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139532","1483139532","1483141146","1483139532","1","12","0","-1","1614","0","19368","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284610","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139538","1483139538","1483141303","1483139538","1","12","0","-1","1765","0","21180","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284612","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139543","1483139543","1483140985","1483139543","1","12","0","-1","1442","0","17304","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284614","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139570","1483139570","1483141082","1483139570","1","12","0","-1","1512","0","18144","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284638","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139949","1483139949","1483141671","1483139949","1","12","0","-1","1722","0","20664","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284642","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483139976","1483139976","1483141739","1483139976","1","12","0","-1","1763","0","21156","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284729","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140598","1483140598","1483142378","1483140598","1","12","0","-1","1780","0","21360","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284739","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140695","1483140695","1483142175","1483140695","1","12","0","-1","1480","0","17760","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284743","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140713","1483140713","1483142270","1483140713","1","12","0","-1","1557","0","18684","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284746","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140746","1483140746","1483142264","1483140746","1","12","0","-1","1518","0","18216","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284752","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483140806","1483140806","1483142339","1483140806","1","12","0","-1","1533","0","18396","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284787","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141050","1483141050","1483142743","1483141050","1","12","0","-1","1693","0","20316","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284791","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141063","1483141063","1483142613","1483141063","1","12","0","-1","1550","0","18600","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284794","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141086","1483141086","1483142778","1483141086","1","12","0","-1","1692","0","20304","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284815","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141399","1483141399","1483142859","1483141399","1","12","0","-1","1460","0","17520","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284820","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141433","1483141433","1483142861","1483141433","1","12","0","-1","1428","0","17136","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284841","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483141813","1483141813","1483143480","1483141813","1","12","0","-1","1667","0","20004","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284849","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483142032","1483142032","1483143678","1483142032","1","12","0","-1","1646","0","19752","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284861","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483142150","1483142150","1483143931","1483142150","1","12","0","-1","1781","0","21372","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["2284869","Frearson","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483142222","1483142222","1483143981","1483142222","1","12","0","-1","1759","0","21108","0","0:0","COMPLETED","12","2147486648Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6110882","Robertson","UTC","","Stint, Little","Screwdriver","green-grape","1483121066","1483121066","1483121375","1483121066","1","12","0","-1","309","0","3708","0","0:0","CANCELLED by 284980","12","2147486448Mn","3600","potbrood","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"],["6111541","Robertson","UTC","","Bunting, Reed","Screwdriver","green-grape","1483129553","1483129553","1483131190","1483129553","1","12","0","-1","1637","0","19644","0","0:0","COMPLETED","12","2147486448Mn","3600","potbrood","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6111777","Robertson","UTC","","Warbler, Sardinian","Screwdriver","green-grape","1483130935","1483130935","1483132386","1483130935","1","12","0","-1","1451","0","17412","0","0:0","COMPLETED","12","2147486448Mn","3600","potbrood","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6108322","Robertson","UTC","","Partridge, Red-legged","Screwdriver","green-grape","1483056653","1483056653","1483056887","1483056653","1","16","0","-1","234","0","3744","0","0:0","COMPLETED","16","2147486448Mn","3600","potbrood","Social, Behavioral, and Economic Sciences","Social and Economic Science","Law and Social Sciences"],["6108327","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","green-grape","1483057009","1483057009","1483057050","1483057009","2","24","0","-1","41","0","984","0","0:0","CANCELLED by 333296","24","2147486448Mn","3600","potbrood","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["181610","Phillips","UTC","","Swift, Alpine","Screwdriver","coconut-cream","1483133995","1483133995","1483134352","1483133995","4","32","0","-1","357","0","11424","0","0:0","COMPLETED","32","7000Mn","37800","crumpet","Mathematical and Physical Sciences","Chemistry","Organic and Macromolecular Chemistry"],["181778","Phillips","UTC","","Swift, Alpine","Screwdriver","coconut-cream","1483135368","1483135368","1483135473","1483135368","8","64","0","-1","105","0","6720","0","0:0","COMPLETED","64","7000Mn","37800","crumpet","Mathematical and Physical Sciences","Chemistry","Organic and Macromolecular Chemistry"],["6110473","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118705","1483118707","1483118934","1483118705","1","1","0","-1","227","2","227","0","0:0","CANCELLED by 425535","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6110475","Robertson","UTC","","Harrier, Hen","Screwdriver","curry","1483118717","1483118724","1483119004","1483118717","1","1","0","-1","280","7","280","0","0:0","CANCELLED by 425535","1","48000Mn","172800","white","Computer and Information Science and Engineering","Computer and Computation Research","Computer and Computation Theory"],["6108787","Robertson","UTC","","Moorhen","Screwdriver","curry","1483074101","1483074118","1483074878","1483074101","1","1","0","-1","760","17","760","0","0:0","COMPLETED","1","2147486448Mn","19800","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["1009174","Posidriv","UTC","","Sparrow, Savannah","Screwdriver","banana-cream","1483121514","1483121536","1483121627","1483121514","1","1","0","-1","91","22","91","0","0:0","COMPLETED","1","40000Mn","86400","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"],["1004599","Posidriv","UTC","","Sparrow, Savannah","Screwdriver","bavarian-cream","1483060706","1483060708","1483060780","1483060706","1","1","0","-1","72","2","72","0","0:0","COMPLETED","1","40000Mn","86400","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"],["6109629[4]","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","green-grape","1483109925","1483109926","1483111176","1483109926","1","1","0","-1","1250","1","1250","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Biological Sciences","Molecular Biosciences","Cell Biology"],["6109629[1]","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","green-grape","1483109925","1483109926","1483110239","1483109926","1","1","0","-1","313","1","313","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Biological Sciences","Molecular Biosciences","Cell Biology"],["6109629[2]","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","green-grape","1483109925","1483109926","1483110554","1483109926","1","1","0","-1","628","1","628","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Biological Sciences","Molecular Biosciences","Cell Biology"],["6109629[3]","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","green-grape","1483109925","1483109926","1483110865","1483109926","1","1","0","-1","939","1","939","0","0:0","COMPLETED","1","2147486448Mn","3600","potbrood","Biological Sciences","Molecular Biosciences","Cell Biology"],["6109116","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483095768","1483095789","1483095843","1483095768","1","1","0","-1","54","21","54","0","0:0","COMPLETED","1","2000Mn","18000","white","Geosciences","Polar Programs","Polar Meteorology"],["6110898[19]","Robertson","UTC","","Grey, Southern","Screwdriver","curry","1483121756","1483121757","1483123058","1483121756","1","1","0","-1","1301","1","1301","0","0:0","COMPLETED","1","8000Mn","36000","white","Geosciences","Polar Programs","Polar Meteorology"],["6108553","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","green-grape","1483064928","1483064930","1483065048","1483064928","1","1","0","-1","118","2","118","0","0:0","COMPLETED","1","48000Mn","3600","potbrood","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["968141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055965","1483055966","1483056017","1483055965","1","8","0","-1","51","1","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968149","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483055991","1483055992","1483056023","1483055991","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968155","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056006","1483056007","1483056052","1483056006","1","8","0","-1","45","1","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056008","1483056010","1483056051","1483056008","1","8","0","-1","41","2","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968159","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056018","1483056019","1483056058","1483056018","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056025","1483056027","1483056077","1483056025","1","8","0","-1","50","2","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056052","1483056055","1483056089","1483056052","1","8","0","-1","34","3","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968173","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056059","1483056061","1483056098","1483056059","1","8","0","-1","37","2","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056071","1483056072","1483056108","1483056071","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056141","1483056142","1483056185","1483056141","1","8","0","-1","43","1","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056186","1483056187","1483056229","1483056186","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968226","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056230","1483056231","1483056284","1483056230","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056235","1483056238","1483056292","1483056235","1","8","0","-1","54","3","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056261","1483056262","1483056300","1483056261","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968246","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056288","1483056291","1483056331","1483056288","1","8","0","-1","40","3","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056293","1483056295","1483056365","1483056293","1","8","0","-1","70","2","560","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968250","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056300","1483056301","1483056364","1483056300","1","8","0","-1","63","1","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056309","1483056311","1483056345","1483056309","1","8","0","-1","34","2","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056312","1483056314","1483056385","1483056312","1","8","0","-1","71","2","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056345","1483056346","1483056379","1483056345","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056364","1483056365","1483056399","1483056364","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056366","1483056368","1483056410","1483056366","1","8","0","-1","42","2","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056410","1483056411","1483056441","1483056410","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056440","1483056441","1483056485","1483056440","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056485","1483056486","1483056536","1483056485","1","8","0","-1","50","1","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056537","1483056538","1483056592","1483056537","1","8","0","-1","54","1","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056539","1483056541","1483056578","1483056539","1","8","0","-1","37","2","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056542","1483056544","1483056589","1483056542","1","8","0","-1","45","2","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056555","1483056556","1483056609","1483056555","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056557","1483056559","1483056598","1483056557","1","8","0","-1","39","2","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056593","1483056595","1483056637","1483056593","1","8","0","-1","42","2","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056599","1483056600","1483056661","1483056599","1","8","0","-1","61","1","488","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056605","1483056606","1483056657","1483056605","1","8","0","-1","51","1","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056610","1483056611","1483056752","1483056610","1","8","0","-1","141","1","1128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056616","1483056617","1483056655","1483056616","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056619","1483056620","1483056693","1483056619","1","8","0","-1","73","1","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056637","1483056638","1483056683","1483056637","1","8","0","-1","45","1","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056662","1483056663","1483056707","1483056662","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056683","1483056684","1483056732","1483056683","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056724","1483056725","1483056764","1483056724","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056734","1483056735","1483056779","1483056734","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056735","1483056736","1483056776","1483056735","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056757","1483056759","1483056827","1483056757","1","8","0","-1","68","2","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968395","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056764","1483056765","1483056815","1483056764","1","8","0","-1","50","1","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056801","1483056802","1483056835","1483056801","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056836","1483056838","1483056874","1483056836","1","8","0","-1","36","2","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056875","1483056876","1483056907","1483056875","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056877","1483056878","1483056964","1483056877","1","8","0","-1","86","1","688","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056883","1483056884","1483056944","1483056883","1","8","0","-1","60","1","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056884","1483056887","1483056917","1483056884","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056914","1483056915","1483056972","1483056914","1","8","0","-1","57","1","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056918","1483056919","1483056977","1483056918","1","8","0","-1","58","1","464","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056956","1483056957","1483057004","1483056956","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056964","1483056965","1483057009","1483056964","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056968","1483056969","1483057001","1483056968","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968475","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056973","1483056974","1483057048","1483056973","1","8","0","-1","74","1","592","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056975","1483056977","1483057049","1483056975","1","8","0","-1","72","2","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483056978","1483056980","1483057127","1483056978","1","8","0","-1","147","2","1176","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057001","1483057002","1483057078","1483057001","1","8","0","-1","76","1","608","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057004","1483057005","1483057080","1483057004","1","8","0","-1","75","1","600","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057009","1483057010","1483057047","1483057009","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057049","1483057050","1483057081","1483057049","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057050","1483057051","1483057083","1483057050","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057077","1483057078","1483057117","1483057077","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057079","1483057081","1483057115","1483057079","1","8","0","-1","34","2","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057082","1483057084","1483057142","1483057082","1","8","0","-1","58","2","464","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968520","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057144","1483057146","1483057185","1483057144","1","8","0","-1","39","2","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057221","1483057222","1483057252","1483057221","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968556","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057283","1483057284","1483057333","1483057283","1","8","0","-1","49","1","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057298","1483057299","1483057345","1483057298","1","8","0","-1","46","1","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057299","1483057300","1483057348","1483057299","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057303","1483057304","1483057345","1483057303","1","8","0","-1","41","1","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057313","1483057315","1483057388","1483057313","1","8","0","-1","73","2","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057321","1483057322","1483057394","1483057321","1","8","0","-1","72","1","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057333","1483057335","1483057374","1483057333","1","8","0","-1","39","2","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057349","1483057350","1483057404","1483057349","1","8","0","-1","54","1","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057377","1483057378","1483057415","1483057377","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968598","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057395","1483057396","1483057438","1483057395","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057402","1483057403","1483057437","1483057402","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057404","1483057406","1483057439","1483057404","1","8","0","-1","33","2","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057439","1483057441","1483057512","1483057439","1","8","0","-1","71","2","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057443","1483057444","1483057515","1483057443","1","8","0","-1","71","1","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057462","1483057463","1483057513","1483057462","1","8","0","-1","50","1","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057476","1483057477","1483057554","1483057476","1","8","0","-1","77","1","616","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057504","1483057505","1483057581","1483057504","1","8","0","-1","76","1","608","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057513","1483057515","1483057575","1483057513","1","8","0","-1","60","2","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057597","1483057600","1483057655","1483057597","1","8","0","-1","55","3","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057631","1483057633","1483057686","1483057631","1","8","0","-1","53","2","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057648","1483057649","1483057704","1483057648","1","8","0","-1","55","1","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057655","1483057656","1483057719","1483057655","1","8","0","-1","63","1","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057658","1483057659","1483057841","1483057658","1","8","0","-1","182","1","1456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057667","1483057669","1483057730","1483057667","1","8","0","-1","61","2","488","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057683","1483057684","1483057776","1483057683","1","8","0","-1","92","1","736","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057686","1483057687","1483057735","1483057686","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057704","1483057705","1483057742","1483057704","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057719","1483057720","1483057767","1483057719","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057755","1483057756","1483057793","1483057755","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968688","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057766","1483057767","1483057799","1483057766","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968690","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057768","1483057770","1483057822","1483057768","1","8","0","-1","52","2","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057823","1483057825","1483057857","1483057823","1","8","0","-1","32","2","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057828","1483057829","1483057903","1483057828","1","8","0","-1","74","1","592","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057842","1483057843","1483057914","1483057842","1","8","0","-1","71","1","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057857","1483057860","1483057890","1483057857","1","8","0","-1","30","3","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057914","1483057915","1483057952","1483057914","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057929","1483057931","1483057970","1483057929","1","8","0","-1","39","2","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057938","1483057939","1483057970","1483057938","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057941","1483057942","1483057972","1483057941","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057951","1483057952","1483057988","1483057951","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057953","1483057955","1483058024","1483057953","1","8","0","-1","69","2","552","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483057970","1483057971","1483058028","1483057970","1","8","0","-1","57","1","456","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058020","1483058023","1483058057","1483058020","1","8","0","-1","34","3","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058069","1483058070","1483058191","1483058069","1","8","0","-1","121","1","968","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058081","1483058082","1483058115","1483058081","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058085","1483058086","1483058117","1483058085","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058093","1483058095","1483058133","1483058093","1","8","0","-1","38","2","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058094","1483058095","1483058129","1483058094","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058097","1483058098","1483058134","1483058097","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058130","1483058131","1483058166","1483058130","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968821","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058133","1483058134","1483058181","1483058133","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058166","1483058167","1483058208","1483058166","1","8","0","-1","41","1","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058178","1483058180","1483058217","1483058178","1","8","0","-1","37","2","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058181","1483058183","1483058218","1483058181","1","8","0","-1","35","2","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058192","1483058193","1483058246","1483058192","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058199","1483058201","1483058261","1483058199","1","8","0","-1","60","2","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058217","1483058218","1483058283","1483058217","1","8","0","-1","65","1","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058219","1483058220","1483058282","1483058219","1","8","0","-1","62","1","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058246","1483058247","1483058278","1483058246","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058284","1483058286","1483058334","1483058284","1","8","0","-1","48","2","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058337","1483058338","1483058385","1483058337","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058360","1483058361","1483058489","1483058360","1","8","0","-1","128","1","1024","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058363","1483058364","1483058399","1483058363","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058398","1483058399","1483058459","1483058398","1","8","0","-1","60","1","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058399","1483058402","1483058432","1483058399","1","8","0","-1","30","3","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968906","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058418","1483058419","1483058461","1483058418","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058431","1483058432","1483058462","1483058431","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968910","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058433","1483058435","1483058473","1483058433","1","8","0","-1","38","2","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968914","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058460","1483058461","1483058493","1483058460","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058461","1483058462","1483058504","1483058461","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058463","1483058464","1483058529","1483058463","1","8","0","-1","65","1","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968922","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058480","1483058481","1483058516","1483058480","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058504","1483058505","1483058554","1483058504","1","8","0","-1","49","1","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058517","1483058518","1483058556","1483058517","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058518","1483058520","1483058622","1483058518","1","8","0","-1","102","2","816","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058530","1483058531","1483058578","1483058530","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968942","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058555","1483058556","1483058607","1483058555","1","8","0","-1","51","1","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058557","1483058558","1483058641","1483058557","1","8","0","-1","83","1","664","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058558","1483058559","1483058629","1483058558","1","8","0","-1","70","1","560","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058564","1483058565","1483058635","1483058564","1","8","0","-1","70","1","560","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058635","1483058636","1483058710","1483058635","1","8","0","-1","74","1","592","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968978","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058685","1483058686","1483058769","1483058685","1","8","0","-1","83","1","664","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968980","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058688","1483058689","1483058771","1483058688","1","8","0","-1","82","1","656","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058691","1483058692","1483058782","1483058691","1","8","0","-1","90","1","720","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058709","1483058710","1483058778","1483058709","1","8","0","-1","68","1","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058710","1483058711","1483058807","1483058710","1","8","0","-1","96","1","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["968994","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058771","1483058773","1483058827","1483058771","1","8","0","-1","54","2","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969000","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058808","1483058809","1483058844","1483058808","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058826","1483058827","1483058860","1483058826","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058827","1483058830","1483058902","1483058827","1","8","0","-1","72","3","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058832","1483058833","1483058897","1483058832","1","8","0","-1","64","1","512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969008","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058838","1483058839","1483058910","1483058838","1","8","0","-1","71","1","568","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058844","1483058845","1483058887","1483058844","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058846","1483058848","1483058913","1483058846","1","8","0","-1","65","2","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058898","1483058900","1483058958","1483058898","1","8","0","-1","58","2","464","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058903","1483058904","1483058978","1483058903","1","8","0","-1","74","1","592","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058914","1483058915","1483058963","1483058914","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058922","1483058923","1483058988","1483058922","1","8","0","-1","65","1","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058958","1483058959","1483059100","1483058958","1","8","0","-1","141","1","1128","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058963","1483058964","1483059100","1483058963","1","8","0","-1","136","1","1088","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969046","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058978","1483058979","1483059107","1483058978","1","8","0","-1","128","1","1024","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483058988","1483058989","1483059109","1483058988","1","8","0","-1","120","1","960","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059071","1483059072","1483059211","1483059071","1","8","0","-1","139","1","1112","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059100","1483059101","1483059235","1483059100","1","8","0","-1","134","1","1072","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059109","1483059110","1483059226","1483059109","1","8","0","-1","116","1","928","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059238","1483059239","1483059405","1483059238","1","8","0","-1","166","1","1328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059293","1483059295","1483059343","1483059293","1","8","0","-1","48","2","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059343","1483059344","1483059393","1483059343","1","8","0","-1","49","1","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059378","1483059379","1483059419","1483059378","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059385","1483059386","1483059440","1483059385","1","8","0","-1","54","1","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059393","1483059394","1483059447","1483059393","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059396","1483059397","1483059452","1483059396","1","8","0","-1","55","1","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059406","1483059407","1483059456","1483059406","1","8","0","-1","49","1","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059420","1483059421","1483059468","1483059420","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059441","1483059442","1483059489","1483059441","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059448","1483059449","1483059497","1483059448","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059453","1483059454","1483059494","1483059453","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969114","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059457","1483059458","1483059500","1483059457","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969116","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059468","1483059469","1483059522","1483059468","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059490","1483059491","1483059633","1483059490","1","8","0","-1","142","1","1136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059523","1483059524","1483059564","1483059523","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059539","1483059540","1483059612","1483059539","1","8","0","-1","72","1","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059563","1483059564","1483059637","1483059563","1","8","0","-1","73","1","584","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059565","1483059567","1483059606","1483059565","1","8","0","-1","39","2","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059597","1483059598","1483059676","1483059597","1","8","0","-1","78","1","624","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059603","1483059604","1483059680","1483059603","1","8","0","-1","76","1","608","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059678","1483059680","1483059776","1483059678","1","8","0","-1","96","2","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059685","1483059686","1483059854","1483059685","1","8","0","-1","168","1","1344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059705","1483059706","1483059761","1483059705","1","8","0","-1","55","1","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059707","1483059709","1483059755","1483059707","1","8","0","-1","46","2","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969178","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059726","1483059727","1483059794","1483059726","1","8","0","-1","67","1","536","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969180","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059755","1483059756","1483059826","1483059755","1","8","0","-1","70","1","560","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059761","1483059762","1483059815","1483059761","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059776","1483059777","1483059819","1483059776","1","8","0","-1","42","1","336","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059794","1483059795","1483059830","1483059794","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059815","1483059816","1483059891","1483059815","1","8","0","-1","75","1","600","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969190","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059817","1483059819","1483059894","1483059817","1","8","0","-1","75","2","600","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059820","1483059822","1483059882","1483059820","1","8","0","-1","60","2","480","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059831","1483059832","1483059893","1483059831","1","8","0","-1","61","1","488","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059892","1483059893","1483059973","1483059892","1","8","0","-1","80","1","640","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059893","1483059894","1483059985","1483059893","1","8","0","-1","91","1","728","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969220","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059901","1483059902","1483059998","1483059901","1","8","0","-1","96","1","768","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059974","1483059975","1483060014","1483059974","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969234","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483059999","1483060002","1483060032","1483059999","1","8","0","-1","30","3","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060000","1483060002","1483060048","1483060000","1","8","0","-1","46","2","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060014","1483060015","1483060045","1483060014","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060049","1483060051","1483060098","1483060049","1","8","0","-1","47","2","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060061","1483060063","1483060095","1483060061","1","8","0","-1","32","2","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060066","1483060067","1483060139","1483060066","1","8","0","-1","72","1","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060077","1483060078","1483060125","1483060077","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060095","1483060096","1483060175","1483060095","1","8","0","-1","79","1","632","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060098","1483060099","1483060129","1483060098","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060121","1483060122","1483060161","1483060121","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969273","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060126","1483060127","1483060171","1483060126","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060137","1483060138","1483060182","1483060137","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060140","1483060141","1483060172","1483060140","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060155","1483060156","1483060191","1483060155","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969295","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060191","1483060192","1483060225","1483060191","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969297","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060209","1483060210","1483060248","1483060209","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060215","1483060216","1483060281","1483060215","1","8","0","-1","65","1","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060218","1483060219","1483060287","1483060218","1","8","0","-1","68","1","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060223","1483060224","1483060296","1483060223","1","8","0","-1","72","1","576","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060224","1483060225","1483060367","1483060224","1","8","0","-1","142","1","1136","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969323","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060316","1483060317","1483060351","1483060316","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060318","1483060320","1483060365","1483060318","1","8","0","-1","45","2","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969327","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060331","1483060332","1483060384","1483060331","1","8","0","-1","52","1","416","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969329","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060333","1483060335","1483060369","1483060333","1","8","0","-1","34","2","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969331","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060338","1483060339","1483060372","1483060338","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969343","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060372","1483060375","1483060424","1483060372","1","8","0","-1","49","3","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060384","1483060385","1483060419","1483060384","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060393","1483060394","1483060470","1483060393","1","8","0","-1","76","1","608","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060425","1483060426","1483060469","1483060425","1","8","0","-1","43","1","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060457","1483060459","1483060509","1483060457","1","8","0","-1","50","2","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060470","1483060472","1483060513","1483060470","1","8","0","-1","41","2","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060471","1483060472","1483060527","1483060471","1","8","0","-1","55","1","440","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060491","1483060492","1483060551","1483060491","1","8","0","-1","59","1","472","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969380","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060510","1483060511","1483060543","1483060510","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060514","1483060515","1483060548","1483060514","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969386","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060543","1483060544","1483060591","1483060543","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969388","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060544","1483060546","1483060595","1483060544","1","8","0","-1","49","2","392","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060549","1483060550","1483060594","1483060549","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060554","1483060555","1483060695","1483060554","1","8","0","-1","140","1","1120","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060585","1483060586","1483060637","1483060585","1","8","0","-1","51","1","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969400","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060592","1483060593","1483060640","1483060592","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060595","1483060596","1483060628","1483060595","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969406","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060620","1483060621","1483060669","1483060620","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060628","1483060629","1483060664","1483060628","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060641","1483060642","1483060673","1483060641","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060674","1483060675","1483060708","1483060674","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060695","1483060696","1483060729","1483060695","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060698","1483060699","1483060730","1483060698","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060708","1483060709","1483060755","1483060708","1","8","0","-1","46","1","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060713","1483060714","1483060828","1483060713","1","8","0","-1","114","1","912","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060730","1483060731","1483060778","1483060730","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060775","1483060776","1483060813","1483060775","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060778","1483060779","1483060809","1483060778","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060833","1483060834","1483060887","1483060833","1","8","0","-1","53","1","424","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060859","1483060862","1483060895","1483060859","1","8","0","-1","33","3","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060863","1483060865","1483060899","1483060863","1","8","0","-1","34","2","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060870","1483060871","1483060904","1483060870","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969497","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060877","1483060878","1483060915","1483060877","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060887","1483060888","1483060921","1483060887","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060900","1483060901","1483060936","1483060900","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060915","1483060916","1483060950","1483060915","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060922","1483060923","1483060954","1483060922","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060924","1483060926","1483060961","1483060924","1","8","0","-1","35","2","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969513","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060926","1483060929","1483060968","1483060926","1","8","0","-1","39","3","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060937","1483060938","1483060974","1483060937","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060969","1483060970","1483061011","1483060969","1","8","0","-1","41","1","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060981","1483060982","1483061137","1483060981","1","8","0","-1","155","1","1240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483060997","1483060998","1483061066","1483060997","1","8","0","-1","68","1","544","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061014","1483061016","1483061048","1483061014","1","8","0","-1","32","2","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061048","1483061049","1483061080","1483061048","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061053","1483061054","1483061085","1483061053","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061066","1483061067","1483061102","1483061066","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061085","1483061086","1483061130","1483061085","1","8","0","-1","44","1","352","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061093","1483061095","1483061157","1483061093","1","8","0","-1","62","2","496","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061120","1483061121","1483061155","1483061120","1","8","0","-1","34","1","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061153","1483061155","1483061235","1483061153","1","8","0","-1","80","2","640","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061156","1483061157","1483061220","1483061156","1","8","0","-1","63","1","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061177","1483061179","1483061212","1483061177","1","8","0","-1","33","2","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061213","1483061215","1483061247","1483061213","1","8","0","-1","32","2","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061222","1483061224","1483061258","1483061222","1","8","0","-1","34","2","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061236","1483061237","1483061282","1483061236","1","8","0","-1","45","1","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061259","1483061260","1483061290","1483061259","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061271","1483061272","1483061309","1483061271","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061277","1483061278","1483061318","1483061277","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061283","1483061284","1483061319","1483061283","1","8","0","-1","35","1","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061290","1483061291","1483061332","1483061290","1","8","0","-1","41","1","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061291","1483061294","1483061440","1483061291","1","8","0","-1","146","3","1168","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061310","1483061311","1483061374","1483061310","1","8","0","-1","63","1","504","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061320","1483061322","1483061352","1483061320","1","8","0","-1","30","2","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061333","1483061335","1483061365","1483061333","1","8","0","-1","30","2","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061353","1483061354","1483061400","1483061353","1","8","0","-1","46","1","368","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061365","1483061366","1483061414","1483061365","1","8","0","-1","48","1","384","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061374","1483061375","1483061405","1483061374","1","8","0","-1","30","1","240","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061385","1483061386","1483061417","1483061385","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969652","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061406","1483061407","1483061468","1483061406","1","8","0","-1","61","1","488","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061441","1483061442","1483061481","1483061441","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061444","1483061445","1483061524","1483061444","1","8","0","-1","79","1","632","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061481","1483061482","1483061529","1483061481","1","8","0","-1","47","1","376","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061511","1483061512","1483061550","1483061511","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969702","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061585","1483061586","1483061640","1483061585","1","8","0","-1","54","1","432","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061593","1483061594","1483061658","1483061593","1","8","0","-1","64","1","512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061615","1483061616","1483061681","1483061615","1","8","0","-1","65","1","520","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061616","1483061619","1483061808","1483061616","1","8","0","-1","189","3","1512","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061641","1483061642","1483061759","1483061641","1","8","0","-1","117","1","936","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969725","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061651","1483061652","1483061685","1483061651","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969733","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061686","1483061687","1483061730","1483061686","1","8","0","-1","43","1","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969735","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061687","1483061690","1483061725","1483061687","1","8","0","-1","35","3","280","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969739","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061710","1483061711","1483061743","1483061710","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969745","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061727","1483061730","1483061780","1483061727","1","8","0","-1","50","3","400","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061781","1483061783","1483061823","1483061781","1","8","0","-1","40","2","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061808","1483061809","1483061850","1483061808","1","8","0","-1","41","1","328","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061812","1483061815","1483061849","1483061812","1","8","0","-1","34","3","272","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061825","1483061827","1483061858","1483061825","1","8","0","-1","31","2","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969779","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061849","1483061850","1483061888","1483061849","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061850","1483061851","1483061888","1483061850","1","8","0","-1","37","1","296","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061858","1483061860","1483061891","1483061858","1","8","0","-1","31","2","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061895","1483061897","1483061933","1483061895","1","8","0","-1","36","2","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061917","1483061918","1483061954","1483061917","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061919","1483061920","1483061960","1483061919","1","8","0","-1","40","1","320","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061920","1483061921","1483061954","1483061920","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061933","1483061935","1483061980","1483061933","1","8","0","-1","45","2","360","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969824","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061986","1483061987","1483062020","1483061986","1","8","0","-1","33","1","264","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483061999","1483062000","1483062036","1483061999","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062060","1483062061","1483062104","1483062060","1","8","0","-1","43","1","344","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062103","1483062104","1483062135","1483062103","1","8","0","-1","31","1","248","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062107","1483062108","1483062146","1483062107","1","8","0","-1","38","1","304","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969870","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062128","1483062129","1483062168","1483062128","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969878","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062147","1483062150","1483062201","1483062147","1","8","0","-1","51","3","408","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062157","1483062158","1483062194","1483062157","1","8","0","-1","36","1","288","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062177","1483062178","1483062210","1483062177","1","8","0","-1","32","1","256","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062210","1483062211","1483062342","1483062210","1","8","0","-1","131","1","1048","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062229","1483062230","1483062269","1483062229","1","8","0","-1","39","1","312","0","0:0","COMPLETED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969912","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062262","1483062263","1483062296","1483062262","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062270","1483062272","1483062308","1483062270","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062328","1483062329","1483062367","1483062328","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969942","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062330","1483062332","1483062368","1483062330","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062354","1483062355","1483062426","1483062354","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062367","1483062368","1483062405","1483062367","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969952","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062369","1483062371","1483062402","1483062369","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062385","1483062388","1483062422","1483062385","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062389","1483062391","1483062457","1483062389","1","8","0","-1","66","2","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062423","1483062424","1483062488","1483062423","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062443","1483062444","1483062492","1483062443","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062457","1483062458","1483062506","1483062457","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969984","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062488","1483062489","1483062566","1483062488","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062492","1483062493","1483062567","1483062492","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062496","1483062497","1483062539","1483062496","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062498","1483062500","1483062639","1483062498","1","8","0","-1","139","2","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969992","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062507","1483062508","1483062565","1483062507","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062539","1483062540","1483062582","1483062539","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["969999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062559","1483062560","1483062603","1483062559","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062566","1483062567","1483062605","1483062566","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062568","1483062570","1483062633","1483062568","1","8","0","-1","63","2","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062606","1483062607","1483062648","1483062606","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062608","1483062610","1483062687","1483062608","1","8","0","-1","77","2","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062641","1483062643","1483062675","1483062641","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970033","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062676","1483062678","1483062774","1483062676","1","8","0","-1","96","2","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970039","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062688","1483062689","1483062741","1483062688","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970043","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062697","1483062698","1483062743","1483062697","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970047","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062708","1483062709","1483062754","1483062708","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970051","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062741","1483062742","1483062785","1483062741","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970053","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062744","1483062745","1483062807","1483062744","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970055","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062755","1483062756","1483062814","1483062755","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062768","1483062769","1483062820","1483062768","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062775","1483062776","1483062851","1483062775","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062785","1483062786","1483062820","1483062785","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062807","1483062808","1483062849","1483062807","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062820","1483062821","1483062875","1483062820","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062843","1483062844","1483062894","1483062843","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062849","1483062850","1483063019","1483062849","1","8","0","-1","169","1","1352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062850","1483062851","1483062907","1483062850","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062851","1483062854","1483062954","1483062851","1","8","0","-1","100","3","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062868","1483062869","1483062967","1483062868","1","8","0","-1","98","1","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062875","1483062876","1483063018","1483062875","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062908","1483062909","1483063051","1483062908","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483062967","1483062968","1483063094","1483062967","1","8","0","-1","126","1","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063018","1483063019","1483063167","1483063018","1","8","0","-1","148","1","1184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063019","1483063022","1483063175","1483063019","1","8","0","-1","153","3","1224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063035","1483063037","1483063183","1483063035","1","8","0","-1","146","2","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063176","1483063177","1483063357","1483063176","1","8","0","-1","180","1","1440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063184","1483063185","1483063353","1483063184","1","8","0","-1","168","1","1344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063213","1483063214","1483063356","1483063213","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063307","1483063308","1483063359","1483063307","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970149","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063358","1483063360","1483063410","1483063358","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970157","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063407","1483063408","1483063458","1483063407","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063417","1483063419","1483063468","1483063417","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063440","1483063441","1483063502","1483063440","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970171","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063459","1483063461","1483063552","1483063459","1","8","0","-1","91","2","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063470","1483063472","1483063546","1483063470","1","8","0","-1","74","2","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063553","1483063555","1483063599","1483063553","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063577","1483063578","1483063651","1483063577","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063587","1483063588","1483063663","1483063587","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063599","1483063600","1483063641","1483063599","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970199","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063600","1483063603","1483063647","1483063600","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970201","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063612","1483063615","1483063652","1483063612","1","8","0","-1","37","3","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063626","1483063628","1483063700","1483063626","1","8","0","-1","72","2","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063641","1483063642","1483063704","1483063641","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063647","1483063648","1483063690","1483063647","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063651","1483063652","1483063709","1483063651","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063653","1483063655","1483063712","1483063653","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063664","1483063665","1483063765","1483063664","1","8","0","-1","100","1","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063691","1483063692","1483063797","1483063691","1","8","0","-1","105","1","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970227","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063704","1483063705","1483063752","1483063704","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063713","1483063714","1483063761","1483063713","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063752","1483063753","1483063815","1483063752","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063762","1483063763","1483063812","1483063762","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063778","1483063779","1483063844","1483063778","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063812","1483063813","1483063852","1483063812","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063845","1483063847","1483063917","1483063845","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063852","1483063853","1483063935","1483063852","1","8","0","-1","82","1","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063853","1483063854","1483064027","1483063853","1","8","0","-1","173","1","1384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063920","1483063921","1483063951","1483063920","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970281","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063936","1483063938","1483063970","1483063936","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970285","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063958","1483063959","1483064009","1483063958","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063971","1483063972","1483064022","1483063971","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483063973","1483063975","1483064014","1483063973","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064021","1483064022","1483064056","1483064021","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064023","1483064025","1483064057","1483064023","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064025","1483064027","1483064077","1483064025","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064027","1483064028","1483064160","1483064027","1","8","0","-1","132","1","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064032","1483064035","1483064083","1483064032","1","8","0","-1","48","3","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970323","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064077","1483064078","1483064110","1483064077","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064083","1483064084","1483064120","1483064083","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970327","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064091","1483064092","1483064122","1483064091","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970331","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064101","1483064102","1483064146","1483064101","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970337","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064120","1483064121","1483064157","1483064120","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064147","1483064150","1483064181","1483064147","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064157","1483064158","1483064198","1483064157","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064169","1483064170","1483064234","1483064169","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064173","1483064174","1483064210","1483064173","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064213","1483064215","1483064248","1483064213","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064263","1483064265","1483064297","1483064263","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064315","1483064316","1483064360","1483064315","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970402","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064321","1483064323","1483064437","1483064321","1","8","0","-1","114","2","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064328","1483064329","1483064367","1483064328","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970408","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064339","1483064340","1483064370","1483064339","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970410","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064360","1483064361","1483064398","1483064360","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970412","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064361","1483064364","1483064406","1483064361","1","8","0","-1","42","3","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970422","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064399","1483064401","1483064440","1483064399","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970424","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064401","1483064402","1483064452","1483064401","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970446","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064460","1483064461","1483064501","1483064460","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064464","1483064465","1483064595","1483064464","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064501","1483064502","1483064532","1483064501","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064505","1483064506","1483064540","1483064505","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064510","1483064511","1483064548","1483064510","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064533","1483064535","1483064581","1483064533","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970490","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064584","1483064585","1483064626","1483064584","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970494","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064596","1483064597","1483064683","1483064596","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064598","1483064600","1483064640","1483064598","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064600","1483064603","1483064648","1483064600","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064609","1483064610","1483064643","1483064609","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970515","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064649","1483064650","1483064691","1483064649","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064656","1483064657","1483064698","1483064656","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064658","1483064660","1483064691","1483064658","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064691","1483064692","1483064731","1483064691","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064698","1483064699","1483064746","1483064698","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970538","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064703","1483064704","1483064822","1483064703","1","8","0","-1","118","1","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064707","1483064708","1483064738","1483064707","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970542","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064709","1483064711","1483064752","1483064709","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970548","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064738","1483064739","1483064779","1483064738","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970552","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064753","1483064755","1483064786","1483064753","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064756","1483064758","1483064800","1483064756","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064774","1483064775","1483064829","1483064774","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064787","1483064788","1483064830","1483064787","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064831","1483064833","1483064877","1483064831","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064839","1483064840","1483064889","1483064839","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064842","1483064843","1483064889","1483064842","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064844","1483064846","1483064956","1483064844","1","8","0","-1","110","2","880","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064865","1483064866","1483064907","1483064865","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064877","1483064878","1483064917","1483064877","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064966","1483064967","1483065026","1483064966","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064968","1483064970","1483065078","1483064968","1","8","0","-1","108","2","864","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970632","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064989","1483064990","1483065043","1483064989","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483064991","1483064992","1483065034","1483064991","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065010","1483065011","1483065054","1483065010","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065018","1483065019","1483065064","1483065018","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065064","1483065066","1483065113","1483065064","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970654","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065070","1483065071","1483065114","1483065070","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065093","1483065094","1483065129","1483065093","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065106","1483065107","1483065152","1483065106","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065107","1483065110","1483065246","1483065107","1","8","0","-1","136","3","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970677","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065114","1483065115","1483065168","1483065114","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065130","1483065131","1483065168","1483065130","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065144","1483065145","1483065177","1483065144","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065152","1483065153","1483065185","1483065152","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970692","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065177","1483065178","1483065233","1483065177","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970694","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065181","1483065182","1483065217","1483065181","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065186","1483065187","1483065220","1483065186","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970700","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065192","1483065193","1483065227","1483065192","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065233","1483065235","1483065279","1483065233","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065243","1483065244","1483065297","1483065243","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065246","1483065247","1483065285","1483065246","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065298","1483065300","1483065357","1483065298","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065358","1483065359","1483065428","1483065358","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065362","1483065363","1483065432","1483065362","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065363","1483065366","1483065426","1483065363","1","8","0","-1","60","3","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065372","1483065373","1483065434","1483065372","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065383","1483065384","1483065447","1483065383","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065422","1483065423","1483065477","1483065422","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065427","1483065428","1483065482","1483065427","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065429","1483065431","1483065487","1483065429","1","8","0","-1","56","2","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065431","1483065433","1483065517","1483065431","1","8","0","-1","84","2","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065434","1483065437","1483065534","1483065434","1","8","0","-1","97","3","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065448","1483065449","1483065623","1483065448","1","8","0","-1","174","1","1392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065477","1483065478","1483065583","1483065477","1","8","0","-1","105","1","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065483","1483065484","1483065589","1483065483","1","8","0","-1","105","1","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065534","1483065535","1483065566","1483065534","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065568","1483065570","1483065618","1483065568","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065590","1483065591","1483065624","1483065590","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065624","1483065627","1483065676","1483065624","1","8","0","-1","49","3","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065641","1483065643","1483065722","1483065641","1","8","0","-1","79","2","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065654","1483065655","1483065696","1483065654","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065697","1483065698","1483065745","1483065697","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065706","1483065708","1483065752","1483065706","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065753","1483065754","1483065809","1483065753","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065756","1483065757","1483065881","1483065756","1","8","0","-1","124","1","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065767","1483065768","1483065802","1483065767","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970858","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065768","1483065769","1483065817","1483065768","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970874","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065823","1483065824","1483065866","1483065823","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970884","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065854","1483065855","1483065888","1483065854","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065881","1483065882","1483065917","1483065881","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065883","1483065885","1483065941","1483065883","1","8","0","-1","56","2","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970900","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065889","1483065891","1483066008","1483065889","1","8","0","-1","117","2","936","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065896","1483065897","1483065945","1483065896","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970904","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065902","1483065903","1483065943","1483065902","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970912","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065941","1483065942","1483065978","1483065941","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970922","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483065966","1483065967","1483066010","1483065966","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066014","1483066015","1483066052","1483066014","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970942","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066016","1483066018","1483066050","1483066016","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066022","1483066024","1483066108","1483066022","1","8","0","-1","84","2","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066051","1483066052","1483066094","1483066051","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066095","1483066096","1483066140","1483066095","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066096","1483066099","1483066129","1483066096","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066096","1483066099","1483066143","1483066096","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066130","1483066131","1483066166","1483066130","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970992","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066141","1483066142","1483066177","1483066141","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["970994","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066143","1483066145","1483066189","1483066143","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971000","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066167","1483066168","1483066225","1483066167","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066178","1483066179","1483066214","1483066178","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066180","1483066181","1483066220","1483066180","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971010","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066194","1483066195","1483066230","1483066194","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971012","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066209","1483066210","1483066261","1483066209","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971016","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066216","1483066218","1483066256","1483066216","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066256","1483066257","1483066290","1483066256","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066257","1483066259","1483066291","1483066257","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066260","1483066261","1483066301","1483066260","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066261","1483066262","1483066331","1483066261","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066263","1483066265","1483066411","1483066263","1","8","0","-1","146","2","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066279","1483066280","1483066329","1483066279","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066332","1483066333","1483066396","1483066332","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066363","1483066364","1483066406","1483066363","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066373","1483066374","1483066412","1483066373","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066413","1483066415","1483066475","1483066413","1","8","0","-1","60","2","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066422","1483066423","1483066583","1483066422","1","8","0","-1","160","1","1280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066433","1483066435","1483066489","1483066433","1","8","0","-1","54","2","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066466","1483066467","1483066504","1483066466","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066471","1483066472","1483066505","1483066471","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066476","1483066477","1483066527","1483066476","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066490","1483066491","1483066533","1483066490","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066504","1483066505","1483066544","1483066504","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066506","1483066508","1483066576","1483066506","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066522","1483066523","1483066591","1483066522","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066528","1483066529","1483066578","1483066528","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066533","1483066534","1483066575","1483066533","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066544","1483066545","1483066578","1483066544","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066579","1483066580","1483066652","1483066579","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066591","1483066592","1483066649","1483066591","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066607","1483066608","1483066653","1483066607","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066614","1483066615","1483066692","1483066614","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066653","1483066656","1483066785","1483066653","1","8","0","-1","129","3","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066663","1483066664","1483066786","1483066663","1","8","0","-1","122","1","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066699","1483066701","1483066836","1483066699","1","8","0","-1","135","2","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066786","1483066787","1483066864","1483066786","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066787","1483066788","1483066901","1483066787","1","8","0","-1","113","1","904","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066885","1483066886","1483067010","1483066885","1","8","0","-1","124","1","992","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483066922","1483066930","1483067010","1483066922","1","8","0","-1","80","8","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971189","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067005","1483067010","1483067110","1483067005","1","8","0","-1","100","5","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067094","1483067110","1483067178","1483067094","1","8","0","-1","68","16","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067197","1483067203","1483067281","1483067197","1","8","0","-1","78","6","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067307","1483067314","1483067377","1483067307","1","8","0","-1","63","7","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971202","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067327","1483067331","1483067380","1483067327","1","8","0","-1","49","4","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067336","1483067337","1483067424","1483067336","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067365","1483067369","1483067448","1483067365","1","8","0","-1","79","4","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067405","1483067406","1483067477","1483067405","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067422","1483067424","1483067499","1483067422","1","8","0","-1","75","2","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971216","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067453","1483067461","1483067549","1483067453","1","8","0","-1","88","8","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067524","1483067527","1483067592","1483067524","1","8","0","-1","65","3","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067544","1483067549","1483067607","1483067544","1","8","0","-1","58","5","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971228","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067591","1483067592","1483067633","1483067591","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971230","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067603","1483067606","1483067646","1483067603","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971233","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067621","1483067624","1483067686","1483067621","1","8","0","-1","62","3","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067622","1483067624","1483067690","1483067622","1","8","0","-1","66","2","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067624","1483067629","1483067676","1483067624","1","8","0","-1","47","5","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067655","1483067662","1483067694","1483067655","1","8","0","-1","32","7","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067663","1483067665","1483067697","1483067663","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067686","1483067689","1483067750","1483067686","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067690","1483067691","1483067760","1483067690","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067750","1483067751","1483067810","1483067750","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971292","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067754","1483067756","1483067803","1483067754","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067762","1483067764","1483067854","1483067762","1","8","0","-1","90","2","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067809","1483067810","1483067903","1483067809","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067855","1483067856","1483067896","1483067855","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067903","1483067904","1483067937","1483067903","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971341","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067920","1483067921","1483067957","1483067920","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971343","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067922","1483067923","1483067953","1483067922","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067928","1483067929","1483067964","1483067928","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483067943","1483067944","1483067991","1483067943","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068020","1483068022","1483068060","1483068020","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068034","1483068035","1483068066","1483068034","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068041","1483068042","1483068163","1483068041","1","8","0","-1","121","1","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068099","1483068100","1483068132","1483068099","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068188","1483068189","1483068222","1483068188","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068193","1483068194","1483068236","1483068193","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068223","1483068226","1483068283","1483068223","1","8","0","-1","57","3","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068227","1483068228","1483068274","1483068227","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068228","1483068229","1483068351","1483068228","1","8","0","-1","122","1","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068237","1483068238","1483068280","1483068237","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068244","1483068245","1483068290","1483068244","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068247","1483068248","1483068306","1483068247","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068284","1483068285","1483068323","1483068284","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068307","1483068308","1483068338","1483068307","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971490","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068309","1483068311","1483068344","1483068309","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068338","1483068339","1483068377","1483068338","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068344","1483068345","1483068380","1483068344","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068346","1483068348","1483068439","1483068346","1","8","0","-1","91","2","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068351","1483068352","1483068386","1483068351","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971512","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068354","1483068356","1483068390","1483068354","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068425","1483068426","1483068484","1483068425","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068440","1483068441","1483068472","1483068440","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068510","1483068511","1483068573","1483068510","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068523","1483068524","1483068585","1483068523","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971585","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068535","1483068536","1483068577","1483068535","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068574","1483068575","1483068620","1483068574","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068595","1483068596","1483068630","1483068595","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971605","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068602","1483068603","1483068648","1483068602","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971607","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068615","1483068616","1483068659","1483068615","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068621","1483068622","1483068733","1483068621","1","8","0","-1","111","1","888","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068630","1483068631","1483068664","1483068630","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068648","1483068651","1483068697","1483068648","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068694","1483068695","1483068729","1483068694","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068706","1483068707","1483068758","1483068706","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068729","1483068730","1483068769","1483068729","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971648","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068734","1483068736","1483068781","1483068734","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068780","1483068781","1483068828","1483068780","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068781","1483068782","1483068821","1483068781","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068821","1483068822","1483068866","1483068821","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068828","1483068829","1483068877","1483068828","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971696","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068890","1483068891","1483068988","1483068890","1","8","0","-1","97","1","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971698","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068899","1483068900","1483068978","1483068899","1","8","0","-1","78","1","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068954","1483068956","1483068987","1483068954","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068987","1483068988","1483069105","1483068987","1","8","0","-1","117","1","936","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483068988","1483068991","1483069024","1483068988","1","8","0","-1","33","3","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069006","1483069007","1483069043","1483069006","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069044","1483069045","1483069093","1483069044","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069057","1483069058","1483069165","1483069057","1","8","0","-1","107","1","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971741","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069058","1483069061","1483069117","1483069058","1","8","0","-1","56","3","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971761","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069118","1483069119","1483069150","1483069118","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069151","1483069153","1483069253","1483069151","1","8","0","-1","100","2","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069166","1483069169","1483069208","1483069166","1","8","0","-1","39","3","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069177","1483069178","1483069220","1483069177","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069195","1483069196","1483069310","1483069195","1","8","0","-1","114","1","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069222","1483069224","1483069262","1483069222","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069225","1483069227","1483069264","1483069225","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069254","1483069256","1483069294","1483069254","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971807","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069262","1483069264","1483069310","1483069262","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069265","1483069267","1483069335","1483069265","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069295","1483069298","1483069377","1483069295","1","8","0","-1","79","3","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069311","1483069312","1483069461","1483069311","1","8","0","-1","149","1","1192","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069336","1483069337","1483069426","1483069336","1","8","0","-1","89","1","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069366","1483069369","1483069443","1483069366","1","8","0","-1","74","3","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069378","1483069379","1483069524","1483069378","1","8","0","-1","145","1","1160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069388","1483069389","1483069430","1483069388","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971831","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069426","1483069427","1483069484","1483069426","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069510","1483069511","1483069567","1483069510","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069541","1483069542","1483069622","1483069541","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069614","1483069616","1483069646","1483069614","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069660","1483069662","1483069740","1483069660","1","8","0","-1","78","2","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069666","1483069667","1483069699","1483069666","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069683","1483069684","1483069714","1483069683","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069700","1483069701","1483069737","1483069700","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069729","1483069730","1483069763","1483069729","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069758","1483069760","1483069790","1483069758","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069760","1483069761","1483069824","1483069760","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069761","1483069764","1483069797","1483069761","1","8","0","-1","33","3","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069771","1483069772","1483069806","1483069771","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069817","1483069819","1483069858","1483069817","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069851","1483069853","1483069917","1483069851","1","8","0","-1","64","2","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["971991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069869","1483069870","1483069910","1483069869","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069920","1483069922","1483069958","1483069920","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483069959","1483069962","1483070002","1483069959","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070036","1483070037","1483070105","1483070036","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070037","1483070039","1483070073","1483070037","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070039","1483070040","1483070074","1483070039","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070089","1483070090","1483070120","1483070089","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070188","1483070189","1483070222","1483070188","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070229","1483070230","1483070298","1483070229","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070233","1483070234","1483070269","1483070233","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070236","1483070237","1483070281","1483070236","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972194","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070296","1483070299","1483070337","1483070296","1","8","0","-1","38","3","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070299","1483070301","1483070337","1483070299","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070328","1483070329","1483070369","1483070328","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070338","1483070341","1483070376","1483070338","1","8","0","-1","35","3","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070338","1483070341","1483070373","1483070338","1","8","0","-1","32","3","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070342","1483070344","1483070390","1483070342","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070402","1483070403","1483070448","1483070402","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972253","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070425","1483070426","1483070458","1483070425","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972255","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070431","1483070432","1483070465","1483070431","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972257","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070432","1483070435","1483070471","1483070432","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070443","1483070444","1483070478","1483070443","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070448","1483070449","1483070482","1483070448","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070459","1483070460","1483070492","1483070459","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972287","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070509","1483070512","1483070552","1483070509","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070540","1483070541","1483070571","1483070540","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972301","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070541","1483070542","1483070574","1483070541","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972305","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070547","1483070548","1483070610","1483070547","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972307","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070550","1483070551","1483070586","1483070550","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070553","1483070554","1483070590","1483070553","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972311","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070556","1483070557","1483070587","1483070556","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972313","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070571","1483070572","1483070629","1483070571","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070575","1483070576","1483070633","1483070575","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070588","1483070590","1483070625","1483070588","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070612","1483070613","1483070674","1483070612","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070620","1483070621","1483070674","1483070620","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070625","1483070626","1483070659","1483070625","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972334","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070630","1483070631","1483070687","1483070630","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070659","1483070660","1483070702","1483070659","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070664","1483070665","1483070697","1483070664","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070674","1483070675","1483070734","1483070674","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070675","1483070676","1483070762","1483070675","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070688","1483070689","1483070854","1483070688","1","8","0","-1","165","1","1320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070697","1483070698","1483070795","1483070697","1","8","0","-1","97","1","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070702","1483070703","1483070798","1483070702","1","8","0","-1","95","1","760","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070790","1483070791","1483070821","1483070790","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070821","1483070822","1483070876","1483070821","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070838","1483070839","1483070875","1483070838","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070905","1483070907","1483070937","1483070905","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070915","1483070916","1483070946","1483070915","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070916","1483070917","1483071028","1483070916","1","8","0","-1","111","1","888","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070917","1483070919","1483070950","1483070917","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070938","1483070939","1483070983","1483070938","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070976","1483070977","1483071009","1483070976","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483070981","1483070983","1483071018","1483070981","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071019","1483071021","1483071053","1483071019","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071022","1483071023","1483071058","1483071022","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071028","1483071031","1483071078","1483071028","1","8","0","-1","47","3","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071076","1483071077","1483071107","1483071076","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071117","1483071119","1483071158","1483071117","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071125","1483071126","1483071216","1483071125","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071131","1483071132","1483071162","1483071131","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071157","1483071158","1483071193","1483071157","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071209","1483071210","1483071262","1483071209","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972578","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071216","1483071217","1483071301","1483071216","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071218","1483071220","1483071258","1483071218","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972593","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071259","1483071260","1483071304","1483071259","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071263","1483071264","1483071297","1483071263","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071266","1483071267","1483071319","1483071266","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071285","1483071286","1483071338","1483071285","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071304","1483071306","1483071350","1483071304","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071320","1483071321","1483071363","1483071320","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071325","1483071326","1483071370","1483071325","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071335","1483071336","1483071404","1483071335","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972623","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071351","1483071352","1483071455","1483071351","1","8","0","-1","103","1","824","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071364","1483071366","1483071417","1483071364","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071371","1483071372","1483071418","1483071371","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972635","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071417","1483071418","1483071448","1483071417","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071436","1483071438","1483071468","1483071436","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972649","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071449","1483071450","1483071512","1483071449","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071456","1483071457","1483071505","1483071456","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071489","1483071491","1483071525","1483071489","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071494","1483071495","1483071533","1483071494","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071504","1483071506","1483071549","1483071504","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071533","1483071536","1483071566","1483071533","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972695","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071562","1483071564","1483071604","1483071562","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071605","1483071606","1483071642","1483071605","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071605","1483071606","1483071654","1483071605","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071608","1483071609","1483071690","1483071608","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071612","1483071613","1483071659","1483071612","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071620","1483071621","1483071695","1483071620","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071643","1483071644","1483071709","1483071643","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071655","1483071657","1483071722","1483071655","1","8","0","-1","65","2","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071691","1483071692","1483071764","1483071691","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071697","1483071699","1483071770","1483071697","1","8","0","-1","71","2","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071736","1483071737","1483071807","1483071736","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071766","1483071768","1483071838","1483071766","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071835","1483071837","1483071917","1483071835","1","8","0","-1","80","2","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071838","1483071840","1483071985","1483071838","1","8","0","-1","145","2","1160","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071839","1483071840","1483071991","1483071839","1","8","0","-1","151","1","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972765","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071841","1483071843","1483071920","1483071841","1","8","0","-1","77","2","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071920","1483071921","1483071957","1483071920","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071958","1483071960","1483072001","1483071958","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483071969","1483071971","1483072010","1483071969","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072011","1483072013","1483072068","1483072011","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072020","1483072021","1483072089","1483072020","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072034","1483072035","1483072075","1483072034","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072062","1483072063","1483072107","1483072062","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972816","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072068","1483072069","1483072103","1483072068","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072072","1483072073","1483072134","1483072072","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072075","1483072077","1483072109","1483072075","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072089","1483072090","1483072139","1483072089","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972824","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072103","1483072104","1483072152","1483072103","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972826","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072108","1483072109","1483072144","1483072108","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972828","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072109","1483072112","1483072144","1483072109","1","8","0","-1","32","3","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072135","1483072137","1483072170","1483072135","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072145","1483072148","1483072219","1483072145","1","8","0","-1","71","3","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072152","1483072153","1483072219","1483072152","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072170","1483072171","1483072292","1483072170","1","8","0","-1","121","1","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072184","1483072185","1483072259","1483072184","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972872","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072249","1483072252","1483072285","1483072249","1","8","0","-1","33","3","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072309","1483072312","1483072353","1483072309","1","8","0","-1","41","3","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072312","1483072314","1483072351","1483072312","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072320","1483072321","1483072406","1483072320","1","8","0","-1","85","1","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972898","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072322","1483072324","1483072376","1483072322","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972902","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072352","1483072354","1483072389","1483072352","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972916","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072406","1483072408","1483072458","1483072406","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972918","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072409","1483072411","1483072450","1483072409","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972922","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072416","1483072418","1483072449","1483072416","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072459","1483072460","1483072517","1483072459","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072463","1483072464","1483072516","1483072463","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072475","1483072476","1483072605","1483072475","1","8","0","-1","129","1","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972944","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072482","1483072484","1483072523","1483072482","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072514","1483072515","1483072548","1483072514","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072516","1483072518","1483072562","1483072516","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072517","1483072518","1483072552","1483072517","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072552","1483072553","1483072587","1483072552","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072562","1483072563","1483072596","1483072562","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072598","1483072599","1483072663","1483072598","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["972995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072641","1483072642","1483072680","1483072641","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973004","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072677","1483072678","1483072726","1483072677","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072679","1483072681","1483072731","1483072679","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072693","1483072695","1483072729","1483072693","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072729","1483072730","1483072787","1483072729","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072731","1483072733","1483072801","1483072731","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072735","1483072737","1483072802","1483072735","1","8","0","-1","65","2","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072762","1483072763","1483072801","1483072762","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072767","1483072768","1483072812","1483072767","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072788","1483072789","1483072856","1483072788","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072801","1483072802","1483072833","1483072801","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072812","1483072813","1483072846","1483072812","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072834","1483072835","1483072876","1483072834","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072847","1483072848","1483072893","1483072847","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072855","1483072857","1483072894","1483072855","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072857","1483072860","1483072893","1483072857","1","8","0","-1","33","3","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072863","1483072864","1483072913","1483072863","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072876","1483072877","1483072907","1483072876","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072902","1483072903","1483072948","1483072902","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072908","1483072909","1483072951","1483072908","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072914","1483072916","1483073050","1483072914","1","8","0","-1","134","2","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072916","1483072917","1483072955","1483072916","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072919","1483072920","1483072989","1483072919","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072995","1483072996","1483073038","1483072995","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483072998","1483072999","1483073030","1483072998","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073000","1483073002","1483073038","1483073000","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073030","1483073031","1483073062","1483073030","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073031","1483073034","1483073073","1483073031","1","8","0","-1","39","3","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973119","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073059","1483073061","1483073119","1483073059","1","8","0","-1","58","2","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973121","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073063","1483073064","1483073194","1483073063","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073073","1483073074","1483073137","1483073073","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073164","1483073166","1483073215","1483073164","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073184","1483073185","1483073304","1483073184","1","8","0","-1","119","1","952","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073195","1483073196","1483073233","1483073195","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073203","1483073204","1483073255","1483073203","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973176","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073215","1483073217","1483073247","1483073215","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973184","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073256","1483073257","1483073287","1483073256","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073258","1483073259","1483073313","1483073258","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073269","1483073270","1483073300","1483073269","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973198","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073301","1483073302","1483073340","1483073301","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073313","1483073315","1483073357","1483073313","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073315","1483073316","1483073365","1483073315","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973212","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073329","1483073330","1483073468","1483073329","1","8","0","-1","138","1","1104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973214","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073336","1483073337","1483073378","1483073336","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073407","1483073409","1483073449","1483073407","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973242","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073433","1483073434","1483073464","1483073433","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073470","1483073471","1483073508","1483073470","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073471","1483073472","1483073517","1483073471","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073510","1483073512","1483073577","1483073510","1","8","0","-1","65","2","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073517","1483073518","1483073554","1483073517","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073526","1483073527","1483073557","1483073526","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073543","1483073544","1483073593","1483073543","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073555","1483073556","1483073586","1483073555","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073582","1483073583","1483073628","1483073582","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073584","1483073586","1483073640","1483073584","1","8","0","-1","54","2","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073587","1483073589","1483073623","1483073587","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073594","1483073595","1483073631","1483073594","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073601","1483073602","1483073636","1483073601","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073618","1483073619","1483073662","1483073618","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073654","1483073655","1483073699","1483073654","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073657","1483073658","1483073726","1483073657","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073660","1483073661","1483073800","1483073660","1","8","0","-1","139","1","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073662","1483073664","1483073715","1483073662","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973309","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073663","1483073664","1483073736","1483073663","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973315","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073699","1483073700","1483073730","1483073699","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973323","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073715","1483073716","1483073754","1483073715","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973333","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073736","1483073737","1483073769","1483073736","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973343","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073771","1483073773","1483073807","1483073771","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073774","1483073776","1483073823","1483073774","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073777","1483073779","1483073848","1483073777","1","8","0","-1","69","2","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973349","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073780","1483073782","1483073918","1483073780","1","8","0","-1","136","2","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073849","1483073851","1483073893","1483073849","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073877","1483073878","1483073948","1483073877","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073879","1483073881","1483073928","1483073879","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073891","1483073892","1483073948","1483073891","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073894","1483073895","1483073956","1483073894","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073901","1483073902","1483073956","1483073901","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073928","1483073929","1483073984","1483073928","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073948","1483073949","1483073985","1483073948","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073949","1483073952","1483074051","1483073949","1","8","0","-1","99","3","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973394","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073957","1483073960","1483074138","1483073957","1","8","0","-1","178","3","1424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483073974","1483073976","1483074083","1483073974","1","8","0","-1","107","2","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074052","1483074053","1483074099","1483074052","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074071","1483074072","1483074108","1483074071","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973418","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074075","1483074076","1483074109","1483074075","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973422","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074084","1483074085","1483074132","1483074084","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074114","1483074117","1483074156","1483074114","1","8","0","-1","39","3","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973432","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074124","1483074125","1483074163","1483074124","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973436","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074133","1483074135","1483074170","1483074133","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074163","1483074164","1483074231","1483074163","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074230","1483074231","1483074277","1483074230","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074232","1483074234","1483074280","1483074232","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074262","1483074265","1483074302","1483074262","1","8","0","-1","37","3","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074271","1483074272","1483074310","1483074271","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074278","1483074280","1483074335","1483074278","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074280","1483074281","1483074374","1483074280","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074281","1483074283","1483074321","1483074281","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074302","1483074303","1483074350","1483074302","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074336","1483074337","1483074368","1483074336","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074337","1483074340","1483074381","1483074337","1","8","0","-1","41","3","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074375","1483074376","1483074408","1483074375","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074376","1483074377","1483074411","1483074376","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074382","1483074383","1483074414","1483074382","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074393","1483074394","1483074466","1483074393","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074415","1483074417","1483074454","1483074415","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074478","1483074480","1483074513","1483074478","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074491","1483074493","1483074552","1483074491","1","8","0","-1","59","2","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074494","1483074496","1483074553","1483074494","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074497","1483074499","1483074609","1483074497","1","8","0","-1","110","2","880","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074563","1483074564","1483074595","1483074563","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074578","1483074579","1483074634","1483074578","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074579","1483074581","1483074634","1483074579","1","8","0","-1","53","2","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074595","1483074597","1483074632","1483074595","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973608","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074598","1483074600","1483074636","1483074598","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074612","1483074613","1483074657","1483074612","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973616","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074634","1483074635","1483074676","1483074634","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074635","1483074636","1483074671","1483074635","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973623","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074638","1483074640","1483074682","1483074638","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074659","1483074660","1483074717","1483074659","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973637","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074682","1483074683","1483074735","1483074682","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074707","1483074708","1483074769","1483074707","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074708","1483074709","1483074750","1483074708","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074716","1483074717","1483074747","1483074716","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074718","1483074720","1483074755","1483074718","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074770","1483074772","1483074851","1483074770","1","8","0","-1","79","2","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074775","1483074777","1483074854","1483074775","1","8","0","-1","77","2","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074792","1483074793","1483074875","1483074792","1","8","0","-1","82","1","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074853","1483074854","1483074893","1483074853","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973689","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074871","1483074872","1483074941","1483074871","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074876","1483074877","1483074920","1483074876","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074877","1483074880","1483074932","1483074877","1","8","0","-1","52","3","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973695","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074886","1483074887","1483074926","1483074886","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074894","1483074897","1483074945","1483074894","1","8","0","-1","48","3","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074903","1483074904","1483074941","1483074903","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973705","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074921","1483074923","1483074973","1483074921","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074926","1483074927","1483074968","1483074926","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074932","1483074933","1483075023","1483074932","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973713","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074942","1483074944","1483075104","1483074942","1","8","0","-1","160","2","1280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074943","1483074944","1483075036","1483074943","1","8","0","-1","92","1","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074946","1483074947","1483075037","1483074946","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483074968","1483074969","1483075014","1483074968","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075015","1483075017","1483075066","1483075015","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075023","1483075024","1483075067","1483075023","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075037","1483075038","1483075097","1483075037","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075068","1483075069","1483075123","1483075068","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075100","1483075101","1483075134","1483075100","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075122","1483075123","1483075176","1483075122","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075124","1483075126","1483075186","1483075124","1","8","0","-1","60","2","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075128","1483075129","1483075213","1483075128","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075135","1483075137","1483075294","1483075135","1","8","0","-1","157","2","1256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075148","1483075149","1483075238","1483075148","1","8","0","-1","89","1","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075186","1483075187","1483075302","1483075186","1","8","0","-1","115","1","920","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973779","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075213","1483075215","1483075352","1483075213","1","8","0","-1","137","2","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075295","1483075296","1483075426","1483075295","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075302","1483075303","1483075421","1483075302","1","8","0","-1","118","1","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075306","1483075307","1483075373","1483075306","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075352","1483075353","1483075512","1483075352","1","8","0","-1","159","1","1272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075375","1483075377","1483075528","1483075375","1","8","0","-1","151","2","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075422","1483075423","1483075592","1483075422","1","8","0","-1","169","1","1352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075424","1483075426","1483075470","1483075424","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075426","1483075429","1483075491","1483075426","1","8","0","-1","62","3","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075471","1483075472","1483075525","1483075471","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075492","1483075494","1483075547","1483075492","1","8","0","-1","53","2","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973821","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075512","1483075513","1483075547","1483075512","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973825","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075529","1483075530","1483075577","1483075529","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075548","1483075549","1483075596","1483075548","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075596","1483075597","1483075652","1483075596","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075611","1483075612","1483075674","1483075611","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075672","1483075673","1483075742","1483075672","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075675","1483075677","1483075719","1483075675","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075740","1483075741","1483075776","1483075740","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075743","1483075744","1483075774","1483075743","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075756","1483075757","1483075793","1483075756","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075767","1483075768","1483075810","1483075767","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075775","1483075776","1483075808","1483075775","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075776","1483075779","1483075823","1483075776","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075789","1483075790","1483075870","1483075789","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075793","1483075794","1483075884","1483075793","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075794","1483075797","1483075961","1483075794","1","8","0","-1","164","3","1312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075809","1483075810","1483075867","1483075809","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075810","1483075813","1483075909","1483075810","1","8","0","-1","96","3","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973903","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075823","1483075826","1483075893","1483075823","1","8","0","-1","67","3","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075871","1483075872","1483075939","1483075871","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075884","1483075885","1483075946","1483075884","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075893","1483075894","1483075936","1483075893","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075936","1483075939","1483076003","1483075936","1","8","0","-1","64","3","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075939","1483075942","1483076012","1483075939","1","8","0","-1","70","3","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483075961","1483075962","1483076005","1483075961","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076063","1483076064","1483076155","1483076063","1","8","0","-1","91","1","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076073","1483076074","1483076105","1483076073","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076104","1483076106","1483076157","1483076104","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076129","1483076130","1483076170","1483076129","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973965","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076132","1483076133","1483076168","1483076132","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076171","1483076172","1483076243","1483076171","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076181","1483076182","1483076241","1483076181","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076183","1483076184","1483076323","1483076183","1","8","0","-1","139","1","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076184","1483076185","1483076238","1483076184","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["973997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076231","1483076232","1483076279","1483076231","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076268","1483076269","1483076320","1483076268","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076275","1483076277","1483076308","1483076275","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076299","1483076300","1483076331","1483076299","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974023","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076320","1483076321","1483076353","1483076320","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076332","1483076334","1483076473","1483076332","1","8","0","-1","139","2","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076338","1483076339","1483076389","1483076338","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076385","1483076386","1483076437","1483076385","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076423","1483076424","1483076472","1483076423","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076427","1483076428","1483076468","1483076427","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076428","1483076431","1483076485","1483076428","1","8","0","-1","54","3","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076438","1483076439","1483076473","1483076438","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076446","1483076447","1483076490","1483076446","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076474","1483076476","1483076521","1483076474","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076486","1483076487","1483076535","1483076486","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076490","1483076491","1483076553","1483076490","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076500","1483076502","1483076639","1483076500","1","8","0","-1","137","2","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076504","1483076505","1483076545","1483076504","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076522","1483076523","1483076596","1483076522","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076536","1483076537","1483076573","1483076536","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076545","1483076546","1483076586","1483076545","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076567","1483076568","1483076605","1483076567","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076596","1483076599","1483076650","1483076596","1","8","0","-1","51","3","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076610","1483076611","1483076656","1483076610","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076639","1483076642","1483076684","1483076639","1","8","0","-1","42","3","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076666","1483076668","1483076716","1483076666","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974127","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076684","1483076685","1483076760","1483076684","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974145","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076761","1483076763","1483076797","1483076761","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076789","1483076790","1483076837","1483076789","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076803","1483076805","1483076845","1483076803","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076811","1483076812","1483076876","1483076811","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076822","1483076823","1483076858","1483076822","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076825","1483076826","1483076956","1483076825","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974170","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076837","1483076838","1483076875","1483076837","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076838","1483076841","1483076882","1483076838","1","8","0","-1","41","3","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974174","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076846","1483076847","1483076913","1483076846","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974186","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076902","1483076903","1483076935","1483076902","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076954","1483076955","1483076988","1483076954","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076957","1483076958","1483077010","1483076957","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076959","1483076960","1483076993","1483076959","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076960","1483076961","1483077090","1483076960","1","8","0","-1","129","1","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076960","1483076961","1483076997","1483076960","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076988","1483076989","1483077020","1483076988","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483076993","1483076994","1483077027","1483076993","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077020","1483077021","1483077067","1483077020","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077032","1483077034","1483077071","1483077032","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974241","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077055","1483077057","1483077090","1483077055","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077059","1483077060","1483077113","1483077059","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077097","1483077098","1483077147","1483077097","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077113","1483077114","1483077170","1483077113","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974264","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077134","1483077135","1483077191","1483077134","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077148","1483077149","1483077185","1483077148","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974268","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077155","1483077156","1483077186","1483077155","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077159","1483077160","1483077211","1483077159","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077171","1483077172","1483077213","1483077171","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077186","1483077187","1483077227","1483077186","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974278","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077192","1483077193","1483077226","1483077192","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077212","1483077213","1483077272","1483077212","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077214","1483077216","1483077260","1483077214","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077216","1483077219","1483077278","1483077216","1","8","0","-1","59","3","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077226","1483077227","1483077275","1483077226","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077237","1483077238","1483077269","1483077237","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077272","1483077273","1483077335","1483077272","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077276","1483077277","1483077328","1483077276","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077279","1483077280","1483077424","1483077279","1","8","0","-1","144","1","1152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077290","1483077291","1483077370","1483077290","1","8","0","-1","79","1","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077320","1483077321","1483077374","1483077320","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077347","1483077348","1483077378","1483077347","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077444","1483077447","1483077500","1483077444","1","8","0","-1","53","3","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077451","1483077453","1483077496","1483077451","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077485","1483077486","1483077517","1483077485","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077497","1483077498","1483077531","1483077497","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077501","1483077502","1483077538","1483077501","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077518","1483077520","1483077554","1483077518","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077531","1483077532","1483077567","1483077531","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077539","1483077540","1483077598","1483077539","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077540","1483077543","1483077600","1483077540","1","8","0","-1","57","3","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974379","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077544","1483077546","1483077580","1483077544","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974385","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077567","1483077568","1483077615","1483077567","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077580","1483077582","1483077657","1483077580","1","8","0","-1","75","2","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077584","1483077585","1483077656","1483077584","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077601","1483077602","1483077663","1483077601","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077616","1483077617","1483077653","1483077616","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077657","1483077658","1483077731","1483077657","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077699","1483077701","1483077756","1483077699","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077747","1483077748","1483077808","1483077747","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077767","1483077768","1483077830","1483077767","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077802","1483077803","1483077905","1483077802","1","8","0","-1","102","1","816","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077808","1483077809","1483077924","1483077808","1","8","0","-1","115","1","920","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077851","1483077852","1483077883","1483077851","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077895","1483077897","1483077948","1483077895","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077905","1483077906","1483077936","1483077905","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077941","1483077942","1483077973","1483077941","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077948","1483077949","1483077984","1483077948","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077959","1483077960","1483078007","1483077959","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077962","1483077963","1483078098","1483077962","1","8","0","-1","135","1","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077985","1483077986","1483078020","1483077985","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483077991","1483077992","1483078032","1483077991","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078033","1483078034","1483078066","1483078033","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078039","1483078040","1483078080","1483078039","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078090","1483078093","1483078129","1483078090","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078098","1483078099","1483078163","1483078098","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078110","1483078112","1483078157","1483078110","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078112","1483078115","1483078152","1483078112","1","8","0","-1","37","3","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078182","1483078183","1483078217","1483078182","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078209","1483078210","1483078244","1483078209","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974567","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078216","1483078217","1483078250","1483078216","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078217","1483078220","1483078250","1483078217","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974573","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078231","1483078234","1483078271","1483078231","1","8","0","-1","37","3","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078234","1483078237","1483078284","1483078234","1","8","0","-1","47","3","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974589","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078274","1483078275","1483078305","1483078274","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974609","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078314","1483078315","1483078351","1483078314","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078338","1483078339","1483078374","1483078338","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078354","1483078355","1483078395","1483078354","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078368","1483078369","1483078413","1483078368","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078375","1483078377","1483078422","1483078375","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078399","1483078402","1483078451","1483078399","1","8","0","-1","49","3","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078413","1483078414","1483078457","1483078413","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078417","1483078418","1483078450","1483078417","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078423","1483078424","1483078457","1483078423","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078453","1483078454","1483078488","1483078453","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078475","1483078476","1483078532","1483078475","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078478","1483078479","1483078522","1483078478","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974677","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078497","1483078498","1483078529","1483078497","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974687","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078531","1483078532","1483078565","1483078531","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078532","1483078533","1483078570","1483078532","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078551","1483078552","1483078611","1483078551","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974695","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078556","1483078558","1483078590","1483078556","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974697","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078558","1483078561","1483078614","1483078558","1","8","0","-1","53","3","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078565","1483078566","1483078599","1483078565","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078567","1483078569","1483078610","1483078567","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974705","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078591","1483078592","1483078628","1483078591","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078598","1483078599","1483078664","1483078598","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078600","1483078602","1483078673","1483078600","1","8","0","-1","71","2","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974717","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078611","1483078613","1483078701","1483078611","1","8","0","-1","88","2","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974719","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078615","1483078618","1483078704","1483078615","1","8","0","-1","86","3","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974721","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078629","1483078630","1483078670","1483078629","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974727","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078665","1483078666","1483078737","1483078665","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974729","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078667","1483078669","1483078706","1483078667","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974731","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078670","1483078672","1483078723","1483078670","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974733","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078674","1483078675","1483078718","1483078674","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974735","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078701","1483078702","1483078751","1483078701","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078704","1483078705","1483078773","1483078704","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974739","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078706","1483078708","1483078750","1483078706","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974747","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078750","1483078751","1483078785","1483078750","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078752","1483078754","1483078816","1483078752","1","8","0","-1","62","2","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078768","1483078769","1483078854","1483078768","1","8","0","-1","85","1","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974761","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078786","1483078788","1483078845","1483078786","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078789","1483078790","1483078842","1483078789","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078842","1483078843","1483078912","1483078842","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078872","1483078873","1483078932","1483078872","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078891","1483078892","1483078945","1483078891","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078912","1483078913","1483078986","1483078912","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078960","1483078961","1483079020","1483078960","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078973","1483078975","1483079019","1483078973","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078973","1483078975","1483079030","1483078973","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078975","1483078978","1483079141","1483078975","1","8","0","-1","163","3","1304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078987","1483078988","1483079056","1483078987","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483078998","1483078999","1483079092","1483078998","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079019","1483079020","1483079156","1483079019","1","8","0","-1","136","1","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079021","1483079023","1483079159","1483079021","1","8","0","-1","136","2","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974815","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079031","1483079032","1483079170","1483079031","1","8","0","-1","138","1","1104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974817","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079057","1483079058","1483079195","1483079057","1","8","0","-1","137","1","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974827","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079142","1483079143","1483079291","1483079142","1","8","0","-1","148","1","1184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974829","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079155","1483079156","1483079298","1483079155","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974833","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079160","1483079161","1483079295","1483079160","1","8","0","-1","134","1","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974835","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079170","1483079171","1483079285","1483079170","1","8","0","-1","114","1","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079195","1483079196","1483079272","1483079195","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079298","1483079299","1483079344","1483079298","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079392","1483079394","1483079451","1483079392","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079413","1483079414","1483079477","1483079413","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079438","1483079441","1483079485","1483079438","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974881","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079442","1483079444","1483079486","1483079442","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079445","1483079447","1483079488","1483079445","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079451","1483079452","1483079497","1483079451","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079468","1483079469","1483079513","1483079468","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079477","1483079478","1483079541","1483079477","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079485","1483079486","1483079548","1483079485","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079486","1483079489","1483079537","1483079486","1","8","0","-1","48","3","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079489","1483079492","1483079653","1483079489","1","8","0","-1","161","3","1288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079498","1483079499","1483079567","1483079498","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079513","1483079514","1483079601","1483079513","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079538","1483079539","1483079614","1483079538","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079541","1483079542","1483079592","1483079541","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079548","1483079549","1483079616","1483079548","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079592","1483079593","1483079673","1483079592","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079601","1483079602","1483079642","1483079601","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079615","1483079616","1483079662","1483079615","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079617","1483079619","1483079690","1483079617","1","8","0","-1","71","2","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079642","1483079643","1483079677","1483079642","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974929","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079653","1483079654","1483079702","1483079653","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079673","1483079674","1483079714","1483079673","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079677","1483079678","1483079766","1483079677","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079686","1483079687","1483079745","1483079686","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079704","1483079706","1483079773","1483079704","1","8","0","-1","67","2","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079766","1483079767","1483079813","1483079766","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079814","1483079815","1483079892","1483079814","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079831","1483079833","1483079909","1483079831","1","8","0","-1","76","2","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079846","1483079847","1483079921","1483079846","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079849","1483079850","1483079919","1483079849","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079873","1483079874","1483079911","1483079873","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079893","1483079894","1483079925","1483079893","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079895","1483079897","1483079944","1483079895","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079910","1483079911","1483079976","1483079910","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079912","1483079914","1483079965","1483079912","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079922","1483079923","1483080019","1483079922","1","8","0","-1","96","1","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079945","1483079946","1483080010","1483079945","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079966","1483079967","1483080066","1483079966","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483079977","1483079978","1483080011","1483079977","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["974999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080012","1483080014","1483080048","1483080012","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080019","1483080020","1483080052","1483080019","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080042","1483080044","1483080091","1483080042","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080053","1483080054","1483080088","1483080053","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080066","1483080067","1483080104","1483080066","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080096","1483080099","1483080153","1483080096","1","8","0","-1","54","3","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080104","1483080105","1483080136","1483080104","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080111","1483080113","1483080239","1483080111","1","8","0","-1","126","2","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080136","1483080137","1483080172","1483080136","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080151","1483080152","1483080188","1483080151","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080154","1483080155","1483080186","1483080154","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080238","1483080240","1483080275","1483080238","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080240","1483080241","1483080303","1483080240","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080244","1483080245","1483080306","1483080244","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080245","1483080248","1483080375","1483080245","1","8","0","-1","127","3","1016","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080249","1483080251","1483080283","1483080249","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080260","1483080261","1483080303","1483080260","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080284","1483080285","1483080322","1483080284","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080299","1483080300","1483080331","1483080299","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080323","1483080324","1483080366","1483080323","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080328","1483080329","1483080376","1483080328","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975102","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080330","1483080332","1483080373","1483080330","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080332","1483080335","1483080365","1483080332","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080336","1483080338","1483080370","1483080336","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080377","1483080378","1483080431","1483080377","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080392","1483080395","1483080437","1483080392","1","8","0","-1","42","3","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975143","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080440","1483080441","1483080481","1483080440","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975149","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080457","1483080458","1483080495","1483080457","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080458","1483080461","1483080492","1483080458","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080493","1483080495","1483080547","1483080493","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080493","1483080495","1483080538","1483080493","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080496","1483080498","1483080623","1483080496","1","8","0","-1","125","2","1000","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080512","1483080513","1483080563","1483080512","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975182","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080549","1483080550","1483080590","1483080549","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975188","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080571","1483080572","1483080611","1483080571","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975192","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080579","1483080580","1483080621","1483080579","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975196","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080590","1483080591","1483080623","1483080590","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080622","1483080623","1483080670","1483080622","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080623","1483080625","1483080657","1483080623","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080623","1483080625","1483080670","1483080623","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080625","1483080626","1483080744","1483080625","1","8","0","-1","118","1","944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080632","1483080634","1483080693","1483080632","1","8","0","-1","59","2","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080738","1483080739","1483080780","1483080738","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975266","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080748","1483080749","1483080795","1483080748","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080817","1483080818","1483080867","1483080817","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080820","1483080821","1483080865","1483080820","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080866","1483080867","1483080911","1483080866","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080867","1483080868","1483080911","1483080867","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080912","1483080914","1483080951","1483080912","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080916","1483080917","1483080948","1483080916","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080941","1483080943","1483080973","1483080941","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975328","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080951","1483080952","1483080983","1483080951","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483080952","1483080953","1483080995","1483080952","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081001","1483081002","1483081040","1483081001","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081002","1483081003","1483081047","1483081002","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081008","1483081009","1483081074","1483081008","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975355","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081029","1483081030","1483081064","1483081029","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081048","1483081049","1483081084","1483081048","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081065","1483081066","1483081108","1483081065","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081081","1483081082","1483081123","1483081081","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081081","1483081082","1483081121","1483081081","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081083","1483081084","1483081120","1483081083","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975377","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081096","1483081097","1483081132","1483081096","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081131","1483081132","1483081178","1483081131","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081132","1483081135","1483081187","1483081132","1","8","0","-1","52","3","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081145","1483081147","1483081193","1483081145","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081178","1483081179","1483081217","1483081178","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081184","1483081185","1483081225","1483081184","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081193","1483081194","1483081237","1483081193","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081225","1483081226","1483081271","1483081225","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081271","1483081273","1483081395","1483081271","1","8","0","-1","122","2","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975452","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081325","1483081326","1483081387","1483081325","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081326","1483081329","1483081383","1483081326","1","8","0","-1","54","3","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081337","1483081338","1483081391","1483081337","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975458","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081346","1483081347","1483081388","1483081346","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081380","1483081381","1483081442","1483081380","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081383","1483081384","1483081450","1483081383","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081392","1483081394","1483081451","1483081392","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081395","1483081397","1483081448","1483081395","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975478","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081442","1483081443","1483081495","1483081442","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081444","1483081445","1483081525","1483081444","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081450","1483081451","1483081621","1483081450","1","8","0","-1","170","1","1360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081451","1483081452","1483081553","1483081451","1","8","0","-1","101","1","808","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081496","1483081498","1483081582","1483081496","1","8","0","-1","84","2","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081537","1483081538","1483081575","1483081537","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081553","1483081554","1483081599","1483081553","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975511","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081556","1483081558","1483081590","1483081556","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081602","1483081603","1483081637","1483081602","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081621","1483081622","1483081725","1483081621","1","8","0","-1","103","1","824","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081622","1483081624","1483081659","1483081622","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081667","1483081668","1483081698","1483081667","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081674","1483081675","1483081711","1483081674","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975554","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081698","1483081699","1483081732","1483081698","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975556","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081700","1483081702","1483081737","1483081700","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081703","1483081705","1483081739","1483081703","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081735","1483081738","1483081782","1483081735","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081738","1483081739","1483081797","1483081738","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081744","1483081745","1483081855","1483081744","1","8","0","-1","110","1","880","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081753","1483081756","1483081787","1483081753","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081768","1483081769","1483081804","1483081768","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081783","1483081786","1483081822","1483081783","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081787","1483081789","1483081824","1483081787","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081816","1483081817","1483081849","1483081816","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975598","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081820","1483081821","1483081860","1483081820","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975600","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081821","1483081822","1483081861","1483081821","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081824","1483081827","1483081857","1483081824","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081861","1483081864","1483081909","1483081861","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081877","1483081878","1483081994","1483081877","1","8","0","-1","116","1","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081880","1483081881","1483081925","1483081880","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081911","1483081912","1483081946","1483081911","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975638","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081917","1483081918","1483081951","1483081917","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975642","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081934","1483081935","1483081976","1483081934","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975646","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081941","1483081942","1483081978","1483081941","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975650","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081946","1483081948","1483081981","1483081946","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081982","1483081984","1483082019","1483081982","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483081995","1483081996","1483082110","1483081995","1","8","0","-1","114","1","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082028","1483082029","1483082063","1483082028","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082093","1483082094","1483082127","1483082093","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082097","1483082098","1483082136","1483082097","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082101","1483082102","1483082141","1483082101","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082105","1483082106","1483082201","1483082105","1","8","0","-1","95","1","760","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082111","1483082112","1483082144","1483082111","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082114","1483082115","1483082149","1483082114","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082137","1483082138","1483082181","1483082137","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082145","1483082146","1483082178","1483082145","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082165","1483082166","1483082200","1483082165","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082178","1483082179","1483082236","1483082178","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082179","1483082181","1483082217","1483082179","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082181","1483082182","1483082236","1483082181","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082236","1483082237","1483082271","1483082236","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082256","1483082259","1483082299","1483082256","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082271","1483082272","1483082350","1483082271","1","8","0","-1","78","1","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082279","1483082280","1483082317","1483082279","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082297","1483082298","1483082344","1483082297","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082300","1483082301","1483082347","1483082300","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975775","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082317","1483082318","1483082352","1483082317","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082346","1483082348","1483082397","1483082346","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082350","1483082351","1483082394","1483082350","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082352","1483082354","1483082384","1483082352","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082385","1483082386","1483082419","1483082385","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975798","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082388","1483082389","1483082456","1483082388","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082395","1483082397","1483082464","1483082395","1","8","0","-1","67","2","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082412","1483082413","1483082497","1483082412","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975810","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082414","1483082416","1483082455","1483082414","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082419","1483082420","1483082459","1483082419","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082456","1483082457","1483082517","1483082456","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082460","1483082461","1483082492","1483082460","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975826","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082488","1483082489","1483082540","1483082488","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082498","1483082499","1483082532","1483082498","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082533","1483082534","1483082584","1483082533","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975840","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082536","1483082537","1483082567","1483082536","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082541","1483082542","1483082582","1483082541","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975846","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082544","1483082545","1483082596","1483082544","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082558","1483082559","1483082630","1483082558","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082568","1483082569","1483082721","1483082568","1","8","0","-1","152","1","1216","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082570","1483082572","1483082628","1483082570","1","8","0","-1","56","2","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975856","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082585","1483082586","1483082624","1483082585","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975862","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082624","1483082627","1483082753","1483082624","1","8","0","-1","126","3","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975866","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082631","1483082633","1483082749","1483082631","1","8","0","-1","116","2","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082725","1483082728","1483082800","1483082725","1","8","0","-1","72","3","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082838","1483082839","1483083037","1483082838","1","8","0","-1","198","1","1584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082841","1483082842","1483082895","1483082841","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082856","1483082857","1483083015","1483082856","1","8","0","-1","158","1","1264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082868","1483082869","1483082955","1483082868","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483082981","1483082982","1483083023","1483082981","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083016","1483083017","1483083101","1483083016","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083026","1483083027","1483083188","1483083026","1","8","0","-1","161","1","1288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083037","1483083039","1483083123","1483083037","1","8","0","-1","84","2","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083053","1483083054","1483083119","1483083053","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083080","1483083081","1483083124","1483083080","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083101","1483083102","1483083144","1483083101","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083119","1483083120","1483083151","1483083119","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083123","1483083124","1483083193","1483083123","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083125","1483083126","1483083174","1483083125","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083141","1483083142","1483083174","1483083141","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083144","1483083145","1483083176","1483083144","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975975","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083151","1483083152","1483083190","1483083151","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975984","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083177","1483083178","1483083243","1483083177","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083190","1483083192","1483083251","1483083190","1","8","0","-1","59","2","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083194","1483083195","1483083237","1483083194","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083237","1483083238","1483083301","1483083237","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["975998","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083244","1483083245","1483083307","1483083244","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976002","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083251","1483083252","1483083309","1483083251","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976014","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083302","1483083305","1483083368","1483083302","1","8","0","-1","63","3","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976018","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083309","1483083311","1483083357","1483083309","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083344","1483083345","1483083381","1483083344","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083350","1483083351","1483083386","1483083350","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976025","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083351","1483083354","1483083429","1483083351","1","8","0","-1","75","3","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083365","1483083367","1483083518","1483083365","1","8","0","-1","151","2","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976033","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083369","1483083370","1483083446","1483083369","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976075","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083485","1483083486","1483083549","1483083485","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083581","1483083584","1483083645","1483083581","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083584","1483083587","1483083619","1483083584","1","8","0","-1","32","3","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976122","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083592","1483083593","1483083624","1483083592","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976126","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083604","1483083606","1483083640","1483083604","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083672","1483083673","1483083739","1483083672","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083674","1483083676","1483083712","1483083674","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083677","1483083679","1483083715","1483083677","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976200","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083761","1483083762","1483083797","1483083761","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083769","1483083770","1483083806","1483083769","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083838","1483083841","1483083910","1483083838","1","8","0","-1","69","3","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976238","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083842","1483083843","1483083875","1483083842","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083905","1483083907","1483083969","1483083905","1","8","0","-1","62","2","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083909","1483083910","1483083942","1483083909","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083965","1483083968","1483084028","1483083965","1","8","0","-1","60","3","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483083978","1483083979","1483084021","1483083978","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084064","1483084065","1483084186","1483084064","1","8","0","-1","121","1","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084066","1483084068","1483084105","1483084066","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084073","1483084074","1483084104","1483084073","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084129","1483084132","1483084248","1483084129","1","8","0","-1","116","3","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084132","1483084133","1483084165","1483084132","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084201","1483084202","1483084238","1483084201","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084206","1483084207","1483084253","1483084206","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084214","1483084215","1483084251","1483084214","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084220","1483084221","1483084259","1483084220","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976407","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084221","1483084224","1483084279","1483084221","1","8","0","-1","55","3","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084238","1483084239","1483084287","1483084238","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084251","1483084252","1483084328","1483084251","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084253","1483084255","1483084343","1483084253","1","8","0","-1","88","2","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084279","1483084280","1483084445","1483084279","1","8","0","-1","165","1","1320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084289","1483084291","1483084387","1483084289","1","8","0","-1","96","2","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084385","1483084386","1483084470","1483084385","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084387","1483084389","1483084424","1483084387","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084446","1483084447","1483084479","1483084446","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084484","1483084485","1483084515","1483084484","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084485","1483084486","1483084569","1483084485","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084497","1483084498","1483084533","1483084497","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084503","1483084504","1483084546","1483084503","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084542","1483084543","1483084575","1483084542","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084590","1483084591","1483084624","1483084590","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084595","1483084596","1483084635","1483084595","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084607","1483084608","1483084738","1483084607","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084624","1483084625","1483084660","1483084624","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084629","1483084631","1483084667","1483084629","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084660","1483084661","1483084718","1483084660","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084668","1483084669","1483084702","1483084668","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084705","1483084706","1483084783","1483084705","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084718","1483084719","1483084961","1483084718","1","8","0","-1","242","1","1936","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084748","1483084749","1483084841","1483084748","1","8","0","-1","92","1","736","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976579","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084832","1483084833","1483084878","1483084832","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084925","1483084926","1483084959","1483084925","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084931","1483084932","1483084972","1483084931","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976615","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084940","1483084941","1483084982","1483084940","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084941","1483084943","1483084992","1483084941","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976623","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084962","1483084963","1483085039","1483084962","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084972","1483084973","1483085026","1483084972","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084974","1483084975","1483085044","1483084974","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483084983","1483084984","1483085015","1483084983","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085064","1483085066","1483085122","1483085064","1","8","0","-1","56","2","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976666","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085067","1483085068","1483085098","1483085067","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085068","1483085069","1483085138","1483085068","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085097","1483085098","1483085130","1483085097","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085163","1483085164","1483085194","1483085163","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085170","1483085171","1483085212","1483085170","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085173","1483085174","1483085204","1483085173","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085185","1483085186","1483085252","1483085185","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976716","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085195","1483085196","1483085238","1483085195","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085205","1483085206","1483085245","1483085205","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085208","1483085209","1483085244","1483085208","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085213","1483085215","1483085250","1483085213","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085237","1483085238","1483085269","1483085237","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085282","1483085285","1483085315","1483085282","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085303","1483085304","1483085341","1483085303","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085305","1483085307","1483085405","1483085305","1","8","0","-1","98","2","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085315","1483085316","1483085357","1483085315","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085326","1483085327","1483085396","1483085326","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085339","1483085340","1483085378","1483085339","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085426","1483085427","1483085496","1483085426","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085440","1483085441","1483085477","1483085440","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085498","1483085500","1483085548","1483085498","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976850","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085510","1483085511","1483085572","1483085510","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976852","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085513","1483085514","1483085549","1483085513","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976854","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085514","1483085515","1483085569","1483085514","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976868","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085569","1483085570","1483085611","1483085569","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976880","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085585","1483085586","1483085624","1483085585","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976886","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085604","1483085606","1483085649","1483085604","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085611","1483085612","1483085672","1483085611","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085627","1483085628","1483085662","1483085627","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085633","1483085634","1483085717","1483085633","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085701","1483085703","1483085735","1483085701","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085713","1483085714","1483085751","1483085713","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085718","1483085720","1483085752","1483085718","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976945","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085752","1483085753","1483085806","1483085752","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085792","1483085793","1483085823","1483085792","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085824","1483085826","1483085868","1483085824","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976979","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085834","1483085835","1483085874","1483085834","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085846","1483085847","1483085880","1483085846","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085847","1483085850","1483085883","1483085847","1","8","0","-1","33","3","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085875","1483085878","1483085912","1483085875","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085883","1483085884","1483085915","1483085883","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["976999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085894","1483085895","1483085945","1483085894","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085916","1483085917","1483085962","1483085916","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085918","1483085920","1483085952","1483085918","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085928","1483085929","1483085977","1483085928","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085969","1483085971","1483086033","1483085969","1","8","0","-1","62","2","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085971","1483085974","1483086044","1483085971","1","8","0","-1","70","3","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085977","1483085978","1483086031","1483085977","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483085979","1483085981","1483086024","1483085979","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086034","1483086035","1483086090","1483086034","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086056","1483086058","1483086096","1483086056","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086075","1483086076","1483086137","1483086075","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086083","1483086084","1483086141","1483086083","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977064","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086090","1483086091","1483086154","1483086090","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977076","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086145","1483086146","1483086240","1483086145","1","8","0","-1","94","1","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086149","1483086150","1483086327","1483086149","1","8","0","-1","177","1","1416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977080","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086155","1483086156","1483086262","1483086155","1","8","0","-1","106","1","848","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086160","1483086161","1483086260","1483086160","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086189","1483086190","1483086278","1483086189","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086261","1483086262","1483086298","1483086261","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086296","1483086298","1483086333","1483086296","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977115","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086298","1483086301","1483086341","1483086298","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977124","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086309","1483086312","1483086347","1483086309","1","8","0","-1","35","3","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086413","1483086415","1483086454","1483086413","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086414","1483086415","1483086447","1483086414","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977206","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086506","1483086507","1483086554","1483086506","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086514","1483086515","1483086548","1483086514","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086518","1483086519","1483086551","1483086518","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086528","1483086529","1483086561","1483086528","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977257","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086613","1483086614","1483086680","1483086613","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977259","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086614","1483086615","1483086649","1483086614","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086694","1483086695","1483086758","1483086694","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086721","1483086722","1483086758","1483086721","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086747","1483086749","1483086781","1483086747","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086788","1483086789","1483086826","1483086788","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086789","1483086790","1483086824","1483086789","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086790","1483086792","1483086839","1483086790","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086797","1483086798","1483086836","1483086797","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086806","1483086807","1483086895","1483086806","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086808","1483086810","1483086865","1483086808","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086825","1483086826","1483086906","1483086825","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977354","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086826","1483086829","1483086868","1483086826","1","8","0","-1","39","3","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086836","1483086838","1483086868","1483086836","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086840","1483086841","1483086882","1483086840","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086869","1483086871","1483086901","1483086869","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977369","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086870","1483086871","1483086905","1483086870","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977375","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086895","1483086898","1483086929","1483086895","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086896","1483086898","1483086931","1483086896","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977380","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086902","1483086903","1483086955","1483086902","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977384","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086906","1483086909","1483086956","1483086906","1","8","0","-1","47","3","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977386","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086916","1483086917","1483086973","1483086916","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977388","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086929","1483086930","1483086973","1483086929","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977390","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086932","1483086933","1483086973","1483086932","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086957","1483086958","1483087008","1483086957","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086963","1483086964","1483087008","1483086963","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977403","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086974","1483086977","1483087008","1483086974","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483086975","1483086977","1483087009","1483086975","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087008","1483087009","1483087047","1483087008","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087009","1483087012","1483087052","1483087009","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977424","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087041","1483087042","1483087075","1483087041","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087047","1483087048","1483087125","1483087047","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977432","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087052","1483087053","1483087096","1483087052","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977434","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087055","1483087056","1483087097","1483087055","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087076","1483087077","1483087122","1483087076","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087096","1483087097","1483087170","1483087096","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977450","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087098","1483087100","1483087162","1483087098","1","8","0","-1","62","2","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977454","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087126","1483087127","1483087241","1483087126","1","8","0","-1","114","1","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977456","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087129","1483087130","1483087203","1483087129","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087150","1483087152","1483087221","1483087150","1","8","0","-1","69","2","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087163","1483087164","1483087229","1483087163","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087170","1483087171","1483087296","1483087170","1","8","0","-1","125","1","1000","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087184","1483087185","1483087300","1483087184","1","8","0","-1","115","1","920","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087204","1483087205","1483087276","1483087204","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977480","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087230","1483087231","1483087316","1483087230","1","8","0","-1","85","1","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977488","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087276","1483087277","1483087364","1483087276","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087300","1483087301","1483087339","1483087300","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977494","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087317","1483087318","1483087354","1483087317","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087342","1483087343","1483087377","1483087342","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087348","1483087351","1483087395","1483087348","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977508","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087364","1483087365","1483087414","1483087364","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977510","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087375","1483087378","1483087414","1483087375","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087395","1483087396","1483087429","1483087395","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087397","1483087399","1483087435","1483087397","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977522","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087414","1483087415","1483087459","1483087414","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977530","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087436","1483087438","1483087500","1483087436","1","8","0","-1","62","2","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087464","1483087465","1483087509","1483087464","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977540","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087474","1483087476","1483087516","1483087474","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087500","1483087502","1483087552","1483087500","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087509","1483087510","1483087554","1483087509","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087517","1483087518","1483087568","1483087517","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087519","1483087521","1483087569","1483087519","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087525","1483087526","1483087562","1483087525","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087553","1483087554","1483087588","1483087553","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087563","1483087564","1483087630","1483087563","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087568","1483087569","1483087615","1483087568","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087589","1483087590","1483087628","1483087589","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087598","1483087599","1483087634","1483087598","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977585","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087616","1483087618","1483087659","1483087616","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087625","1483087626","1483087658","1483087625","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087629","1483087631","1483087686","1483087629","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087634","1483087635","1483087681","1483087634","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087658","1483087659","1483087697","1483087658","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977601","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087660","1483087662","1483087695","1483087660","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977605","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087681","1483087682","1483087744","1483087681","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977611","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087698","1483087699","1483087759","1483087698","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087740","1483087741","1483087794","1483087740","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087744","1483087745","1483087831","1483087744","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977621","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087754","1483087755","1483087838","1483087754","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977636","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087832","1483087835","1483087865","1483087832","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977656","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087868","1483087869","1483087900","1483087868","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977658","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087871","1483087872","1483087910","1483087871","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977660","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087874","1483087875","1483087907","1483087874","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977662","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087878","1483087879","1483087911","1483087878","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977664","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087884","1483087885","1483087952","1483087884","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977668","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087901","1483087902","1483087948","1483087901","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087908","1483087909","1483087948","1483087908","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977703","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087978","1483087981","1483088016","1483087978","1","8","0","-1","35","3","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977705","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087982","1483087984","1483088016","1483087982","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977707","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483087985","1483087987","1483088018","1483087985","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977713","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088000","1483088001","1483088042","1483088000","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088019","1483088021","1483088063","1483088019","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088077","1483088078","1483088115","1483088077","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088092","1483088095","1483088129","1483088092","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977753","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088093","1483088095","1483088180","1483088093","1","8","0","-1","85","2","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977757","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088100","1483088101","1483088175","1483088100","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088115","1483088116","1483088150","1483088115","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088138","1483088141","1483088175","1483088138","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977773","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088159","1483088161","1483088194","1483088159","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088178","1483088179","1483088214","1483088178","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977783","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088180","1483088182","1483088216","1483088180","1","8","0","-1","34","2","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088217","1483088218","1483088259","1483088217","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088222","1483088223","1483088264","1483088222","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088234","1483088235","1483088331","1483088234","1","8","0","-1","96","1","768","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088249","1483088250","1483088297","1483088249","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088260","1483088261","1483088327","1483088260","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977805","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088262","1483088264","1483088299","1483088262","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977837","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088343","1483088346","1483088385","1483088343","1","8","0","-1","39","3","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088353","1483088354","1483088385","1483088353","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088359","1483088360","1483088399","1483088359","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088363","1483088364","1483088406","1483088363","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088380","1483088381","1483088411","1483088380","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977890","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088447","1483088448","1483088528","1483088447","1","8","0","-1","80","1","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977892","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088449","1483088451","1483088512","1483088449","1","8","0","-1","61","2","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977894","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088453","1483088454","1483088503","1483088453","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977896","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088465","1483088466","1483088496","1483088465","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977908","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088503","1483088504","1483088541","1483088503","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977920","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088528","1483088529","1483088563","1483088528","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977926","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088542","1483088544","1483088591","1483088542","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977928","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088551","1483088552","1483088600","1483088551","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977930","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088554","1483088555","1483088621","1483088554","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977932","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088564","1483088565","1483088603","1483088564","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977934","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088565","1483088568","1483088604","1483088565","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977936","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088570","1483088571","1483088644","1483088570","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977938","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088592","1483088593","1483088677","1483088592","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977940","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088601","1483088602","1483088656","1483088601","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977942","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088604","1483088605","1483088644","1483088604","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088648","1483088651","1483088681","1483088648","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977958","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088658","1483088660","1483088690","1483088658","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977966","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088678","1483088679","1483088710","1483088678","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088686","1483088687","1483088718","1483088686","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977972","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088691","1483088692","1483088733","1483088691","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977978","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088706","1483088709","1483088745","1483088706","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977980","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088711","1483088712","1483088747","1483088711","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088718","1483088719","1483088794","1483088718","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["977988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088748","1483088749","1483088783","1483088748","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978006","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088807","1483088808","1483088840","1483088807","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978020","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088840","1483088843","1483088892","1483088840","1","8","0","-1","49","3","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978022","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088844","1483088846","1483088909","1483088844","1","8","0","-1","63","2","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088847","1483088849","1483088884","1483088847","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088850","1483088852","1483088890","1483088850","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088854","1483088855","1483088928","1483088854","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978036","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088890","1483088891","1483088921","1483088890","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088893","1483088894","1483088934","1483088893","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088922","1483088923","1483088963","1483088922","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088935","1483088938","1483088976","1483088935","1","8","0","-1","38","3","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088954","1483088955","1483088997","1483088954","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978058","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088962","1483088963","1483089015","1483088962","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978060","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088963","1483088966","1483088998","1483088963","1","8","0","-1","32","3","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088977","1483088978","1483089027","1483088977","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978068","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088997","1483088998","1483089041","1483088997","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978070","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088998","1483088999","1483089061","1483088998","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483088999","1483089001","1483089075","1483088999","1","8","0","-1","74","2","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089011","1483089012","1483089154","1483089011","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089028","1483089029","1483089084","1483089028","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089062","1483089063","1483089117","1483089062","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978086","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089076","1483089079","1483089150","1483089076","1","8","0","-1","71","3","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978088","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089084","1483089085","1483089133","1483089084","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978096","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089140","1483089141","1483089208","1483089140","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089150","1483089151","1483089227","1483089150","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978104","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089161","1483089163","1483089233","1483089161","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978110","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089209","1483089210","1483089270","1483089209","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978120","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089234","1483089235","1483089428","1483089234","1","8","0","-1","193","1","1544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089320","1483089322","1483089361","1483089320","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089379","1483089380","1483089413","1483089379","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978160","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089388","1483089389","1483089424","1483089388","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089389","1483089392","1483089422","1483089389","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978168","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089413","1483089414","1483089460","1483089413","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978172","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089423","1483089425","1483089457","1483089423","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978204","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089501","1483089504","1483089545","1483089501","1","8","0","-1","41","3","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978208","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089505","1483089506","1483089537","1483089505","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978210","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089506","1483089507","1483089538","1483089506","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978218","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089539","1483089541","1483089572","1483089539","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978232","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089573","1483089574","1483089605","1483089573","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089591","1483089593","1483089625","1483089591","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089632","1483089633","1483089664","1483089632","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978256","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089633","1483089634","1483089675","1483089633","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089645","1483089646","1483089733","1483089645","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978260","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089647","1483089649","1483089694","1483089647","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089740","1483089742","1483089774","1483089740","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978304","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089753","1483089756","1483089824","1483089753","1","8","0","-1","68","3","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089757","1483089759","1483089797","1483089757","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089761","1483089762","1483089797","1483089761","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978342","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089832","1483089834","1483089886","1483089832","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978344","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089838","1483089839","1483089869","1483089838","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978346","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089839","1483089842","1483089872","1483089839","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978348","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089844","1483089845","1483089911","1483089844","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089847","1483089848","1483089897","1483089847","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978352","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089850","1483089851","1483089918","1483089850","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089897","1483089898","1483089930","1483089897","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089911","1483089913","1483089955","1483089911","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089920","1483089921","1483089956","1483089920","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978376","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089933","1483089934","1483089965","1483089933","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089955","1483089956","1483089998","1483089955","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483089956","1483089958","1483090003","1483089956","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978404","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090004","1483090005","1483090039","1483090004","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978406","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090019","1483090020","1483090052","1483090019","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978412","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090035","1483090037","1483090074","1483090035","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978416","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090040","1483090043","1483090078","1483090040","1","8","0","-1","35","3","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978420","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090053","1483090054","1483090087","1483090053","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978428","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090076","1483090078","1483090137","1483090076","1","8","0","-1","59","2","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978430","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090079","1483090081","1483090126","1483090079","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978432","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090084","1483090085","1483090159","1483090084","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978434","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090085","1483090088","1483090134","1483090085","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978438","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090095","1483090096","1483090129","1483090095","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978440","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090096","1483090099","1483090155","1483090096","1","8","0","-1","56","3","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978442","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090107","1483090108","1483090178","1483090107","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978444","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090127","1483090128","1483090172","1483090127","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978460","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090170","1483090171","1483090206","1483090170","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978462","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090173","1483090174","1483090209","1483090173","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090173","1483090174","1483090210","1483090173","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090178","1483090179","1483090234","1483090178","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090196","1483090198","1483090240","1483090196","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978473","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090208","1483090209","1483090239","1483090208","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090210","1483090213","1483090261","1483090210","1","8","0","-1","48","3","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090214","1483090216","1483090289","1483090214","1","8","0","-1","73","2","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090234","1483090235","1483090279","1483090234","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090240","1483090241","1483090339","1483090240","1","8","0","-1","98","1","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090280","1483090281","1483090355","1483090280","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978499","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090317","1483090318","1483090446","1483090317","1","8","0","-1","128","1","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090358","1483090359","1483090428","1483090358","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978517","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090430","1483090432","1483090553","1483090430","1","8","0","-1","121","2","968","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090447","1483090448","1483090574","1483090447","1","8","0","-1","126","1","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978523","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090462","1483090463","1483090564","1483090462","1","8","0","-1","101","1","808","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090465","1483090466","1483090560","1483090465","1","8","0","-1","94","1","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090551","1483090552","1483090693","1483090551","1","8","0","-1","141","1","1128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090554","1483090555","1483090699","1483090554","1","8","0","-1","144","1","1152","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090560","1483090561","1483090645","1483090560","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090565","1483090566","1483090613","1483090565","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090603","1483090604","1483090649","1483090603","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978549","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090620","1483090623","1483090684","1483090620","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978551","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090646","1483090647","1483090689","1483090646","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090652","1483090653","1483090710","1483090652","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978559","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090685","1483090686","1483090733","1483090685","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090689","1483090690","1483090737","1483090689","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090694","1483090695","1483090737","1483090694","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978565","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090699","1483090700","1483090735","1483090699","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090710","1483090711","1483090765","1483090710","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978574","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090736","1483090737","1483090851","1483090736","1","8","0","-1","114","1","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090737","1483090738","1483090795","1483090737","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978582","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090765","1483090766","1483090802","1483090765","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090794","1483090795","1483090839","1483090794","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090796","1483090797","1483090837","1483090796","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090797","1483090798","1483090851","1483090797","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090800","1483090801","1483090838","1483090800","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978598","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090803","1483090804","1483090843","1483090803","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090838","1483090839","1483090876","1483090838","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090839","1483090840","1483090894","1483090839","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090852","1483090855","1483090901","1483090852","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090877","1483090878","1483090934","1483090877","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090877","1483090878","1483090935","1483090877","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978619","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090891","1483090892","1483090991","1483090891","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090897","1483090899","1483090954","1483090897","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978627","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090901","1483090902","1483090953","1483090901","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978631","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090934","1483090935","1483090981","1483090934","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090936","1483090938","1483090973","1483090936","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978637","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090954","1483090955","1483091015","1483090954","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090974","1483090975","1483091026","1483090974","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090977","1483090978","1483091030","1483090977","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483090992","1483090993","1483091040","1483090992","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091031","1483091032","1483091086","1483091031","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091034","1483091035","1483091086","1483091034","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091086","1483091087","1483091181","1483091086","1","8","0","-1","94","1","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978676","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091087","1483091090","1483091133","1483091087","1","8","0","-1","43","3","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091133","1483091134","1483091181","1483091133","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978704","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091191","1483091192","1483091236","1483091191","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978706","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091193","1483091195","1483091237","1483091193","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091200","1483091201","1483091245","1483091200","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978712","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091203","1483091204","1483091237","1483091203","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091205","1483091207","1483091253","1483091205","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978722","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091238","1483091240","1483091280","1483091238","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091267","1483091268","1483091299","1483091267","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091278","1483091279","1483091325","1483091278","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978734","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091281","1483091282","1483091328","1483091281","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978737","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091282","1483091285","1483091321","1483091282","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978751","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091326","1483091327","1483091379","1483091326","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091328","1483091330","1483091374","1483091328","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978764","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091342","1483091343","1483091373","1483091342","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978766","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091355","1483091356","1483091393","1483091355","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091374","1483091377","1483091422","1483091374","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091377","1483091380","1483091423","1483091377","1","8","0","-1","43","3","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091380","1483091383","1483091417","1483091380","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091388","1483091389","1483091426","1483091388","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978782","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091393","1483091394","1483091426","1483091393","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091418","1483091419","1483091450","1483091418","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091420","1483091422","1483091460","1483091420","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091423","1483091424","1483091477","1483091423","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091424","1483091425","1483091487","1483091424","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091427","1483091428","1483091497","1483091427","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978803","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091460","1483091461","1483091526","1483091460","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978811","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091487","1483091488","1483091525","1483091487","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978813","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091494","1483091495","1483091527","1483091494","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978839","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091563","1483091564","1483091617","1483091563","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091566","1483091567","1483091615","1483091566","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091618","1483091619","1483091658","1483091618","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091627","1483091628","1483091659","1483091627","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978861","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091649","1483091650","1483091683","1483091649","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091658","1483091659","1483091693","1483091658","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091671","1483091672","1483091702","1483091671","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091679","1483091680","1483091712","1483091679","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091683","1483091684","1483091719","1483091683","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091714","1483091716","1483091771","1483091714","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091719","1483091720","1483091774","1483091719","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091720","1483091723","1483091839","1483091720","1","8","0","-1","116","3","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091727","1483091728","1483091761","1483091727","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978931","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091825","1483091827","1483091864","1483091825","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091828","1483091830","1483091860","1483091828","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091836","1483091837","1483091873","1483091836","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091845","1483091846","1483091885","1483091845","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978949","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091872","1483091873","1483091919","1483091872","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978963","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091920","1483091922","1483091961","1483091920","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978973","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091952","1483091954","1483091994","1483091952","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978977","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091962","1483091963","1483092005","1483091962","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091976","1483091977","1483092014","1483091976","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091979","1483091980","1483092092","1483091979","1","8","0","-1","112","1","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978987","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091990","1483091991","1483092029","1483091990","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483091994","1483091995","1483092043","1483091994","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092005","1483092006","1483092052","1483092005","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["978993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092015","1483092016","1483092057","1483092015","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979003","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092053","1483092054","1483092102","1483092053","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092056","1483092058","1483092102","1483092056","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092066","1483092067","1483092099","1483092066","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979024","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092103","1483092106","1483092150","1483092103","1","8","0","-1","44","3","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979026","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092108","1483092109","1483092153","1483092108","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092139","1483092140","1483092171","1483092139","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979038","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092151","1483092153","1483092191","1483092151","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092154","1483092156","1483092201","1483092154","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979042","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092167","1483092168","1483092201","1483092167","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979053","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092203","1483092204","1483092237","1483092203","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979063","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092237","1483092238","1483092269","1483092237","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979069","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092242","1483092244","1483092309","1483092242","1","8","0","-1","65","2","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979071","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092244","1483092247","1483092307","1483092244","1","8","0","-1","60","3","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979081","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092307","1483092308","1483092354","1483092307","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979083","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092310","1483092311","1483092352","1483092310","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979089","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092336","1483092337","1483092373","1483092336","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979101","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092372","1483092373","1483092421","1483092372","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979103","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092373","1483092376","1483092410","1483092373","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979111","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092395","1483092396","1483092428","1483092395","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979113","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092400","1483092401","1483092458","1483092400","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979121","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092411","1483092413","1483092453","1483092411","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092428","1483092429","1483092465","1483092428","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979129","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092453","1483092454","1483092516","1483092453","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979131","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092455","1483092457","1483092518","1483092455","1","8","0","-1","61","2","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979133","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092459","1483092460","1483092513","1483092459","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979137","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092468","1483092469","1483092519","1483092468","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092511","1483092514","1483092572","1483092511","1","8","0","-1","58","3","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979150","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092516","1483092517","1483092576","1483092516","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092519","1483092520","1483092571","1483092519","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979156","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092519","1483092520","1483092574","1483092519","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092573","1483092574","1483092673","1483092573","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092574","1483092575","1483092659","1483092574","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092656","1483092658","1483092697","1483092656","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092674","1483092675","1483092705","1483092674","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092684","1483092685","1483092717","1483092684","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979203","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092710","1483092711","1483092741","1483092710","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092717","1483092718","1483092777","1483092717","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092718","1483092720","1483092752","1483092718","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092720","1483092721","1483092830","1483092720","1","8","0","-1","109","1","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092735","1483092736","1483092767","1483092735","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092741","1483092742","1483092790","1483092741","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092753","1483092754","1483092790","1483092753","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092768","1483092769","1483092805","1483092768","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092790","1483092791","1483092826","1483092790","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092806","1483092807","1483092846","1483092806","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979236","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092811","1483092812","1483092843","1483092811","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979248","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092831","1483092832","1483092881","1483092831","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979252","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092839","1483092841","1483092880","1483092839","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979254","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092843","1483092844","1483092908","1483092843","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979258","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092850","1483092851","1483092910","1483092850","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092908","1483092909","1483092947","1483092908","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092910","1483092911","1483092943","1483092910","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979293","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092939","1483092940","1483092974","1483092939","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979303","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483092957","1483092958","1483092995","1483092957","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093001","1483093002","1483093042","1483093001","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093018","1483093019","1483093051","1483093018","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093043","1483093044","1483093090","1483093043","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093053","1483093055","1483093087","1483093053","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093060","1483093063","1483093099","1483093060","1","8","0","-1","36","3","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093066","1483093067","1483093103","1483093066","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979363","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093099","1483093100","1483093137","1483093099","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979365","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093104","1483093105","1483093143","1483093104","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093142","1483093143","1483093191","1483093142","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093145","1483093147","1483093180","1483093145","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093162","1483093163","1483093221","1483093162","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979393","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093164","1483093166","1483093204","1483093164","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979399","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093192","1483093194","1483093238","1483093192","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979405","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093207","1483093208","1483093256","1483093207","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093238","1483093240","1483093291","1483093238","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979413","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093244","1483093245","1483093303","1483093244","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979415","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093246","1483093248","1483093300","1483093246","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093257","1483093258","1483093303","1483093257","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093294","1483093295","1483093336","1483093294","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093303","1483093304","1483093355","1483093303","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093318","1483093319","1483093429","1483093318","1","8","0","-1","110","1","880","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093337","1483093338","1483093383","1483093337","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093355","1483093356","1483093390","1483093355","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093371","1483093372","1483093413","1483093371","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093384","1483093385","1483093442","1483093384","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979455","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093413","1483093414","1483093467","1483093413","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979457","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093421","1483093422","1483093469","1483093421","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093430","1483093432","1483093496","1483093430","1","8","0","-1","64","2","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093443","1483093446","1483093476","1483093443","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093467","1483093468","1483093499","1483093467","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979469","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093470","1483093471","1483093502","1483093470","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979471","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093473","1483093474","1483093504","1483093473","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979477","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093497","1483093498","1483093573","1483093497","1","8","0","-1","75","1","600","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093499","1483093501","1483093582","1483093499","1","8","0","-1","81","2","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093503","1483093504","1483093632","1483093503","1","8","0","-1","128","1","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093505","1483093507","1483093586","1483093505","1","8","0","-1","79","2","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093511","1483093512","1483093574","1483093511","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093537","1483093538","1483093578","1483093537","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979491","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093575","1483093577","1483093637","1483093575","1","8","0","-1","60","2","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093578","1483093580","1483093638","1483093578","1","8","0","-1","58","2","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979495","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093582","1483093583","1483093626","1483093582","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979503","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093634","1483093636","1483093700","1483093634","1","8","0","-1","64","2","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979505","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093637","1483093638","1483093688","1483093637","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093638","1483093639","1483093691","1483093638","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979525","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093700","1483093701","1483093740","1483093700","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979529","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093717","1483093720","1483093785","1483093717","1","8","0","-1","65","3","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093722","1483093723","1483093786","1483093722","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979533","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093724","1483093726","1483093770","1483093724","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093738","1483093739","1483093865","1483093738","1","8","0","-1","126","1","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093741","1483093742","1483093865","1483093741","1","8","0","-1","123","1","984","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093770","1483093771","1483093899","1483093770","1","8","0","-1","128","1","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093786","1483093787","1483093849","1483093786","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979547","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093787","1483093789","1483093918","1483093787","1","8","0","-1","129","2","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093850","1483093851","1483093973","1483093850","1","8","0","-1","122","1","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979557","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093865","1483093866","1483093956","1483093865","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979562","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093878","1483093879","1483093988","1483093878","1","8","0","-1","109","1","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093900","1483093901","1483094010","1483093900","1","8","0","-1","109","1","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979576","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483093973","1483093975","1483094138","1483093973","1","8","0","-1","163","2","1304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979584","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094023","1483094024","1483094063","1483094023","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979592","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094063","1483094064","1483094116","1483094063","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094071","1483094072","1483094117","1483094071","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979598","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094093","1483094094","1483094127","1483094093","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979602","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094118","1483094119","1483094156","1483094118","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094124","1483094125","1483094157","1483094124","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979606","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094126","1483094127","1483094165","1483094126","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979610","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094132","1483094134","1483094165","1483094132","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094138","1483094139","1483094176","1483094138","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979614","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094156","1483094157","1483094208","1483094156","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979618","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094158","1483094161","1483094251","1483094158","1","8","0","-1","90","3","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979620","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094165","1483094166","1483094220","1483094165","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094166","1483094169","1483094215","1483094166","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979624","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094177","1483094178","1483094271","1483094177","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979628","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094215","1483094216","1483094269","1483094215","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979630","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094216","1483094217","1483094280","1483094216","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094221","1483094222","1483094259","1483094221","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094260","1483094261","1483094310","1483094260","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094264","1483094265","1483094311","1483094264","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094272","1483094273","1483094333","1483094272","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094281","1483094284","1483094339","1483094281","1","8","0","-1","55","3","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094310","1483094311","1483094357","1483094310","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094312","1483094314","1483094394","1483094312","1","8","0","-1","80","2","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979661","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094319","1483094320","1483094402","1483094319","1","8","0","-1","82","1","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094391","1483094392","1483094431","1483094391","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094432","1483094434","1483094476","1483094432","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094469","1483094470","1483094524","1483094469","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979710","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094490","1483094491","1483094585","1483094490","1","8","0","-1","94","1","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979724","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094572","1483094573","1483094610","1483094572","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094575","1483094578","1483094623","1483094575","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979728","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094586","1483094587","1483094644","1483094586","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094590","1483094591","1483094641","1483094590","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979732","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094605","1483094606","1483094646","1483094605","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979736","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094610","1483094612","1483094667","1483094610","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979738","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094623","1483094624","1483094660","1483094623","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094645","1483094646","1483094676","1483094645","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979748","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094646","1483094649","1483094710","1483094646","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979750","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094659","1483094660","1483094718","1483094659","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094660","1483094663","1483094735","1483094660","1","8","0","-1","72","3","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979760","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094689","1483094690","1483094763","1483094689","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094711","1483094712","1483094745","1483094711","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094742","1483094743","1483094789","1483094742","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094763","1483094764","1483094797","1483094763","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094766","1483094767","1483094811","1483094766","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094810","1483094811","1483094853","1483094810","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094812","1483094814","1483094879","1483094812","1","8","0","-1","65","2","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979796","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094822","1483094823","1483094893","1483094822","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979800","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094831","1483094833","1483094884","1483094831","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094879","1483094880","1483094915","1483094879","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979830","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094953","1483094954","1483094984","1483094953","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094968","1483094969","1483095000","1483094968","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979834","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094972","1483094973","1483095016","1483094972","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094974","1483094975","1483095023","1483094974","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094975","1483094976","1483095016","1483094975","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483094985","1483094988","1483095034","1483094985","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095000","1483095001","1483095033","1483095000","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095017","1483095020","1483095054","1483095017","1","8","0","-1","34","3","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979855","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095023","1483095024","1483095084","1483095023","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095044","1483095045","1483095077","1483095044","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095074","1483095075","1483095107","1483095074","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095076","1483095077","1483095110","1483095076","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979873","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095077","1483095078","1483095142","1483095077","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095081","1483095082","1483095158","1483095081","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979877","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095083","1483095084","1483095157","1483095083","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095107","1483095108","1483095185","1483095107","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095111","1483095112","1483095188","1483095111","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095190","1483095192","1483095240","1483095190","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095214","1483095215","1483095350","1483095214","1","8","0","-1","135","1","1080","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095215","1483095217","1483095262","1483095215","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095219","1483095220","1483095256","1483095219","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095257","1483095258","1483095308","1483095257","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979927","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095259","1483095261","1483095307","1483095259","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979946","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095309","1483095312","1483095375","1483095309","1","8","0","-1","63","3","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979948","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095312","1483095315","1483095345","1483095312","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979950","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095316","1483095318","1483095446","1483095316","1","8","0","-1","128","2","1024","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979952","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095335","1483095336","1483095375","1483095335","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979954","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095346","1483095347","1483095385","1483095346","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095351","1483095353","1483095404","1483095351","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979964","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095376","1483095379","1483095419","1483095376","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979968","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095389","1483095390","1483095425","1483095389","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979970","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095404","1483095405","1483095451","1483095404","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979974","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095420","1483095422","1483095473","1483095420","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979976","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095424","1483095425","1483095474","1483095424","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979978","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095426","1483095428","1483095463","1483095426","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979980","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095446","1483095447","1483095526","1483095446","1","8","0","-1","79","1","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979982","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095447","1483095450","1483095526","1483095447","1","8","0","-1","76","3","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979984","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095451","1483095453","1483095599","1483095451","1","8","0","-1","146","2","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979986","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095464","1483095465","1483095511","1483095464","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979988","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095473","1483095474","1483095557","1483095473","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979990","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095474","1483095475","1483095546","1483095474","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["979996","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095527","1483095528","1483095585","1483095527","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980005","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095564","1483095565","1483095616","1483095564","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095587","1483095589","1483095671","1483095587","1","8","0","-1","82","2","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980017","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095607","1483095608","1483095664","1483095607","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980021","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095616","1483095617","1483095698","1483095616","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095653","1483095654","1483095695","1483095653","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095663","1483095664","1483095709","1483095663","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095697","1483095698","1483095846","1483095697","1","8","0","-1","148","1","1184","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980050","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095724","1483095725","1483095806","1483095724","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980052","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095748","1483095749","1483095802","1483095748","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095754","1483095755","1483095816","1483095754","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980056","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095757","1483095758","1483095794","1483095757","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980062","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095797","1483095799","1483095841","1483095797","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980066","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095807","1483095808","1483095877","1483095807","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980072","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095834","1483095835","1483095981","1483095834","1","8","0","-1","146","1","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980074","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095842","1483095843","1483095888","1483095842","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980078","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095878","1483095879","1483095957","1483095878","1","8","0","-1","78","1","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980082","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095888","1483095890","1483095963","1483095888","1","8","0","-1","73","2","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980084","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095893","1483095894","1483095959","1483095893","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980090","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095954","1483095955","1483096001","1483095954","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980092","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095957","1483095958","1483096031","1483095957","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980094","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095960","1483095961","1483096068","1483095960","1","8","0","-1","107","1","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980098","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095982","1483095983","1483096084","1483095982","1","8","0","-1","101","1","808","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980100","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483095984","1483095986","1483096105","1483095984","1","8","0","-1","119","2","952","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980106","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096031","1483096032","1483096066","1483096031","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980108","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096066","1483096067","1483096097","1483096066","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980112","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096075","1483096078","1483096121","1483096075","1","8","0","-1","43","3","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980118","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096096","1483096097","1483096136","1483096096","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980136","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096137","1483096138","1483096168","1483096137","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980138","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096155","1483096156","1483096206","1483096155","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096160","1483096163","1483096210","1483096160","1","8","0","-1","47","3","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980144","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096169","1483096170","1483096304","1483096169","1","8","0","-1","134","1","1072","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096187","1483096188","1483096228","1483096187","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980154","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096210","1483096211","1483096249","1483096210","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980158","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096229","1483096230","1483096260","1483096229","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096229","1483096230","1483096263","1483096229","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096250","1483096251","1483096288","1483096250","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980169","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096261","1483096262","1483096312","1483096261","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980175","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096289","1483096290","1483096320","1483096289","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096290","1483096293","1483096350","1483096290","1","8","0","-1","57","3","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096297","1483096298","1483096358","1483096297","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096305","1483096306","1483096391","1483096305","1","8","0","-1","85","1","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096313","1483096315","1483096358","1483096313","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980187","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096320","1483096321","1483096388","1483096320","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096359","1483096362","1483096421","1483096359","1","8","0","-1","59","3","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980197","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096362","1483096365","1483096506","1483096362","1","8","0","-1","141","3","1128","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096389","1483096391","1483096470","1483096389","1","8","0","-1","79","2","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980209","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096401","1483096402","1483096488","1483096401","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096470","1483096471","1483096650","1483096470","1","8","0","-1","179","1","1432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096552","1483096553","1483096691","1483096552","1","8","0","-1","138","1","1104","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096651","1483096652","1483096730","1483096651","1","8","0","-1","78","1","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980275","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096761","1483096762","1483096806","1483096761","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980277","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096764","1483096765","1483096828","1483096764","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096774","1483096775","1483096820","1483096774","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980291","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096821","1483096824","1483096871","1483096821","1","8","0","-1","47","3","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980323","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096966","1483096967","1483097029","1483096966","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980325","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096969","1483096970","1483097025","1483096969","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980327","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096973","1483096974","1483097036","1483096973","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980329","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483096994","1483096995","1483097047","1483096994","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980337","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097026","1483097027","1483097062","1483097026","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980339","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097028","1483097029","1483097069","1483097028","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980341","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097031","1483097033","1483097110","1483097031","1","8","0","-1","77","2","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980343","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097034","1483097035","1483097112","1483097034","1","8","0","-1","77","1","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980345","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097036","1483097038","1483097184","1483097036","1","8","0","-1","146","2","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097048","1483097049","1483097104","1483097048","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980358","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097063","1483097065","1483097102","1483097063","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980364","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097104","1483097105","1483097152","1483097104","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980366","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097105","1483097106","1483097169","1483097105","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980368","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097110","1483097111","1483097174","1483097110","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097113","1483097114","1483097172","1483097113","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980381","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097173","1483097174","1483097227","1483097173","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980383","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097175","1483097177","1483097214","1483097175","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980387","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097185","1483097187","1483097265","1483097185","1","8","0","-1","78","2","624","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980397","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097210","1483097212","1483097245","1483097210","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097227","1483097228","1483097259","1483097227","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980411","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097267","1483097269","1483097319","1483097267","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097292","1483097293","1483097355","1483097292","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980427","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097332","1483097333","1483097374","1483097332","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097340","1483097341","1483097387","1483097340","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980431","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097347","1483097348","1483097418","1483097347","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097356","1483097357","1483097408","1483097356","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097375","1483097376","1483097419","1483097375","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097388","1483097389","1483097429","1483097388","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097406","1483097407","1483097456","1483097406","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097409","1483097410","1483097448","1483097409","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097418","1483097419","1483097455","1483097418","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980449","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097420","1483097422","1483097455","1483097420","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097429","1483097431","1483097475","1483097429","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980455","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097449","1483097450","1483097495","1483097449","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097456","1483097457","1483097500","1483097456","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980461","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097457","1483097458","1483097491","1483097457","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097476","1483097477","1483097509","1483097476","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980467","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097485","1483097486","1483097520","1483097485","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980481","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097510","1483097512","1483097651","1483097510","1","8","0","-1","139","2","1112","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097521","1483097523","1483097561","1483097521","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980487","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097540","1483097541","1483097594","1483097540","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980489","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097545","1483097546","1483097593","1483097545","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980507","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097628","1483097629","1483097683","1483097628","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980509","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097633","1483097634","1483097687","1483097633","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980519","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097677","1483097678","1483097715","1483097677","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980521","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097680","1483097681","1483097741","1483097680","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980531","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097699","1483097700","1483097772","1483097699","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980535","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097715","1483097716","1483097762","1483097715","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980537","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097738","1483097739","1483097773","1483097738","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980539","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097742","1483097743","1483097791","1483097742","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980541","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097752","1483097753","1483097797","1483097752","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980543","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097754","1483097755","1483097790","1483097754","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980545","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097763","1483097764","1483097817","1483097763","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980553","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097792","1483097794","1483097840","1483097792","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980555","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097797","1483097798","1483097855","1483097797","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980561","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097816","1483097817","1483097847","1483097816","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980563","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097817","1483097818","1483097872","1483097817","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097841","1483097844","1483097920","1483097841","1","8","0","-1","76","3","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097848","1483097849","1483097925","1483097848","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097873","1483097874","1483097935","1483097873","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097917","1483097918","1483097955","1483097917","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980585","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097920","1483097921","1483097957","1483097920","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097940","1483097941","1483097994","1483097940","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980595","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097958","1483097959","1483098010","1483097958","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483097966","1483097967","1483098034","1483097966","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098103","1483098105","1483098140","1483098103","1","8","0","-1","35","2","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980633","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098121","1483098122","1483098170","1483098121","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980637","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098141","1483098142","1483098176","1483098141","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980643","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098155","1483098156","1483098217","1483098155","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980645","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098158","1483098159","1483098224","1483098158","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980653","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098183","1483098184","1483098214","1483098183","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980657","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098197","1483098198","1483098263","1483098197","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098201","1483098202","1483098258","1483098201","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980661","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098207","1483098208","1483098292","1483098207","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098215","1483098216","1483098273","1483098215","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980670","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098218","1483098219","1483098258","1483098218","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980672","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098225","1483098226","1483098259","1483098225","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980674","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098258","1483098259","1483098294","1483098258","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980678","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098260","1483098262","1483098319","1483098260","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980680","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098264","1483098265","1483098301","1483098264","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980682","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098273","1483098274","1483098310","1483098273","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980684","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098293","1483098294","1483098328","1483098293","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980686","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098294","1483098295","1483098333","1483098294","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980708","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098348","1483098349","1483098500","1483098348","1","8","0","-1","151","1","1208","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980714","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098375","1483098376","1483098427","1483098375","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980718","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098412","1483098413","1483098473","1483098412","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980720","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098414","1483098415","1483098479","1483098414","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980726","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098427","1483098428","1483098491","1483098427","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980730","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098473","1483098474","1483098560","1483098473","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980740","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098522","1483098523","1483098569","1483098522","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980742","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098534","1483098535","1483098570","1483098534","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980744","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098545","1483098546","1483098602","1483098545","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980746","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098552","1483098553","1483098591","1483098552","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980752","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098570","1483098571","1483098666","1483098570","1","8","0","-1","95","1","760","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980754","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098571","1483098573","1483098774","1483098571","1","8","0","-1","201","2","1608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980756","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098592","1483098593","1483098716","1483098592","1","8","0","-1","123","1","984","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980758","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098603","1483098604","1483098685","1483098603","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980762","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098662","1483098663","1483098703","1483098662","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980768","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098684","1483098685","1483098719","1483098684","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098686","1483098688","1483098730","1483098686","1","8","0","-1","42","2","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980772","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098701","1483098702","1483098736","1483098701","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098704","1483098705","1483098740","1483098704","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980776","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098717","1483098718","1483098752","1483098717","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098720","1483098721","1483098756","1483098720","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980780","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098730","1483098731","1483098763","1483098730","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098737","1483098738","1483098768","1483098737","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098757","1483098758","1483098804","1483098757","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098766","1483098767","1483098824","1483098766","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980797","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098769","1483098770","1483098819","1483098769","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980809","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098805","1483098807","1483098855","1483098805","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980819","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098856","1483098859","1483098890","1483098856","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980823","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098875","1483098877","1483098923","1483098875","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980843","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098941","1483098943","1483098994","1483098941","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980845","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098945","1483098946","1483099088","1483098945","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980849","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098959","1483098960","1483098999","1483098959","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980851","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098964","1483098965","1483099031","1483098964","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098968","1483098969","1483099001","1483098968","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980859","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483098995","1483098996","1483099028","1483098995","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980863","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099001","1483099003","1483099044","1483099001","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099014","1483099015","1483099050","1483099014","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980867","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099028","1483099029","1483099061","1483099028","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980869","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099030","1483099031","1483099062","1483099030","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099031","1483099032","1483099065","1483099031","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980885","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099077","1483099078","1483099138","1483099077","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980887","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099088","1483099089","1483099128","1483099088","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980889","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099090","1483099092","1483099131","1483099090","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099092","1483099095","1483099218","1483099092","1","8","0","-1","123","3","984","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099105","1483099106","1483099147","1483099105","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099106","1483099109","1483099157","1483099106","1","8","0","-1","48","3","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980907","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099167","1483099168","1483099207","1483099167","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980913","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099196","1483099198","1483099253","1483099196","1","8","0","-1","55","2","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099260","1483099262","1483099333","1483099260","1","8","0","-1","71","2","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099268","1483099269","1483099309","1483099268","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099271","1483099272","1483099371","1483099271","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099274","1483099275","1483099332","1483099274","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980953","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099359","1483099361","1483099404","1483099359","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980956","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099360","1483099361","1483099401","1483099360","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980960","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099372","1483099373","1483099412","1483099372","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980974","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099405","1483099406","1483099454","1483099405","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980978","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099412","1483099413","1483099449","1483099412","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099413","1483099416","1483099509","1483099413","1","8","0","-1","93","3","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099422","1483099423","1483099469","1483099422","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099430","1483099431","1483099474","1483099430","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099454","1483099455","1483099488","1483099454","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099469","1483099470","1483099540","1483099469","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["980995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099474","1483099475","1483099513","1483099474","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981007","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099513","1483099516","1483099565","1483099513","1","8","0","-1","49","3","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099524","1483099525","1483099559","1483099524","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981011","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099541","1483099542","1483099583","1483099541","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099544","1483099545","1483099583","1483099544","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981019","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099565","1483099566","1483099613","1483099565","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981027","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099585","1483099587","1483099700","1483099585","1","8","0","-1","113","2","904","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981029","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099600","1483099601","1483099669","1483099600","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981031","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099613","1483099614","1483099713","1483099613","1","8","0","-1","99","1","792","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981039","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099669","1483099670","1483099724","1483099669","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981041","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099676","1483099678","1483099727","1483099676","1","8","0","-1","49","2","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981043","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099681","1483099682","1483099755","1483099681","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981055","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099713","1483099715","1483099776","1483099713","1","8","0","-1","61","2","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981057","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099724","1483099725","1483099779","1483099724","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981061","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099728","1483099731","1483099766","1483099728","1","8","0","-1","35","3","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981063","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099744","1483099745","1483099785","1483099744","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981065","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099756","1483099757","1483099822","1483099756","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981067","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099759","1483099760","1483099853","1483099759","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981069","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099767","1483099768","1483099840","1483099767","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981073","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099777","1483099778","1483099956","1483099777","1","8","0","-1","178","1","1424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981075","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099780","1483099781","1483099878","1483099780","1","8","0","-1","97","1","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981077","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099785","1483099786","1483099894","1483099785","1","8","0","-1","108","1","864","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981081","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099823","1483099824","1483099896","1483099823","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981085","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099840","1483099841","1483099914","1483099840","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981091","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099878","1483099879","1483099944","1483099878","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981097","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099897","1483099898","1483099981","1483099897","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981101","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099944","1483099945","1483100017","1483099944","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981107","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099962","1483099963","1483100003","1483099962","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981111","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483099974","1483099975","1483100046","1483099974","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981119","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100006","1483100007","1483100180","1483100006","1","8","0","-1","173","1","1384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981125","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100047","1483100049","1483100152","1483100047","1","8","0","-1","103","2","824","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981129","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100075","1483100076","1483100231","1483100075","1","8","0","-1","155","1","1240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981141","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100153","1483100154","1483100307","1483100153","1","8","0","-1","153","1","1224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981147","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100181","1483100182","1483100328","1483100181","1","8","0","-1","146","1","1168","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981149","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100222","1483100223","1483100318","1483100222","1","8","0","-1","95","1","760","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981151","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100227","1483100228","1483100360","1483100227","1","8","0","-1","132","1","1056","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981153","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100232","1483100233","1483100343","1483100232","1","8","0","-1","110","1","880","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981155","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100243","1483100244","1483100380","1483100243","1","8","0","-1","136","1","1088","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981161","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100319","1483100320","1483100499","1483100319","1","8","0","-1","179","1","1432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981163","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100329","1483100330","1483100505","1483100329","1","8","0","-1","175","1","1400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981165","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100343","1483100344","1483100622","1483100343","1","8","0","-1","278","1","2224","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981167","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100361","1483100362","1483100492","1483100361","1","8","0","-1","130","1","1040","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981171","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100380","1483100381","1483100565","1483100380","1","8","0","-1","184","1","1472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981177","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100472","1483100475","1483100532","1483100472","1","8","0","-1","57","3","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100492","1483100493","1483100546","1483100492","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100619","1483100621","1483100693","1483100619","1","8","0","-1","72","2","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981207","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100623","1483100624","1483100724","1483100623","1","8","0","-1","100","1","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981217","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100666","1483100667","1483100757","1483100666","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981219","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100674","1483100675","1483100728","1483100674","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981223","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100694","1483100695","1483100778","1483100694","1","8","0","-1","83","1","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981225","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100696","1483100698","1483100745","1483100696","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981229","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100724","1483100725","1483100797","1483100724","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981231","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100728","1483100729","1483100785","1483100728","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981235","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100746","1483100747","1483100801","1483100746","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981237","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100758","1483100759","1483100847","1483100758","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100779","1483100780","1483100819","1483100779","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100785","1483100786","1483100847","1483100785","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981245","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100788","1483100789","1483100844","1483100788","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981249","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100797","1483100800","1483100877","1483100797","1","8","0","-1","77","3","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981251","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100801","1483100803","1483100861","1483100801","1","8","0","-1","58","2","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981261","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100848","1483100851","1483100912","1483100848","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981263","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100862","1483100863","1483100972","1483100862","1","8","0","-1","109","1","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981265","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100876","1483100877","1483100959","1483100876","1","8","0","-1","82","1","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981267","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100877","1483100878","1483100960","1483100877","1","8","0","-1","82","1","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981271","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100912","1483100913","1483100994","1483100912","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981279","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483100960","1483100963","1483101018","1483100960","1","8","0","-1","55","3","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981289","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101017","1483101019","1483101071","1483101017","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981299","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101071","1483101072","1483101177","1483101071","1","8","0","-1","105","1","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101080","1483101081","1483101189","1483101080","1","8","0","-1","108","1","864","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981310","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101087","1483101088","1483101133","1483101087","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981316","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101123","1483101124","1483101173","1483101123","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101134","1483101135","1483101180","1483101134","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981322","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101176","1483101177","1483101221","1483101176","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981324","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101177","1483101178","1483101231","1483101177","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981326","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101179","1483101180","1483101219","1483101179","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981338","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101216","1483101218","1483101249","1483101216","1","8","0","-1","31","2","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981347","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101222","1483101224","1483101361","1483101222","1","8","0","-1","137","2","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981351","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101232","1483101233","1483101278","1483101232","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981353","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101238","1483101239","1483101277","1483101238","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981357","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101249","1483101250","1483101286","1483101249","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981359","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101277","1483101278","1483101311","1483101277","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981361","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101279","1483101281","1483101331","1483101279","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981367","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101293","1483101294","1483101348","1483101293","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981371","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101312","1483101313","1483101358","1483101312","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981373","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101314","1483101315","1483101352","1483101314","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981389","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101358","1483101361","1483101432","1483101358","1","8","0","-1","71","3","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981391","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101362","1483101364","1483101432","1483101362","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981401","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101412","1483101413","1483101446","1483101412","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981417","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101466","1483101467","1483101510","1483101466","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101475","1483101478","1483101515","1483101475","1","8","0","-1","37","3","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101515","1483101516","1483101567","1483101515","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981437","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101528","1483101529","1483101568","1483101528","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981439","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101530","1483101531","1483101628","1483101530","1","8","0","-1","97","1","776","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981443","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101537","1483101538","1483101581","1483101537","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101540","1483101541","1483101576","1483101540","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981447","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101567","1483101568","1483101611","1483101567","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981453","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101576","1483101577","1483101607","1483101576","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981459","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101607","1483101608","1483101638","1483101607","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981463","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101613","1483101615","1483101669","1483101613","1","8","0","-1","54","2","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981465","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101616","1483101618","1483101662","1483101616","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981479","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101663","1483101665","1483101718","1483101663","1","8","0","-1","53","2","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981483","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101670","1483101671","1483101725","1483101670","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981485","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101672","1483101674","1483101768","1483101672","1","8","0","-1","94","2","752","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981493","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101717","1483101718","1483101759","1483101717","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981498","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101719","1483101721","1483101760","1483101719","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101794","1483101796","1483101835","1483101794","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101798","1483101799","1483101842","1483101798","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101801","1483101802","1483101847","1483101801","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101823","1483101824","1483101884","1483101823","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981536","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101835","1483101838","1483101869","1483101835","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981556","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101897","1483101898","1483101931","1483101897","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101899","1483101901","1483101933","1483101899","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981569","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101932","1483101934","1483101974","1483101932","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981571","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101934","1483101935","1483101967","1483101934","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981575","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101939","1483101941","1483102063","1483101939","1","8","0","-1","122","2","976","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981577","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101941","1483101943","1483101981","1483101941","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981581","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101960","1483101961","1483101991","1483101960","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981583","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101968","1483101969","1483102003","1483101968","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981585","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101975","1483101976","1483102020","1483101975","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981587","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101977","1483101979","1483102023","1483101977","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981591","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483101992","1483101993","1483102042","1483101992","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981597","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102021","1483102023","1483102064","1483102021","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981599","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102023","1483102024","1483102065","1483102023","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981613","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102066","1483102067","1483102102","1483102066","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981617","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102072","1483102073","1483102126","1483102072","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981625","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102098","1483102099","1483102180","1483102098","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981629","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102103","1483102105","1483102142","1483102103","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981641","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102140","1483102142","1483102180","1483102140","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981647","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102163","1483102164","1483102211","1483102163","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981649","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102164","1483102165","1483102211","1483102164","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981659","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102201","1483102202","1483102235","1483102201","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102205","1483102208","1483102265","1483102205","1","8","0","-1","57","3","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981665","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102211","1483102212","1483102284","1483102211","1","8","0","-1","72","1","576","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981667","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102212","1483102214","1483102356","1483102212","1","8","0","-1","142","2","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981669","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102214","1483102215","1483102263","1483102214","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102222","1483102223","1483102260","1483102222","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102236","1483102237","1483102273","1483102236","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981675","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102260","1483102261","1483102295","1483102260","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981679","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102264","1483102266","1483102303","1483102264","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102266","1483102267","1483102306","1483102266","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981687","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102284","1483102285","1483102325","1483102284","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981689","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102296","1483102297","1483102327","1483102296","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981691","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102303","1483102304","1483102355","1483102303","1","8","0","-1","51","1","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981693","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102307","1483102308","1483102358","1483102307","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981695","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102318","1483102319","1483102375","1483102318","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102328","1483102331","1483102363","1483102328","1","8","0","-1","32","3","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102359","1483102360","1483102402","1483102359","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981713","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102376","1483102378","1483102505","1483102376","1","8","0","-1","127","2","1016","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981717","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102382","1483102384","1483102435","1483102382","1","8","0","-1","51","2","408","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981721","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102406","1483102407","1483102440","1483102406","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981723","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102418","1483102419","1483102465","1483102418","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981727","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102435","1483102438","1483102476","1483102435","1","8","0","-1","38","3","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981735","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102466","1483102469","1483102500","1483102466","1","8","0","-1","31","3","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981739","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102477","1483102480","1483102535","1483102477","1","8","0","-1","55","3","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981755","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102528","1483102530","1483102573","1483102528","1","8","0","-1","43","2","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981757","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102531","1483102532","1483102568","1483102531","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102532","1483102533","1483102612","1483102532","1","8","0","-1","79","1","632","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981761","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102535","1483102536","1483102590","1483102535","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981763","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102553","1483102554","1483102593","1483102553","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981765","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102569","1483102570","1483102604","1483102569","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981767","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102574","1483102575","1483102643","1483102574","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981769","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102590","1483102591","1483102661","1483102590","1","8","0","-1","70","1","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981771","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102591","1483102593","1483102663","1483102591","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981777","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102605","1483102606","1483102662","1483102605","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981781","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102613","1483102614","1483102666","1483102613","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981785","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102644","1483102645","1483102710","1483102644","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981787","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102656","1483102657","1483102723","1483102656","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981789","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102661","1483102662","1483102730","1483102661","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981791","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102662","1483102663","1483102730","1483102662","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981793","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102664","1483102665","1483102706","1483102664","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981795","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102667","1483102668","1483102726","1483102667","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981799","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102710","1483102711","1483102802","1483102710","1","8","0","-1","91","1","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981801","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102723","1483102724","1483102824","1483102723","1","8","0","-1","100","1","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981808","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102731","1483102734","1483102849","1483102731","1","8","0","-1","115","3","920","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981812","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102802","1483102803","1483102848","1483102802","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102825","1483102826","1483102860","1483102825","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981818","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102848","1483102849","1483102887","1483102848","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981820","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102850","1483102852","1483102896","1483102850","1","8","0","-1","44","2","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981824","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102861","1483102863","1483102916","1483102861","1","8","0","-1","53","2","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981826","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102867","1483102868","1483102909","1483102867","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102887","1483102888","1483102923","1483102887","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981844","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102925","1483102927","1483102965","1483102925","1","8","0","-1","38","2","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981848","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483102935","1483102936","1483102982","1483102935","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103045","1483103046","1483103077","1483103045","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981893","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103045","1483103046","1483103090","1483103045","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981895","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103047","1483103049","1483103178","1483103047","1","8","0","-1","129","2","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981897","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103054","1483103055","1483103096","1483103054","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981899","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103059","1483103060","1483103110","1483103059","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981909","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103100","1483103101","1483103142","1483103100","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981911","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103107","1483103108","1483103146","1483103107","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981915","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103111","1483103114","1483103152","1483103111","1","8","0","-1","38","3","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981917","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103123","1483103124","1483103169","1483103123","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103143","1483103144","1483103189","1483103143","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981935","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103179","1483103180","1483103218","1483103179","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103198","1483103199","1483103238","1483103198","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103218","1483103219","1483103251","1483103218","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103272","1483103274","1483103307","1483103272","1","8","0","-1","33","2","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981981","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103315","1483103317","1483103349","1483103315","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981983","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103317","1483103320","1483103382","1483103317","1","8","0","-1","62","3","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981985","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103321","1483103322","1483103370","1483103321","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981989","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103324","1483103326","1483103365","1483103324","1","8","0","-1","39","2","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981991","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103330","1483103331","1483103392","1483103330","1","8","0","-1","61","1","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981993","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103337","1483103338","1483103369","1483103337","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981995","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103349","1483103350","1483103383","1483103349","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981997","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103366","1483103367","1483103398","1483103366","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["981999","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103370","1483103371","1483103407","1483103370","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982001","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103371","1483103374","1483103419","1483103371","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982009","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103392","1483103393","1483103442","1483103392","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982013","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103406","1483103407","1483103440","1483103406","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982015","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103407","1483103410","1483103456","1483103407","1","8","0","-1","46","3","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982028","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103442","1483103443","1483103479","1483103442","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982030","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103443","1483103446","1483103508","1483103443","1","8","0","-1","62","3","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982032","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103447","1483103449","1483103578","1483103447","1","8","0","-1","129","2","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982034","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103457","1483103458","1483103496","1483103457","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982040","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103479","1483103480","1483103542","1483103479","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982044","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103505","1483103506","1483103555","1483103505","1","8","0","-1","49","1","392","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982048","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103508","1483103509","1483103542","1483103508","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982054","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103542","1483103543","1483103577","1483103542","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982061","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103555","1483103557","1483103587","1483103555","1","8","0","-1","30","2","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982067","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103579","1483103581","1483103618","1483103579","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982071","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103590","1483103591","1483103651","1483103590","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982081","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103619","1483103620","1483103707","1483103619","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982083","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103620","1483103621","1483103663","1483103620","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982087","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103652","1483103653","1483103693","1483103652","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982089","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103654","1483103656","1483103725","1483103654","1","8","0","-1","69","2","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982091","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103664","1483103665","1483103733","1483103664","1","8","0","-1","68","1","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982095","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103671","1483103672","1483103705","1483103671","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982099","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103693","1483103694","1483103732","1483103693","1","8","0","-1","38","1","304","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982105","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103707","1483103709","1483103757","1483103707","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982107","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103726","1483103727","1483103786","1483103726","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982109","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103733","1483103734","1483103765","1483103733","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982119","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103767","1483103769","1483103839","1483103767","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982121","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103782","1483103783","1483103829","1483103782","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982130","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103801","1483103804","1483103847","1483103801","1","8","0","-1","43","3","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982132","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103827","1483103828","1483103867","1483103827","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982134","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103830","1483103831","1483103866","1483103830","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982140","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103847","1483103848","1483103882","1483103847","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982142","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103849","1483103851","1483103907","1483103849","1","8","0","-1","56","2","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982146","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103866","1483103867","1483103924","1483103866","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982148","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103868","1483103869","1483103929","1483103868","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982162","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103926","1483103928","1483103996","1483103926","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982164","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103930","1483103931","1483103981","1483103930","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982166","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103936","1483103938","1483104028","1483103936","1","8","0","-1","90","2","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982179","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483103997","1483103998","1483104135","1483103997","1","8","0","-1","137","1","1096","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982181","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104021","1483104022","1483104155","1483104021","1","8","0","-1","133","1","1064","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982185","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104028","1483104029","1483104093","1483104028","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982191","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104061","1483104062","1483104204","1483104061","1","8","0","-1","142","1","1136","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982193","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104094","1483104095","1483104207","1483104094","1","8","0","-1","112","1","896","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982195","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104105","1483104106","1483104222","1483104105","1","8","0","-1","116","1","928","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982205","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104156","1483104157","1483104252","1483104156","1","8","0","-1","95","1","760","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982211","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104205","1483104206","1483104376","1483104205","1","8","0","-1","170","1","1360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982213","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104207","1483104209","1483104452","1483104207","1","8","0","-1","243","2","1944","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982215","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104223","1483104224","1483104350","1483104223","1","8","0","-1","126","1","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982221","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104253","1483104254","1483104325","1483104253","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982239","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104366","1483104368","1483104425","1483104366","1","8","0","-1","57","2","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982243","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104391","1483104392","1483104436","1483104391","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982262","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104453","1483104455","1483104537","1483104453","1","8","0","-1","82","2","656","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982270","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104530","1483104531","1483104587","1483104530","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982272","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104531","1483104533","1483104578","1483104531","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982274","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104533","1483104534","1483104582","1483104533","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982276","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104537","1483104538","1483104573","1483104537","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982280","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104558","1483104559","1483104624","1483104558","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982282","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104574","1483104575","1483104640","1483104574","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982284","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104579","1483104580","1483104649","1483104579","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982286","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104582","1483104583","1483104633","1483104582","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982288","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104586","1483104587","1483104621","1483104586","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982290","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104587","1483104589","1483104630","1483104587","1","8","0","-1","41","2","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982294","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104622","1483104623","1483104666","1483104622","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982296","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104625","1483104626","1483104660","1483104625","1","8","0","-1","34","1","272","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982298","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104631","1483104632","1483104720","1483104631","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982300","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104633","1483104635","1483104705","1483104633","1","8","0","-1","70","2","560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982302","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104641","1483104642","1483104740","1483104641","1","8","0","-1","98","1","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982306","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104660","1483104661","1483104720","1483104660","1","8","0","-1","59","1","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982308","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104667","1483104668","1483104769","1483104667","1","8","0","-1","101","1","808","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982312","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104720","1483104721","1483104787","1483104720","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982314","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104721","1483104724","1483104795","1483104721","1","8","0","-1","71","3","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982318","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104756","1483104757","1483104817","1483104756","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982320","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104770","1483104771","1483104837","1483104770","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982330","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104816","1483104817","1483104869","1483104816","1","8","0","-1","52","1","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982332","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104817","1483104820","1483104881","1483104817","1","8","0","-1","61","3","488","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982340","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104840","1483104841","1483104904","1483104840","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982350","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104881","1483104883","1483105050","1483104881","1","8","0","-1","167","2","1336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982356","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104927","1483104928","1483105026","1483104927","1","8","0","-1","98","1","784","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982360","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104955","1483104958","1483105000","1483104955","1","8","0","-1","42","3","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982370","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104976","1483104978","1483105045","1483104976","1","8","0","-1","67","2","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982372","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483104999","1483105000","1483105044","1483104999","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982374","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105001","1483105003","1483105040","1483105001","1","8","0","-1","37","2","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982378","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105027","1483105028","1483105064","1483105027","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982382","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105041","1483105042","1483105073","1483105041","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982386","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105046","1483105049","1483105079","1483105046","1","8","0","-1","30","3","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982388","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105050","1483105052","1483105097","1483105050","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982392","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105073","1483105074","1483105131","1483105073","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982394","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105076","1483105078","1483105161","1483105076","1","8","0","-1","83","2","664","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982396","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105079","1483105080","1483105236","1483105079","1","8","0","-1","156","1","1248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982398","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105080","1483105081","1483105155","1483105080","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982402","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105131","1483105132","1483105221","1483105131","1","8","0","-1","89","1","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982410","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105161","1483105163","1483105221","1483105161","1","8","0","-1","58","2","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982412","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105188","1483105189","1483105242","1483105188","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982414","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105189","1483105192","1483105237","1483105189","1","8","0","-1","45","3","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982419","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105222","1483105224","1483105274","1483105222","1","8","0","-1","50","2","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982421","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105224","1483105225","1483105270","1483105224","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982425","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105238","1483105240","1483105286","1483105238","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982429","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105259","1483105260","1483105300","1483105259","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982433","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105273","1483105274","1483105314","1483105273","1","8","0","-1","40","1","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982435","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105275","1483105277","1483105345","1483105275","1","8","0","-1","68","2","544","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982441","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105298","1483105299","1483105355","1483105298","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982445","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105301","1483105302","1483105390","1483105301","1","8","0","-1","88","1","704","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982448","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105301","1483105302","1483105337","1483105301","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982464","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105370","1483105371","1483105415","1483105370","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982466","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105391","1483105392","1483105427","1483105391","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982468","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105394","1483105395","1483105426","1483105394","1","8","0","-1","31","1","248","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982470","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105398","1483105399","1483105438","1483105398","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982472","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105403","1483105404","1483105446","1483105403","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982474","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105415","1483105416","1483105460","1483105415","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982476","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105416","1483105419","1483105504","1483105416","1","8","0","-1","85","3","680","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982482","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105438","1483105439","1483105513","1483105438","1","8","0","-1","74","1","592","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982484","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105446","1483105447","1483105505","1483105446","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982486","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105460","1483105461","1483105547","1483105460","1","8","0","-1","86","1","688","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982492","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105505","1483105506","1483105547","1483105505","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982494","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105506","1483105509","1483105551","1483105506","1","8","0","-1","42","3","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982496","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105513","1483105514","1483105553","1483105513","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982500","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105547","1483105548","1483105606","1483105547","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982502","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105548","1483105549","1483105616","1483105548","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982504","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105552","1483105554","1483105599","1483105552","1","8","0","-1","45","2","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982506","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105554","1483105555","1483105590","1483105554","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982512","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105591","1483105593","1483105652","1483105591","1","8","0","-1","59","2","472","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982514","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105600","1483105601","1483105644","1483105600","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982516","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105607","1483105608","1483105695","1483105607","1","8","0","-1","87","1","696","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982518","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105617","1483105618","1483105694","1483105617","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982524","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105645","1483105646","1483105717","1483105645","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982526","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105652","1483105653","1483105701","1483105652","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982528","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105678","1483105679","1483105721","1483105678","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982532","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105694","1483105695","1483105757","1483105694","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982534","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105696","1483105697","1483105733","1483105696","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982544","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105744","1483105745","1483105786","1483105744","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982556","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105786","1483105787","1483105829","1483105786","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982558","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105787","1483105789","1483105915","1483105787","1","8","0","-1","126","2","1008","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982560","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105796","1483105798","1483105851","1483105796","1","8","0","-1","53","2","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982564","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105820","1483105822","1483105903","1483105820","1","8","0","-1","81","2","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982566","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105829","1483105830","1483105866","1483105829","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982568","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105838","1483105839","1483105893","1483105838","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982570","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105852","1483105853","1483105903","1483105852","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982572","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105863","1483105864","1483105921","1483105863","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982580","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105894","1483105895","1483105932","1483105894","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982586","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105916","1483105918","1483105966","1483105916","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982588","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105922","1483105923","1483105971","1483105922","1","8","0","-1","48","1","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982590","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105925","1483105926","1483105999","1483105925","1","8","0","-1","73","1","584","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982594","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105932","1483105933","1483106073","1483105932","1","8","0","-1","140","1","1120","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982596","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105934","1483105935","1483105985","1483105934","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982604","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483105972","1483105973","1483106016","1483105972","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982612","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106002","1483106003","1483106035","1483106002","1","8","0","-1","32","1","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982622","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106036","1483106038","1483106118","1483106036","1","8","0","-1","80","2","640","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982626","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106050","1483106051","1483106140","1483106050","1","8","0","-1","89","1","712","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982634","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106075","1483106077","1483106129","1483106075","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982644","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106140","1483106142","1483106188","1483106140","1","8","0","-1","46","2","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982651","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106169","1483106170","1483106220","1483106169","1","8","0","-1","50","1","400","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982655","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106188","1483106189","1483106280","1483106188","1","8","0","-1","91","1","728","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982661","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106208","1483106209","1483106271","1483106208","1","8","0","-1","62","1","496","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982663","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106221","1483106222","1483106315","1483106221","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982671","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106268","1483106269","1483106333","1483106268","1","8","0","-1","64","1","512","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982673","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106271","1483106272","1483106337","1483106271","1","8","0","-1","65","1","520","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982677","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106281","1483106282","1483106317","1483106281","1","8","0","-1","35","1","280","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982681","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106318","1483106319","1483106373","1483106318","1","8","0","-1","54","1","432","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982683","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106321","1483106322","1483106385","1483106321","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982685","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106333","1483106334","1483106424","1483106333","1","8","0","-1","90","1","720","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982695","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106362","1483106363","1483106456","1483106362","1","8","0","-1","93","1","744","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982699","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106376","1483106377","1483106448","1483106376","1","8","0","-1","71","1","568","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982701","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106385","1483106386","1483106416","1483106385","1","8","0","-1","30","1","240","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982709","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106417","1483106418","1483106459","1483106417","1","8","0","-1","41","1","328","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982715","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106427","1483106428","1483106504","1483106427","1","8","0","-1","76","1","608","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982719","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106457","1483106458","1483106515","1483106457","1","8","0","-1","57","1","456","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982721","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106460","1483106461","1483106545","1483106460","1","8","0","-1","84","1","672","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982749","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106622","1483106623","1483106732","1483106622","1","8","0","-1","109","1","872","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982759","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106710","1483106711","1483106748","1483106710","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982770","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106730","1483106731","1483106800","1483106730","1","8","0","-1","69","1","552","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982774","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106733","1483106735","1483106767","1483106733","1","8","0","-1","32","2","256","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982778","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106748","1483106749","1483106786","1483106748","1","8","0","-1","37","1","296","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982784","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106768","1483106769","1483106812","1483106768","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982786","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106786","1483106787","1483106840","1483106786","1","8","0","-1","53","1","424","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982788","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106790","1483106791","1483106891","1483106790","1","8","0","-1","100","1","800","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982790","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106793","1483106794","1483106838","1483106793","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982792","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106801","1483106802","1483106849","1483106801","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982794","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106807","1483106808","1483106868","1483106807","1","8","0","-1","60","1","480","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982802","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106840","1483106843","1483106883","1483106840","1","8","0","-1","40","3","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982804","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106844","1483106846","1483106898","1483106844","1","8","0","-1","52","2","416","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982806","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106850","1483106851","1483106887","1483106850","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982814","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106887","1483106888","1483106954","1483106887","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982822","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106923","1483106924","1483107005","1483106923","1","8","0","-1","81","1","648","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982832","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106962","1483106963","1483107029","1483106962","1","8","0","-1","66","1","528","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982836","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483106969","1483106970","1483107037","1483106969","1","8","0","-1","67","1","536","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982838","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107005","1483107006","1483107042","1483107005","1","8","0","-1","36","1","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982841","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107006","1483107009","1483107123","1483107006","1","8","0","-1","114","3","912","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982847","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107030","1483107031","1483107076","1483107030","1","8","0","-1","45","1","360","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982853","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107043","1483107044","1483107102","1483107043","1","8","0","-1","58","1","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982857","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107077","1483107078","1483107141","1483107077","1","8","0","-1","63","1","504","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982865","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107102","1483107104","1483107211","1483107102","1","8","0","-1","107","2","856","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982871","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107141","1483107142","1483107198","1483107141","1","8","0","-1","56","1","448","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982875","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107171","1483107172","1483107277","1483107171","1","8","0","-1","105","1","840","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982879","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107200","1483107202","1483107279","1483107200","1","8","0","-1","77","2","616","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982883","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107212","1483107213","1483107315","1483107212","1","8","0","-1","102","1","816","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982891","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107280","1483107281","1483107476","1483107280","1","8","0","-1","195","1","1560","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982901","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107378","1483107379","1483107485","1483107378","1","8","0","-1","106","1","848","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982919","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107478","1483107481","1483107539","1483107478","1","8","0","-1","58","3","464","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982921","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107482","1483107484","1483107524","1483107482","1","8","0","-1","40","2","320","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982923","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107485","1483107487","1483107523","1483107485","1","8","0","-1","36","2","288","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982925","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107489","1483107490","1483107523","1483107489","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982933","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107525","1483107527","1483107574","1483107525","1","8","0","-1","47","2","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982937","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107540","1483107541","1483107587","1483107540","1","8","0","-1","46","1","368","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982939","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107548","1483107549","1483107604","1483107548","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982941","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107550","1483107551","1483107606","1483107550","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982943","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107551","1483107552","1483107681","1483107551","1","8","0","-1","129","1","1032","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982947","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107574","1483107575","1483107630","1483107574","1","8","0","-1","55","1","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982951","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107588","1483107589","1483107636","1483107588","1","8","0","-1","47","1","376","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982955","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107605","1483107606","1483107648","1483107605","1","8","0","-1","42","1","336","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982957","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107606","1483107609","1483107664","1483107606","1","8","0","-1","55","3","440","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982959","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107630","1483107631","1483107675","1483107630","1","8","0","-1","44","1","352","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982961","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107636","1483107637","1483107670","1483107636","1","8","0","-1","33","1","264","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982967","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107649","1483107651","1483107699","1483107649","1","8","0","-1","48","2","384","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982969","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107653","1483107654","1483107693","1483107653","1","8","0","-1","39","1","312","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["982971","Mortorq","UTC","","Honey-buzzard","Screwdriver","banana-cream","1483107664","1483107665","1483107708","1483107664","1","8","0","-1","43","1","344","0","1:0","FAILED","8","2147486848Mn","108000","black","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"]]} +{ + "success": true, + "fields": [ + "Local Job Id", + "Local Job Id Raw", + "Resource", + "Timezone", + "System Username (Deidentified)", + "User", + "Organization", + "Quality of Service", + "Submit Time (Timestamp)", + "Start Time (Timestamp)", + "End Time (Timestamp)", + "Eligible Time (Timestamp)", + "Nodes", + "Cores", + "GPUs", + "Memory Used", + "Wall Time", + "Wait Time", + "Core Time", + "GPU Time", + "Exit Code", + "Exit State", + "Requested Cores", + "Requested memory", + "Requested Wall Time", + "Queue", + "Decanal Unit", + "Department", + "PI Group" + ], + "data": [ + [ + "6109029", + "6109029", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "green-grape", + "1483088296", + "1483088296", + "1483088301", + "1483088296", + "1", + "1", + "0", + "-1", + "5", + "0", + "5", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110613", + "6110613", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "green-grape", + "1483119144", + "1483119144", + "1483119151", + "1483119144", + "1", + "1", + "0", + "-1", + "7", + "0", + "7", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6111540", + "6111540", + "Robertson", + "UTC", + "", + "Roller", + "Screwdriver", + "flapper", + "1483129488", + "1483129488", + "1483129510", + "1483129488", + "1", + "5", + "0", + "-1", + "22", + "0", + "110", + "0", + "1:0", + "FAILED", + "1", + "40000Mn", + "86400", + "pumpernickel", + "Geosciences", + "Earth Sciences", + "Geology and Paleontology" + ], + [ + "968193", + "968193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056132", + "1483056132", + "1483056159", + "1483056132", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968222", + "968222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056227", + "1483056227", + "1483056256", + "1483056227", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968242", + "968242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056285", + "1483056285", + "1483056308", + "1483056285", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968268", + "968268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056366", + "1483056366", + "1483056390", + "1483056366", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968282", + "968282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056431", + "1483056431", + "1483056459", + "1483056431", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968310", + "968310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056504", + "1483056504", + "1483056533", + "1483056504", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968314", + "968314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056512", + "1483056512", + "1483056539", + "1483056512", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968332", + "968332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056579", + "1483056579", + "1483056604", + "1483056579", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968360", + "968360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056682", + "1483056682", + "1483056704", + "1483056682", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968381", + "968381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056733", + "1483056733", + "1483056757", + "1483056733", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968401", + "968401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056790", + "1483056790", + "1483056819", + "1483056790", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968411", + "968411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056827", + "1483056827", + "1483056854", + "1483056827", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968421", + "968421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056855", + "1483056855", + "1483056878", + "1483056855", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968425", + "968425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056863", + "1483056863", + "1483056882", + "1483056863", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968431", + "968431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056873", + "1483056873", + "1483056901", + "1483056873", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968452", + "968452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056908", + "1483056908", + "1483056935", + "1483056908", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968465", + "968465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056945", + "1483056945", + "1483056974", + "1483056945", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968489", + "968489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057048", + "1483057048", + "1483057077", + "1483057048", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968536", + "968536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057206", + "1483057206", + "1483057235", + "1483057206", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968542", + "968542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057226", + "1483057226", + "1483057251", + "1483057226", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968544", + "968544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057236", + "1483057236", + "1483057257", + "1483057236", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968560", + "968560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057297", + "1483057297", + "1483057321", + "1483057297", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968680", + "968680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057736", + "1483057736", + "1483057757", + "1483057736", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968682", + "968682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057743", + "1483057743", + "1483057765", + "1483057743", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968718", + "968718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057857", + "1483057857", + "1483057879", + "1483057857", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968722", + "968722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057875", + "1483057875", + "1483057899", + "1483057875", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968724", + "968724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057880", + "1483057880", + "1483057903", + "1483057880", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968726", + "968726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057891", + "1483057891", + "1483057913", + "1483057891", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968728", + "968728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057900", + "1483057900", + "1483057918", + "1483057900", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968732", + "968732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057904", + "1483057904", + "1483057929", + "1483057904", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968736", + "968736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057914", + "1483057914", + "1483057938", + "1483057914", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968764", + "968764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057971", + "1483057971", + "1483057995", + "1483057971", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968766", + "968766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057972", + "1483057972", + "1483057994", + "1483057972", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968768", + "968768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057989", + "1483057989", + "1483058013", + "1483057989", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968770", + "968770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057994", + "1483057994", + "1483058018", + "1483057994", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968774", + "968774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058013", + "1483058013", + "1483058039", + "1483058013", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968786", + "968786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058039", + "1483058039", + "1483058068", + "1483058039", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968790", + "968790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058044", + "1483058044", + "1483058064", + "1483058044", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968815", + "968815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058116", + "1483058116", + "1483058144", + "1483058116", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968829", + "968829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058148", + "1483058148", + "1483058176", + "1483058148", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968835", + "968835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058177", + "1483058177", + "1483058198", + "1483058177", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968862", + "968862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058279", + "1483058279", + "1483058306", + "1483058279", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968864", + "968864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058283", + "1483058283", + "1483058309", + "1483058283", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968870", + "968870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058307", + "1483058307", + "1483058336", + "1483058307", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968874", + "968874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058310", + "1483058310", + "1483058336", + "1483058310", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968876", + "968876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058322", + "1483058322", + "1483058346", + "1483058322", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968880", + "968880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058335", + "1483058335", + "1483058363", + "1483058335", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968884", + "968884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058337", + "1483058337", + "1483058363", + "1483058337", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968920", + "968920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058474", + "1483058474", + "1483058503", + "1483058474", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968976", + "968976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058680", + "1483058680", + "1483058709", + "1483058680", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969230", + "969230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059986", + "1483059986", + "1483060013", + "1483059986", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969245", + "969245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060045", + "1483060045", + "1483060071", + "1483060045", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969315", + "969315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060288", + "1483060288", + "1483060317", + "1483060288", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969369", + "969369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060469", + "1483060469", + "1483060491", + "1483060469", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969413", + "969413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060639", + "1483060639", + "1483060658", + "1483060639", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969429", + "969429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060688", + "1483060688", + "1483060713", + "1483060688", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969467", + "969467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060802", + "1483060802", + "1483060829", + "1483060802", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969471", + "969471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060809", + "1483060809", + "1483060833", + "1483060809", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969473", + "969473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060814", + "1483060814", + "1483060841", + "1483060814", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969475", + "969475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060828", + "1483060828", + "1483060849", + "1483060828", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969485", + "969485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060841", + "1483060841", + "1483060869", + "1483060841", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969519", + "969519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060954", + "1483060954", + "1483060980", + "1483060954", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969654", + "969654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061415", + "1483061415", + "1483061443", + "1483061415", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969751", + "969751", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061756", + "1483061756", + "1483061779", + "1483061756", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969791", + "969791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061888", + "1483061888", + "1483061917", + "1483061888", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969818", + "969818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061974", + "1483061974", + "1483061999", + "1483061974", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969822", + "969822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061986", + "1483061986", + "1483062010", + "1483061986", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969838", + "969838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062035", + "1483062035", + "1483062059", + "1483062035", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969860", + "969860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062102", + "1483062102", + "1483062131", + "1483062102", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969864", + "969864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062105", + "1483062105", + "1483062128", + "1483062105", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969882", + "969882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062169", + "1483062169", + "1483062198", + "1483062169", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969906", + "969906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062239", + "1483062239", + "1483062268", + "1483062239", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969916", + "969916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062269", + "1483062269", + "1483062298", + "1483062269", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969928", + "969928", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062297", + "1483062297", + "1483062320", + "1483062297", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969932", + "969932", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062309", + "1483062309", + "1483062328", + "1483062309", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969934", + "969934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062321", + "1483062321", + "1483062342", + "1483062321", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969962", + "969962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062406", + "1483062406", + "1483062435", + "1483062406", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970341", + "970341", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064147", + "1483064147", + "1483064169", + "1483064147", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970346", + "970346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064151", + "1483064151", + "1483064173", + "1483064151", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970374", + "970374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064242", + "1483064242", + "1483064261", + "1483064242", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970386", + "970386", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064297", + "1483064297", + "1483064318", + "1483064297", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970388", + "970388", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064298", + "1483064298", + "1483064319", + "1483064298", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970416", + "970416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064371", + "1483064371", + "1483064398", + "1483064371", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970418", + "970418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064372", + "1483064372", + "1483064401", + "1483064372", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970420", + "970420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064399", + "1483064399", + "1483064418", + "1483064399", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970436", + "970436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064441", + "1483064441", + "1483064467", + "1483064441", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970478", + "970478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064559", + "1483064559", + "1483064579", + "1483064559", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970480", + "970480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064562", + "1483064562", + "1483064580", + "1483064562", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970482", + "970482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064575", + "1483064575", + "1483064597", + "1483064575", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970484", + "970484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064579", + "1483064579", + "1483064600", + "1483064579", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970486", + "970486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064581", + "1483064581", + "1483064609", + "1483064581", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970503", + "970503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064610", + "1483064610", + "1483064635", + "1483064610", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970517", + "970517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064656", + "1483064656", + "1483064685", + "1483064656", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970523", + "970523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064667", + "1483064667", + "1483064685", + "1483064667", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970568", + "970568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064801", + "1483064801", + "1483064824", + "1483064801", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970613", + "970613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064940", + "1483064940", + "1483064963", + "1483064940", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970617", + "970617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064956", + "1483064956", + "1483064977", + "1483064956", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970619", + "970619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064964", + "1483064964", + "1483064990", + "1483064964", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970642", + "970642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065035", + "1483065035", + "1483065061", + "1483065035", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970646", + "970646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065055", + "1483065055", + "1483065082", + "1483065055", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970686", + "970686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065153", + "1483065153", + "1483065181", + "1483065153", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970688", + "970688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065168", + "1483065168", + "1483065191", + "1483065168", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970690", + "970690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065169", + "1483065169", + "1483065189", + "1483065169", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970704", + "970704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065221", + "1483065221", + "1483065243", + "1483065221", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970706", + "970706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065226", + "1483065226", + "1483065249", + "1483065226", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970776", + "970776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065546", + "1483065546", + "1483065567", + "1483065546", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970780", + "970780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065566", + "1483065566", + "1483065586", + "1483065566", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970788", + "970788", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065584", + "1483065584", + "1483065609", + "1483065584", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970794", + "970794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065610", + "1483065610", + "1483065632", + "1483065610", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970798", + "970798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065620", + "1483065620", + "1483065640", + "1483065620", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970802", + "970802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065624", + "1483065624", + "1483065650", + "1483065624", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970821", + "970821", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065677", + "1483065677", + "1483065706", + "1483065677", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970841", + "970841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065723", + "1483065723", + "1483065745", + "1483065723", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970843", + "970843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065743", + "1483065743", + "1483065766", + "1483065743", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970876", + "970876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065832", + "1483065832", + "1483065853", + "1483065832", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970880", + "970880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065835", + "1483065835", + "1483065862", + "1483065835", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970886", + "970886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065863", + "1483065863", + "1483065882", + "1483065863", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970892", + "970892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065878", + "1483065878", + "1483065902", + "1483065878", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970920", + "970920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065959", + "1483065959", + "1483065983", + "1483065959", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970936", + "970936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066009", + "1483066009", + "1483066029", + "1483066009", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970944", + "970944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066021", + "1483066021", + "1483066049", + "1483066021", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970962", + "970962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066080", + "1483066080", + "1483066109", + "1483066080", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971008", + "971008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066190", + "1483066190", + "1483066215", + "1483066190", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971024", + "971024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066256", + "1483066256", + "1483066278", + "1483066256", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971068", + "971068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066393", + "1483066393", + "1483066421", + "1483066393", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971070", + "971070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066393", + "1483066393", + "1483066420", + "1483066393", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971116", + "971116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066576", + "1483066576", + "1483066603", + "1483066576", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971308", + "971308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067833", + "1483067833", + "1483067856", + "1483067833", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971310", + "971310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067854", + "1483067854", + "1483067876", + "1483067854", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971314", + "971314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067857", + "1483067857", + "1483067884", + "1483067857", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971369", + "971369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067991", + "1483067991", + "1483068017", + "1483067991", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971371", + "971371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067992", + "1483067992", + "1483068019", + "1483067992", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971373", + "971373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067993", + "1483067993", + "1483068011", + "1483067993", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971393", + "971393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068051", + "1483068051", + "1483068079", + "1483068051", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971409", + "971409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068097", + "1483068097", + "1483068125", + "1483068097", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971417", + "971417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068109", + "1483068109", + "1483068136", + "1483068109", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971419", + "971419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068119", + "1483068119", + "1483068136", + "1483068119", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971421", + "971421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068126", + "1483068126", + "1483068152", + "1483068126", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971423", + "971423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068129", + "1483068129", + "1483068156", + "1483068129", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971440", + "971440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068162", + "1483068162", + "1483068184", + "1483068162", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971444", + "971444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068172", + "1483068172", + "1483068198", + "1483068172", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971446", + "971446", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068176", + "1483068176", + "1483068205", + "1483068176", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971454", + "971454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068198", + "1483068198", + "1483068227", + "1483068198", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971464", + "971464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068223", + "1483068223", + "1483068246", + "1483068223", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971492", + "971492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068317", + "1483068317", + "1483068336", + "1483068317", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971494", + "971494", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068318", + "1483068318", + "1483068334", + "1483068318", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971498", + "971498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068324", + "1483068324", + "1483068346", + "1483068324", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971520", + "971520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068387", + "1483068387", + "1483068405", + "1483068387", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971522", + "971522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068391", + "1483068391", + "1483068410", + "1483068391", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971524", + "971524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068396", + "1483068396", + "1483068415", + "1483068396", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971528", + "971528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068402", + "1483068402", + "1483068422", + "1483068402", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971557", + "971557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068468", + "1483068468", + "1483068494", + "1483068468", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971565", + "971565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068489", + "1483068489", + "1483068509", + "1483068489", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971567", + "971567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068494", + "1483068494", + "1483068522", + "1483068494", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971571", + "971571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068509", + "1483068509", + "1483068534", + "1483068509", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971593", + "971593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068577", + "1483068577", + "1483068599", + "1483068577", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971630", + "971630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068698", + "1483068698", + "1483068718", + "1483068698", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971658", + "971658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068779", + "1483068779", + "1483068801", + "1483068779", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971680", + "971680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068826", + "1483068826", + "1483068854", + "1483068826", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971712", + "971712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068978", + "1483068978", + "1483069005", + "1483068978", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971728", + "971728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069039", + "1483069039", + "1483069057", + "1483069039", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971732", + "971732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069041", + "1483069041", + "1483069064", + "1483069041", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971753", + "971753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069094", + "1483069094", + "1483069119", + "1483069094", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971765", + "971765", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069120", + "1483069120", + "1483069136", + "1483069120", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971767", + "971767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069131", + "1483069131", + "1483069146", + "1483069131", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971769", + "971769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069137", + "1483069137", + "1483069162", + "1483069137", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971783", + "971783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069175", + "1483069175", + "1483069194", + "1483069175", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971789", + "971789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069194", + "1483069194", + "1483069221", + "1483069194", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971859", + "971859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069589", + "1483069589", + "1483069608", + "1483069589", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971865", + "971865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069596", + "1483069596", + "1483069611", + "1483069596", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971871", + "971871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069612", + "1483069612", + "1483069634", + "1483069612", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971877", + "971877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069623", + "1483069623", + "1483069641", + "1483069623", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971879", + "971879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069633", + "1483069633", + "1483069651", + "1483069633", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971881", + "971881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069636", + "1483069636", + "1483069654", + "1483069636", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971883", + "971883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069642", + "1483069642", + "1483069659", + "1483069642", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971885", + "971885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069647", + "1483069647", + "1483069666", + "1483069647", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971909", + "971909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069711", + "1483069711", + "1483069728", + "1483069711", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971911", + "971911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069714", + "1483069714", + "1483069730", + "1483069714", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971913", + "971913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069715", + "1483069715", + "1483069735", + "1483069715", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971917", + "971917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069729", + "1483069729", + "1483069750", + "1483069729", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971933", + "971933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069758", + "1483069758", + "1483069785", + "1483069758", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971935", + "971935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069758", + "1483069758", + "1483069787", + "1483069758", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971973", + "971973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069830", + "1483069830", + "1483069851", + "1483069830", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971979", + "971979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069844", + "1483069844", + "1483069869", + "1483069844", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971981", + "971981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069850", + "1483069850", + "1483069878", + "1483069850", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971993", + "971993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069879", + "1483069879", + "1483069898", + "1483069879", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971997", + "971997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069895", + "1483069895", + "1483069914", + "1483069895", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971999", + "971999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069899", + "1483069899", + "1483069924", + "1483069899", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972001", + "972001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069902", + "1483069902", + "1483069919", + "1483069902", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972013", + "972013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069922", + "1483069922", + "1483069949", + "1483069922", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972015", + "972015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069925", + "1483069925", + "1483069944", + "1483069925", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972017", + "972017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069933", + "1483069933", + "1483069951", + "1483069933", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972023", + "972023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069944", + "1483069944", + "1483069962", + "1483069944", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972044", + "972044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069984", + "1483069984", + "1483070006", + "1483069984", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972048", + "972048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069991", + "1483069991", + "1483070004", + "1483069991", + "1", + "8", + "0", + "-1", + "13", + "0", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972052", + "972052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070003", + "1483070003", + "1483070023", + "1483070003", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972066", + "972066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070022", + "1483070022", + "1483070036", + "1483070022", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972084", + "972084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070054", + "1483070054", + "1483070070", + "1483070054", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972092", + "972092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070074", + "1483070074", + "1483070088", + "1483070074", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972098", + "972098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070088", + "1483070088", + "1483070111", + "1483070088", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972106", + "972106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070106", + "1483070106", + "1483070122", + "1483070106", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972108", + "972108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070109", + "1483070109", + "1483070125", + "1483070109", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972110", + "972110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070112", + "1483070112", + "1483070129", + "1483070112", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972114", + "972114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070119", + "1483070119", + "1483070133", + "1483070119", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972132", + "972132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070153", + "1483070153", + "1483070175", + "1483070153", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972138", + "972138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070163", + "1483070163", + "1483070183", + "1483070163", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972146", + "972146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070184", + "1483070184", + "1483070209", + "1483070184", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972152", + "972152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070201", + "1483070201", + "1483070221", + "1483070201", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972176", + "972176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070255", + "1483070255", + "1483070275", + "1483070255", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972178", + "972178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070260", + "1483070260", + "1483070283", + "1483070260", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972182", + "972182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070270", + "1483070270", + "1483070295", + "1483070270", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972184", + "972184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070276", + "1483070276", + "1483070295", + "1483070276", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972186", + "972186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070282", + "1483070282", + "1483070301", + "1483070282", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972192", + "972192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070295", + "1483070295", + "1483070318", + "1483070295", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972204", + "972204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070319", + "1483070319", + "1483070337", + "1483070319", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972221", + "972221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070367", + "1483070367", + "1483070388", + "1483070367", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972229", + "972229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070389", + "1483070389", + "1483070407", + "1483070389", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972243", + "972243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070406", + "1483070406", + "1483070425", + "1483070406", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972251", + "972251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070422", + "1483070422", + "1483070443", + "1483070422", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972269", + "972269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070472", + "1483070472", + "1483070491", + "1483070472", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972271", + "972271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070479", + "1483070479", + "1483070499", + "1483070479", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972277", + "972277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070492", + "1483070492", + "1483070509", + "1483070492", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972281", + "972281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070500", + "1483070500", + "1483070523", + "1483070500", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972283", + "972283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070506", + "1483070506", + "1483070530", + "1483070506", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972291", + "972291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070519", + "1483070519", + "1483070541", + "1483070519", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972295", + "972295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070531", + "1483070531", + "1483070549", + "1483070531", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972297", + "972297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070537", + "1483070537", + "1483070555", + "1483070537", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972322", + "972322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070590", + "1483070590", + "1483070612", + "1483070590", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972360", + "972360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070749", + "1483070749", + "1483070767", + "1483070749", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972382", + "972382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070800", + "1483070800", + "1483070817", + "1483070800", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972384", + "972384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070805", + "1483070805", + "1483070820", + "1483070805", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972390", + "972390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070821", + "1483070821", + "1483070846", + "1483070821", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972405", + "972405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070847", + "1483070847", + "1483070865", + "1483070847", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972407", + "972407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070854", + "1483070854", + "1483070872", + "1483070854", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972411", + "972411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070866", + "1483070866", + "1483070883", + "1483070866", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972413", + "972413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070872", + "1483070872", + "1483070887", + "1483070872", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972421", + "972421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070879", + "1483070879", + "1483070900", + "1483070879", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972423", + "972423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070884", + "1483070884", + "1483070904", + "1483070884", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972425", + "972425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070887", + "1483070887", + "1483070904", + "1483070887", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972427", + "972427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070898", + "1483070898", + "1483070915", + "1483070898", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972435", + "972435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070905", + "1483070905", + "1483070930", + "1483070905", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972445", + "972445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070930", + "1483070930", + "1483070959", + "1483070930", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972477", + "972477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071010", + "1483071010", + "1483071023", + "1483071010", + "1", + "8", + "0", + "-1", + "13", + "0", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972489", + "972489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071028", + "1483071028", + "1483071054", + "1483071028", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972495", + "972495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071054", + "1483071054", + "1483071072", + "1483071054", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972511", + "972511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071084", + "1483071084", + "1483071103", + "1483071084", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972525", + "972525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071115", + "1483071115", + "1483071131", + "1483071115", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972531", + "972531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071123", + "1483071123", + "1483071151", + "1483071123", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972535", + "972535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071130", + "1483071130", + "1483071159", + "1483071130", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972557", + "972557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071183", + "1483071183", + "1483071206", + "1483071183", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972566", + "972566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071194", + "1483071194", + "1483071214", + "1483071194", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972568", + "972568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071200", + "1483071200", + "1483071216", + "1483071200", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972570", + "972570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071207", + "1483071207", + "1483071223", + "1483071207", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972647", + "972647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071446", + "1483071446", + "1483071475", + "1483071446", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972657", + "972657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071476", + "1483071476", + "1483071503", + "1483071476", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972679", + "972679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071526", + "1483071526", + "1483071552", + "1483071526", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972689", + "972689", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071550", + "1483071550", + "1483071579", + "1483071550", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972699", + "972699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071567", + "1483071567", + "1483071592", + "1483071567", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972701", + "972701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071579", + "1483071579", + "1483071608", + "1483071579", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972703", + "972703", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071582", + "1483071582", + "1483071604", + "1483071582", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972705", + "972705", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071592", + "1483071592", + "1483071616", + "1483071592", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972868", + "972868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072249", + "1483072249", + "1483072277", + "1483072249", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972870", + "972870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072249", + "1483072249", + "1483072278", + "1483072249", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972884", + "972884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072286", + "1483072286", + "1483072312", + "1483072286", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972886", + "972886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072293", + "1483072293", + "1483072320", + "1483072293", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972910", + "972910", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072390", + "1483072390", + "1483072414", + "1483072390", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972912", + "972912", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072397", + "1483072397", + "1483072426", + "1483072397", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972928", + "972928", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072450", + "1483072450", + "1483072471", + "1483072450", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972957", + "972957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072524", + "1483072524", + "1483072553", + "1483072524", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972973", + "972973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072588", + "1483072588", + "1483072608", + "1483072588", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973000", + "973000", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072664", + "1483072664", + "1483072692", + "1483072664", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973002", + "973002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072668", + "1483072668", + "1483072692", + "1483072668", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973012", + "973012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072692", + "1483072692", + "1483072720", + "1483072692", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973018", + "973018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072715", + "1483072715", + "1483072737", + "1483072715", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973040", + "973040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072802", + "1483072802", + "1483072829", + "1483072802", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973046", + "973046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072830", + "1483072830", + "1483072854", + "1483072830", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973048", + "973048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072834", + "1483072834", + "1483072862", + "1483072834", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973064", + "973064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072894", + "1483072894", + "1483072915", + "1483072894", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973086", + "973086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072952", + "1483072952", + "1483072973", + "1483072952", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973102", + "973102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073002", + "1483073002", + "1483073031", + "1483073002", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973110", + "973110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073039", + "1483073039", + "1483073058", + "1483073039", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973131", + "973131", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073092", + "1483073092", + "1483073116", + "1483073092", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973133", + "973133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073108", + "1483073108", + "1483073134", + "1483073108", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973135", + "973135", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073115", + "1483073115", + "1483073137", + "1483073115", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973143", + "973143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073137", + "1483073137", + "1483073163", + "1483073137", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973178", + "973178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073228", + "1483073228", + "1483073256", + "1483073228", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973196", + "973196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073288", + "1483073288", + "1483073317", + "1483073288", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973222", + "973222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073366", + "1483073366", + "1483073393", + "1483073366", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973224", + "973224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073379", + "1483073379", + "1483073406", + "1483073379", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973228", + "973228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073394", + "1483073394", + "1483073421", + "1483073394", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973230", + "973230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073406", + "1483073406", + "1483073433", + "1483073406", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973321", + "973321", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073708", + "1483073708", + "1483073730", + "1483073708", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973341", + "973341", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073770", + "1483073770", + "1483073799", + "1483073770", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973412", + "973412", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074050", + "1483074050", + "1483074075", + "1483074050", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973424", + "973424", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074100", + "1483074100", + "1483074124", + "1483074100", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973454", + "973454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074196", + "1483074196", + "1483074218", + "1483074196", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973456", + "973456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074204", + "1483074204", + "1483074225", + "1483074204", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973458", + "973458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074218", + "1483074218", + "1483074235", + "1483074218", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973520", + "973520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074374", + "1483074374", + "1483074392", + "1483074374", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973548", + "973548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074445", + "1483074445", + "1483074470", + "1483074445", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973557", + "973557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074467", + "1483074467", + "1483074489", + "1483074467", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973562", + "973562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074471", + "1483074471", + "1483074496", + "1483074471", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973564", + "973564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074471", + "1483074471", + "1483074490", + "1483074471", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973596", + "973596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074574", + "1483074574", + "1483074598", + "1483074574", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973604", + "973604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074589", + "1483074589", + "1483074611", + "1483074589", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973639", + "973639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074688", + "1483074688", + "1483074715", + "1483074688", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973649", + "973649", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074736", + "1483074736", + "1483074764", + "1483074736", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973651", + "973651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074748", + "1483074748", + "1483074774", + "1483074748", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973657", + "973657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074763", + "1483074763", + "1483074789", + "1483074763", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973744", + "973744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075098", + "1483075098", + "1483075127", + "1483075098", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973971", + "973971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076155", + "1483076155", + "1483076182", + "1483076155", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973973", + "973973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076155", + "1483076155", + "1483076180", + "1483076155", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974021", + "974021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076309", + "1483076309", + "1483076330", + "1483076309", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974066", + "974066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076473", + "1483076473", + "1483076499", + "1483076473", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974094", + "974094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076574", + "1483076574", + "1483076595", + "1483076574", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974096", + "974096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076587", + "1483076587", + "1483076610", + "1483076587", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974110", + "974110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076639", + "1483076639", + "1483076664", + "1483076639", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974113", + "974113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076639", + "1483076639", + "1483076665", + "1483076639", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974147", + "974147", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076777", + "1483076777", + "1483076802", + "1483076777", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974149", + "974149", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076781", + "1483076781", + "1483076805", + "1483076781", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974196", + "974196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076931", + "1483076931", + "1483076954", + "1483076931", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974198", + "974198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076936", + "1483076936", + "1483076959", + "1483076936", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974200", + "974200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076937", + "1483076937", + "1483076958", + "1483076937", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974202", + "974202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076941", + "1483076941", + "1483076958", + "1483076941", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974245", + "974245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077067", + "1483077067", + "1483077094", + "1483077067", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974247", + "974247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077072", + "1483077072", + "1483077096", + "1483077072", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974334", + "974334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077414", + "1483077414", + "1483077443", + "1483077414", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974497", + "974497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078008", + "1483078008", + "1483078033", + "1483078008", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974515", + "974515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078064", + "1483078064", + "1483078090", + "1483078064", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974517", + "974517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078067", + "1483078067", + "1483078089", + "1483078067", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974543", + "974543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078153", + "1483078153", + "1483078177", + "1483078153", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974547", + "974547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078164", + "1483078164", + "1483078186", + "1483078164", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974565", + "974565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078213", + "1483078213", + "1483078230", + "1483078213", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974603", + "974603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078309", + "1483078309", + "1483078337", + "1483078309", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974638", + "974638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078396", + "1483078396", + "1483078417", + "1483078396", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974685", + "974685", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078530", + "1483078530", + "1483078558", + "1483078530", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974792", + "974792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078946", + "1483078946", + "1483078974", + "1483078946", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975017", + "975017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080089", + "1483080089", + "1483080109", + "1483080089", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975022", + "975022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080092", + "1483080092", + "1483080112", + "1483080092", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975024", + "975024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080096", + "1483080096", + "1483080119", + "1483080096", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975046", + "975046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080155", + "1483080155", + "1483080180", + "1483080155", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975048", + "975048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080172", + "1483080172", + "1483080201", + "1483080172", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975050", + "975050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080180", + "1483080180", + "1483080198", + "1483080180", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975060", + "975060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080202", + "1483080202", + "1483080228", + "1483080202", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975064", + "975064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080225", + "1483080225", + "1483080244", + "1483080225", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975068", + "975068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080229", + "1483080229", + "1483080249", + "1483080229", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975086", + "975086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080276", + "1483080276", + "1483080298", + "1483080276", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975108", + "975108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080366", + "1483080366", + "1483080387", + "1483080366", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975116", + "975116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080376", + "1483080376", + "1483080405", + "1483080376", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975137", + "975137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080432", + "1483080432", + "1483080461", + "1483080432", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975141", + "975141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080438", + "1483080438", + "1483080457", + "1483080438", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975155", + "975155", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080464", + "1483080464", + "1483080491", + "1483080464", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975157", + "975157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080482", + "1483080482", + "1483080511", + "1483080482", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975159", + "975159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080488", + "1483080488", + "1483080509", + "1483080488", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975223", + "975223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080671", + "1483080671", + "1483080695", + "1483080671", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975231", + "975231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080694", + "1483080694", + "1483080708", + "1483080694", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975242", + "975242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080709", + "1483080709", + "1483080726", + "1483080709", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975248", + "975248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080726", + "1483080726", + "1483080742", + "1483080726", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975254", + "975254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080736", + "1483080736", + "1483080763", + "1483080736", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975260", + "975260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080743", + "1483080743", + "1483080771", + "1483080743", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975276", + "975276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080796", + "1483080796", + "1483080816", + "1483080796", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975288", + "975288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080843", + "1483080843", + "1483080867", + "1483080843", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975296", + "975296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080859", + "1483080859", + "1483080880", + "1483080859", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975314", + "975314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080911", + "1483080911", + "1483080940", + "1483080911", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975320", + "975320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080925", + "1483080925", + "1483080950", + "1483080925", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975326", + "975326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080949", + "1483080949", + "1483080976", + "1483080949", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975383", + "975383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081121", + "1483081121", + "1483081143", + "1483081121", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975409", + "975409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081188", + "1483081188", + "1483081217", + "1483081188", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975417", + "975417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081218", + "1483081218", + "1483081247", + "1483081218", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975425", + "975425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081246", + "1483081246", + "1483081269", + "1483081246", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975427", + "975427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081247", + "1483081247", + "1483081269", + "1483081247", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975433", + "975433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081270", + "1483081270", + "1483081292", + "1483081270", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975515", + "975515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081576", + "1483081576", + "1483081596", + "1483081576", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975517", + "975517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081583", + "1483081583", + "1483081605", + "1483081583", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975523", + "975523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081600", + "1483081600", + "1483081628", + "1483081600", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975539", + "975539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081648", + "1483081648", + "1483081673", + "1483081648", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975541", + "975541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081660", + "1483081660", + "1483081686", + "1483081660", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975545", + "975545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081672", + "1483081672", + "1483081699", + "1483081672", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975560", + "975560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081712", + "1483081712", + "1483081734", + "1483081712", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975608", + "975608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081850", + "1483081850", + "1483081866", + "1483081850", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975610", + "975610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081854", + "1483081854", + "1483081879", + "1483081854", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975616", + "975616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081861", + "1483081861", + "1483081885", + "1483081861", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975620", + "975620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081867", + "1483081867", + "1483081896", + "1483081867", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975640", + "975640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081926", + "1483081926", + "1483081942", + "1483081926", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975652", + "975652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081952", + "1483081952", + "1483081969", + "1483081952", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975674", + "975674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081999", + "1483081999", + "1483082026", + "1483081999", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975676", + "975676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082020", + "1483082020", + "1483082048", + "1483082020", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975690", + "975690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082060", + "1483082060", + "1483082087", + "1483082060", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975740", + "975740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082186", + "1483082186", + "1483082214", + "1483082186", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975750", + "975750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082232", + "1483082232", + "1483082256", + "1483082232", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975836", + "975836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082529", + "1483082529", + "1483082557", + "1483082529", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975842", + "975842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082541", + "1483082541", + "1483082570", + "1483082541", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976045", + "976045", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083443", + "1483083443", + "1483083462", + "1483083443", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976056", + "976056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083462", + "1483083462", + "1483083483", + "1483083462", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976058", + "976058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083463", + "1483083463", + "1483083484", + "1483083463", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976062", + "976062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083465", + "1483083465", + "1483083482", + "1483083465", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976068", + "976068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083483", + "1483083483", + "1483083500", + "1483083483", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976085", + "976085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083512", + "1483083512", + "1483083536", + "1483083512", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976087", + "976087", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083519", + "1483083519", + "1483083538", + "1483083519", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976130", + "976130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083620", + "1483083620", + "1483083637", + "1483083620", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976132", + "976132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083625", + "1483083625", + "1483083640", + "1483083625", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976136", + "976136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083633", + "1483083633", + "1483083653", + "1483083633", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976144", + "976144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083646", + "1483083646", + "1483083664", + "1483083646", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976146", + "976146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083654", + "1483083654", + "1483083671", + "1483083654", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976154", + "976154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083664", + "1483083664", + "1483083693", + "1483083664", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976172", + "976172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083709", + "1483083709", + "1483083725", + "1483083709", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976174", + "976174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083713", + "1483083713", + "1483083735", + "1483083713", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976193", + "976193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083757", + "1483083757", + "1483083783", + "1483083757", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976196", + "976196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083757", + "1483083757", + "1483083783", + "1483083757", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976208", + "976208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083784", + "1483083784", + "1483083798", + "1483083784", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976210", + "976210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083798", + "1483083798", + "1483083817", + "1483083798", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976212", + "976212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083798", + "1483083798", + "1483083816", + "1483083798", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976214", + "976214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083799", + "1483083799", + "1483083818", + "1483083799", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976218", + "976218", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083807", + "1483083807", + "1483083826", + "1483083807", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976220", + "976220", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083817", + "1483083817", + "1483083833", + "1483083817", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976230", + "976230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083834", + "1483083834", + "1483083856", + "1483083834", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976242", + "976242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083857", + "1483083857", + "1483083881", + "1483083857", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976254", + "976254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083879", + "1483083879", + "1483083899", + "1483083879", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976256", + "976256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083880", + "1483083880", + "1483083894", + "1483083880", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976262", + "976262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083894", + "1483083894", + "1483083907", + "1483083894", + "1", + "8", + "0", + "-1", + "13", + "0", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976264", + "976264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083895", + "1483083895", + "1483083909", + "1483083895", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976286", + "976286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083936", + "1483083936", + "1483083958", + "1483083936", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976314", + "976314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083999", + "1483083999", + "1483084027", + "1483083999", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976316", + "976316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084022", + "1483084022", + "1483084045", + "1483084022", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976322", + "976322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084043", + "1483084043", + "1483084063", + "1483084043", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976326", + "976326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084046", + "1483084046", + "1483084062", + "1483084046", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976330", + "976330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084054", + "1483084054", + "1483084072", + "1483084054", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976336", + "976336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084063", + "1483084063", + "1483084089", + "1483084063", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976352", + "976352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084105", + "1483084105", + "1483084125", + "1483084105", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976359", + "976359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084113", + "1483084113", + "1483084131", + "1483084113", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976377", + "976377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084158", + "1483084158", + "1483084187", + "1483084158", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976387", + "976387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084187", + "1483084187", + "1483084206", + "1483084187", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976433", + "976433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084344", + "1483084344", + "1483084363", + "1483084344", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976435", + "976435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084349", + "1483084349", + "1483084364", + "1483084349", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976437", + "976437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084364", + "1483084364", + "1483084380", + "1483084364", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976443", + "976443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084381", + "1483084381", + "1483084407", + "1483084381", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976451", + "976451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084404", + "1483084404", + "1483084432", + "1483084404", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976455", + "976455", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084424", + "1483084424", + "1483084442", + "1483084424", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976459", + "976459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084429", + "1483084429", + "1483084445", + "1483084429", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976463", + "976463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084442", + "1483084442", + "1483084468", + "1483084442", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976473", + "976473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084457", + "1483084457", + "1483084483", + "1483084457", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976495", + "976495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084516", + "1483084516", + "1483084529", + "1483084516", + "1", + "8", + "0", + "-1", + "13", + "0", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976509", + "976509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084547", + "1483084547", + "1483084571", + "1483084547", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976513", + "976513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084555", + "1483084555", + "1483084570", + "1483084555", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976517", + "976517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084570", + "1483084570", + "1483084594", + "1483084570", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976587", + "976587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084869", + "1483084869", + "1483084891", + "1483084869", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976607", + "976607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084917", + "1483084917", + "1483084943", + "1483084917", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976609", + "976609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084918", + "1483084918", + "1483084940", + "1483084918", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976619", + "976619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084944", + "1483084944", + "1483084973", + "1483084944", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976631", + "976631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084993", + "1483084993", + "1483085015", + "1483084993", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976635", + "976635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085016", + "1483085016", + "1483085038", + "1483085016", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976637", + "976637", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085016", + "1483085016", + "1483085038", + "1483085016", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976641", + "976641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085027", + "1483085027", + "1483085051", + "1483085027", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976648", + "976648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085039", + "1483085039", + "1483085062", + "1483085039", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976650", + "976650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085040", + "1483085040", + "1483085064", + "1483085040", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976654", + "976654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085045", + "1483085045", + "1483085066", + "1483085045", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976680", + "976680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085123", + "1483085123", + "1483085146", + "1483085123", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976692", + "976692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085139", + "1483085139", + "1483085162", + "1483085139", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976694", + "976694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085146", + "1483085146", + "1483085169", + "1483085146", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976700", + "976700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085158", + "1483085158", + "1483085180", + "1483085158", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976742", + "976742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085270", + "1483085270", + "1483085297", + "1483085270", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976770", + "976770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085358", + "1483085358", + "1483085379", + "1483085358", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976772", + "976772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085364", + "1483085364", + "1483085384", + "1483085364", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976776", + "976776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085379", + "1483085379", + "1483085397", + "1483085379", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976780", + "976780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085385", + "1483085385", + "1483085407", + "1483085385", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976786", + "976786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085398", + "1483085398", + "1483085420", + "1483085398", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976788", + "976788", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085402", + "1483085402", + "1483085423", + "1483085402", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976794", + "976794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085408", + "1483085408", + "1483085425", + "1483085408", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976796", + "976796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085411", + "1483085411", + "1483085430", + "1483085411", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976798", + "976798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085421", + "1483085421", + "1483085440", + "1483085421", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976801", + "976801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085421", + "1483085421", + "1483085450", + "1483085421", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976803", + "976803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085424", + "1483085424", + "1483085452", + "1483085424", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976813", + "976813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085451", + "1483085451", + "1483085470", + "1483085451", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976834", + "976834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085482", + "1483085482", + "1483085500", + "1483085482", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976836", + "976836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085485", + "1483085485", + "1483085503", + "1483085485", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976840", + "976840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085496", + "1483085496", + "1483085512", + "1483085496", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976884", + "976884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085603", + "1483085603", + "1483085632", + "1483085603", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976915", + "976915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085673", + "1483085673", + "1483085699", + "1483085673", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976923", + "976923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085700", + "1483085700", + "1483085724", + "1483085700", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976955", + "976955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085768", + "1483085768", + "1483085792", + "1483085768", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976957", + "976957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085785", + "1483085785", + "1483085811", + "1483085785", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976963", + "976963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085795", + "1483085795", + "1483085822", + "1483085795", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976971", + "976971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085820", + "1483085820", + "1483085845", + "1483085820", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977017", + "977017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085946", + "1483085946", + "1483085971", + "1483085946", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977019", + "977019", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085953", + "1483085953", + "1483085977", + "1483085953", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977094", + "977094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086252", + "1483086252", + "1483086271", + "1483086252", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977105", + "977105", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086279", + "1483086279", + "1483086302", + "1483086279", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977107", + "977107", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086288", + "1483086288", + "1483086309", + "1483086288", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977142", + "977142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086365", + "1483086365", + "1483086388", + "1483086365", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977154", + "977154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086392", + "1483086392", + "1483086413", + "1483086392", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977174", + "977174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086427", + "1483086427", + "1483086453", + "1483086427", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977176", + "977176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086438", + "1483086438", + "1483086458", + "1483086438", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977178", + "977178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086443", + "1483086443", + "1483086467", + "1483086443", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977180", + "977180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086449", + "1483086449", + "1483086477", + "1483086449", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977182", + "977182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086454", + "1483086454", + "1483086474", + "1483086454", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977188", + "977188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086468", + "1483086468", + "1483086491", + "1483086468", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977192", + "977192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086475", + "1483086475", + "1483086500", + "1483086475", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977198", + "977198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086487", + "1483086487", + "1483086514", + "1483086487", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977200", + "977200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086492", + "1483086492", + "1483086513", + "1483086492", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977223", + "977223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086552", + "1483086552", + "1483086571", + "1483086552", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977235", + "977235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086576", + "1483086576", + "1483086596", + "1483086576", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977269", + "977269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086648", + "1483086648", + "1483086670", + "1483086648", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977271", + "977271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086650", + "1483086650", + "1483086669", + "1483086650", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977275", + "977275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086658", + "1483086658", + "1483086675", + "1483086658", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977277", + "977277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086662", + "1483086662", + "1483086688", + "1483086662", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977284", + "977284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086670", + "1483086670", + "1483086691", + "1483086670", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977290", + "977290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086676", + "1483086676", + "1483086693", + "1483086676", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977296", + "977296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086692", + "1483086692", + "1483086718", + "1483086692", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977298", + "977298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086692", + "1483086692", + "1483086720", + "1483086692", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977300", + "977300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086693", + "1483086693", + "1483086721", + "1483086693", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977310", + "977310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086719", + "1483086719", + "1483086746", + "1483086719", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977320", + "977320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086740", + "1483086740", + "1483086767", + "1483086740", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977338", + "977338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086781", + "1483086781", + "1483086806", + "1483086781", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977426", + "977426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087044", + "1483087044", + "1483087073", + "1483087044", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977563", + "977563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087539", + "1483087539", + "1483087568", + "1483087539", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977627", + "977627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087795", + "1483087795", + "1483087820", + "1483087795", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977629", + "977629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087807", + "1483087807", + "1483087831", + "1483087807", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977631", + "977631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087821", + "1483087821", + "1483087845", + "1483087821", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977633", + "977633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087832", + "1483087832", + "1483087856", + "1483087832", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977644", + "977644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087846", + "1483087846", + "1483087871", + "1483087846", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977672", + "977672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087911", + "1483087911", + "1483087934", + "1483087911", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977674", + "977674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087911", + "1483087911", + "1483087936", + "1483087911", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977680", + "977680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087935", + "1483087935", + "1483087957", + "1483087935", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977689", + "977689", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087950", + "1483087950", + "1483087975", + "1483087950", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977693", + "977693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087958", + "1483087958", + "1483087985", + "1483087958", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977697", + "977697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087965", + "1483087965", + "1483087992", + "1483087965", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977699", + "977699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087976", + "1483087976", + "1483088000", + "1483087976", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977724", + "977724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088018", + "1483088018", + "1483088040", + "1483088018", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977728", + "977728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088041", + "1483088041", + "1483088067", + "1483088041", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977732", + "977732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088043", + "1483088043", + "1483088068", + "1483088043", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977736", + "977736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088064", + "1483088064", + "1483088092", + "1483088064", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977740", + "977740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088069", + "1483088069", + "1483088091", + "1483088069", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977742", + "977742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088069", + "1483088069", + "1483088092", + "1483088069", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977765", + "977765", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088138", + "1483088138", + "1483088167", + "1483088138", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977769", + "977769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088151", + "1483088151", + "1483088177", + "1483088151", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977785", + "977785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088195", + "1483088195", + "1483088221", + "1483088195", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977787", + "977787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088208", + "1483088208", + "1483088233", + "1483088208", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977815", + "977815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088296", + "1483088296", + "1483088315", + "1483088296", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977839", + "977839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088351", + "1483088351", + "1483088379", + "1483088351", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977870", + "977870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088412", + "1483088412", + "1483088433", + "1483088412", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977876", + "977876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088423", + "1483088423", + "1483088441", + "1483088423", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977878", + "977878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088430", + "1483088430", + "1483088446", + "1483088430", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977880", + "977880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088431", + "1483088431", + "1483088448", + "1483088431", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977898", + "977898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088470", + "1483088470", + "1483088495", + "1483088470", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977902", + "977902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088496", + "1483088496", + "1483088521", + "1483088496", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977916", + "977916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088522", + "1483088522", + "1483088550", + "1483088522", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977918", + "977918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088525", + "1483088525", + "1483088553", + "1483088525", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977924", + "977924", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088541", + "1483088541", + "1483088570", + "1483088541", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977948", + "977948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088633", + "1483088633", + "1483088657", + "1483088633", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977956", + "977956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088657", + "1483088657", + "1483088685", + "1483088657", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977964", + "977964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088676", + "1483088676", + "1483088705", + "1483088676", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977968", + "977968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088682", + "1483088682", + "1483088705", + "1483088682", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977992", + "977992", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088763", + "1483088763", + "1483088789", + "1483088763", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978012", + "978012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088820", + "1483088820", + "1483088849", + "1483088820", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978148", + "978148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089362", + "1483089362", + "1483089388", + "1483089362", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978182", + "978182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089458", + "1483089458", + "1483089478", + "1483089458", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978186", + "978186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089474", + "1483089474", + "1483089497", + "1483089474", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978188", + "978188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089474", + "1483089474", + "1483089500", + "1483089474", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978190", + "978190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089475", + "1483089475", + "1483089500", + "1483089475", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978196", + "978196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089481", + "1483089481", + "1483089503", + "1483089481", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978200", + "978200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089498", + "1483089498", + "1483089517", + "1483089498", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978220", + "978220", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089541", + "1483089541", + "1483089568", + "1483089541", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978230", + "978230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089573", + "1483089573", + "1483089595", + "1483089573", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978234", + "978234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089590", + "1483089590", + "1483089619", + "1483089590", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978240", + "978240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089606", + "1483089606", + "1483089632", + "1483089606", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978246", + "978246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089619", + "1483089619", + "1483089644", + "1483089619", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978248", + "978248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089623", + "1483089623", + "1483089647", + "1483089623", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978252", + "978252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089631", + "1483089631", + "1483089658", + "1483089631", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978280", + "978280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089709", + "1483089709", + "1483089732", + "1483089709", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978288", + "978288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089728", + "1483089728", + "1483089748", + "1483089728", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978290", + "978290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089733", + "1483089733", + "1483089752", + "1483089733", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978292", + "978292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089734", + "1483089734", + "1483089751", + "1483089734", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978315", + "978315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089780", + "1483089780", + "1483089803", + "1483089780", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978319", + "978319", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089797", + "1483089797", + "1483089816", + "1483089797", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978321", + "978321", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089798", + "1483089798", + "1483089817", + "1483089798", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978328", + "978328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089804", + "1483089804", + "1483089827", + "1483089804", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978334", + "978334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089818", + "1483089818", + "1483089838", + "1483089818", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978336", + "978336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089825", + "1483089825", + "1483089843", + "1483089825", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978338", + "978338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089828", + "1483089828", + "1483089846", + "1483089828", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978362", + "978362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089903", + "1483089903", + "1483089932", + "1483089903", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978385", + "978385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089949", + "1483089949", + "1483089978", + "1483089949", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978696", + "978696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091179", + "1483091179", + "1483091200", + "1483091179", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978700", + "978700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091182", + "1483091182", + "1483091202", + "1483091182", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978702", + "978702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091182", + "1483091182", + "1483091204", + "1483091182", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978724", + "978724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091245", + "1483091245", + "1483091266", + "1483091245", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978743", + "978743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091316", + "1483091316", + "1483091342", + "1483091316", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978772", + "978772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091374", + "1483091374", + "1483091393", + "1483091374", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978805", + "978805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091470", + "1483091470", + "1483091499", + "1483091470", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978831", + "978831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091532", + "1483091532", + "1483091554", + "1483091532", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978833", + "978833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091555", + "1483091555", + "1483091574", + "1483091555", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978899", + "978899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091754", + "1483091754", + "1483091780", + "1483091754", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978901", + "978901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091762", + "1483091762", + "1483091789", + "1483091762", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978911", + "978911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091790", + "1483091790", + "1483091810", + "1483091790", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978915", + "978915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091797", + "1483091797", + "1483091822", + "1483091797", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978917", + "978917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091798", + "1483091798", + "1483091825", + "1483091798", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978925", + "978925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091823", + "1483091823", + "1483091840", + "1483091823", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978927", + "978927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091824", + "1483091824", + "1483091844", + "1483091824", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978955", + "978955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091898", + "1483091898", + "1483091918", + "1483091898", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978995", + "978995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092030", + "1483092030", + "1483092055", + "1483092030", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979015", + "979015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092093", + "1483092093", + "1483092114", + "1483092093", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979046", + "979046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092192", + "1483092192", + "1483092215", + "1483092192", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979057", + "979057", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092216", + "1483092216", + "1483092242", + "1483092216", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979065", + "979065", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092238", + "1483092238", + "1483092265", + "1483092238", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979177", + "979177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092606", + "1483092606", + "1483092630", + "1483092606", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979181", + "979181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092631", + "1483092631", + "1483092651", + "1483092631", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979238", + "979238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092812", + "1483092812", + "1483092830", + "1483092812", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979240", + "979240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092821", + "1483092821", + "1483092838", + "1483092821", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979289", + "979289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092937", + "1483092937", + "1483092954", + "1483092937", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979297", + "979297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092944", + "1483092944", + "1483092971", + "1483092944", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979334", + "979334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093042", + "1483093042", + "1483093059", + "1483093042", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979336", + "979336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093043", + "1483093043", + "1483093066", + "1483093043", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979349", + "979349", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093060", + "1483093060", + "1483093087", + "1483093060", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979357", + "979357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093087", + "1483093087", + "1483093113", + "1483093087", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979361", + "979361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093091", + "1483093091", + "1483093120", + "1483093091", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979377", + "979377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093138", + "1483093138", + "1483093159", + "1483093138", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979381", + "979381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093142", + "1483093142", + "1483093161", + "1483093142", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979395", + "979395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093181", + "1483093181", + "1483093207", + "1483093181", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979407", + "979407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093222", + "1483093222", + "1483093245", + "1483093222", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979419", + "979419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093269", + "1483093269", + "1483093293", + "1483093269", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979423", + "979423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093292", + "1483093292", + "1483093317", + "1483093292", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979651", + "979651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094281", + "1483094281", + "1483094310", + "1483094281", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979867", + "979867", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095055", + "1483095055", + "1483095081", + "1483095055", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979900", + "979900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095186", + "1483095186", + "1483095213", + "1483095186", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979902", + "979902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095188", + "1483095188", + "1483095214", + "1483095188", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979904", + "979904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095189", + "1483095189", + "1483095213", + "1483095189", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979923", + "979923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095255", + "1483095255", + "1483095279", + "1483095255", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979933", + "979933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095280", + "1483095280", + "1483095308", + "1483095280", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979937", + "979937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095292", + "1483095292", + "1483095315", + "1483095292", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980035", + "980035", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095672", + "1483095672", + "1483095696", + "1483095672", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980037", + "980037", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095696", + "1483095696", + "1483095724", + "1483095696", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980114", + "980114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096085", + "1483096085", + "1483096110", + "1483096085", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980189", + "980189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096338", + "1483096338", + "1483096361", + "1483096338", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980287", + "980287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096807", + "1483096807", + "1483096835", + "1483096807", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980289", + "980289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096821", + "1483096821", + "1483096849", + "1483096821", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980315", + "980315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096936", + "1483096936", + "1483096965", + "1483096936", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980457", + "980457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097456", + "1483097456", + "1483097485", + "1483097456", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980471", + "980471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097492", + "1483097492", + "1483097519", + "1483097492", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980501", + "980501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097601", + "1483097601", + "1483097628", + "1483097601", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980517", + "980517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097675", + "1483097675", + "1483097699", + "1483097675", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980694", + "980694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098316", + "1483098316", + "1483098344", + "1483098316", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980696", + "980696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098320", + "1483098320", + "1483098348", + "1483098320", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980815", + "980815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098853", + "1483098853", + "1483098882", + "1483098853", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980833", + "980833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098915", + "1483098915", + "1483098940", + "1483098915", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980861", + "980861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099000", + "1483099000", + "1483099029", + "1483099000", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980921", + "980921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099219", + "1483099219", + "1483099244", + "1483099219", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980925", + "980925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099245", + "1483099245", + "1483099270", + "1483099245", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980947", + "980947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099333", + "1483099333", + "1483099359", + "1483099333", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980949", + "980949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099333", + "1483099333", + "1483099359", + "1483099333", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981336", + "981336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101215", + "1483101215", + "1483101237", + "1483101215", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981379", + "981379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101332", + "1483101332", + "1483101357", + "1483101332", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981381", + "981381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101349", + "1483101349", + "1483101371", + "1483101349", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981399", + "981399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101409", + "1483101409", + "1483101426", + "1483101409", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981477", + "981477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101662", + "1483101662", + "1483101684", + "1483101662", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981516", + "981516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101768", + "1483101768", + "1483101790", + "1483101768", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981518", + "981518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101790", + "1483101790", + "1483101813", + "1483101790", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981522", + "981522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101793", + "1483101793", + "1483101818", + "1483101793", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981540", + "981540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101848", + "1483101848", + "1483101869", + "1483101848", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981544", + "981544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101870", + "1483101870", + "1483101898", + "1483101870", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981560", + "981560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101909", + "1483101909", + "1483101931", + "1483101909", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981639", + "981639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102139", + "1483102139", + "1483102163", + "1483102139", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981741", + "981741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102489", + "1483102489", + "1483102517", + "1483102489", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981743", + "981743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102501", + "1483102501", + "1483102527", + "1483102501", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981822", + "981822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102860", + "1483102860", + "1483102884", + "1483102860", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981836", + "981836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102910", + "1483102910", + "1483102934", + "1483102910", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981838", + "981838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102914", + "1483102914", + "1483102935", + "1483102914", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981842", + "981842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102924", + "1483102924", + "1483102950", + "1483102924", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981927", + "981927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103167", + "1483103167", + "1483103186", + "1483103167", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981931", + "981931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103177", + "1483103177", + "1483103197", + "1483103177", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981933", + "981933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103177", + "1483103177", + "1483103198", + "1483103177", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981953", + "981953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103239", + "1483103239", + "1483103263", + "1483103239", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981957", + "981957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103247", + "1483103247", + "1483103270", + "1483103247", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981959", + "981959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103252", + "1483103252", + "1483103272", + "1483103252", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982017", + "982017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103418", + "1483103418", + "1483103439", + "1483103418", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982023", + "982023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103440", + "1483103440", + "1483103468", + "1483103440", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982069", + "982069", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103588", + "1483103588", + "1483103617", + "1483103588", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982427", + "982427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105243", + "1483105243", + "1483105272", + "1483105243", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982431", + "982431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105271", + "1483105271", + "1483105300", + "1483105271", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982490", + "982490", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105502", + "1483105502", + "1483105530", + "1483105502", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982542", + "982542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105734", + "1483105734", + "1483105763", + "1483105734", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982546", + "982546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105758", + "1483105758", + "1483105786", + "1483105758", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982582", + "982582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105904", + "1483105904", + "1483105933", + "1483105904", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982929", + "982929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107523", + "1483107523", + "1483107550", + "1483107523", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982931", + "982931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107524", + "1483107524", + "1483107550", + "1483107524", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982973", + "982973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107671", + "1483107671", + "1483107700", + "1483107671", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982975", + "982975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107676", + "1483107676", + "1483107704", + "1483107676", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982977", + "982977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107682", + "1483107682", + "1483107711", + "1483107682", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983007", + "983007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107794", + "1483107794", + "1483107817", + "1483107794", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983068", + "983068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107994", + "1483107994", + "1483108020", + "1483107994", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983097", + "983097", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108102", + "1483108102", + "1483108125", + "1483108102", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983111", + "983111", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108145", + "1483108145", + "1483108174", + "1483108145", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983113", + "983113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108156", + "1483108156", + "1483108178", + "1483108156", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983250", + "983250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108622", + "1483108622", + "1483108649", + "1483108622", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983291", + "983291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108792", + "1483108792", + "1483108820", + "1483108792", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983297", + "983297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108821", + "1483108821", + "1483108850", + "1483108821", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983497", + "983497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109586", + "1483109586", + "1483109613", + "1483109586", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983501", + "983501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109606", + "1483109606", + "1483109633", + "1483109606", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983505", + "983505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109611", + "1483109611", + "1483109639", + "1483109611", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983544", + "983544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109740", + "1483109740", + "1483109769", + "1483109740", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983548", + "983548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109752", + "1483109752", + "1483109777", + "1483109752", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983566", + "983566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109806", + "1483109806", + "1483109827", + "1483109806", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983570", + "983570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109819", + "1483109819", + "1483109842", + "1483109819", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983588", + "983588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109883", + "1483109883", + "1483109911", + "1483109883", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983609", + "983609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109940", + "1483109940", + "1483109964", + "1483109940", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983611", + "983611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109945", + "1483109945", + "1483109967", + "1483109945", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983641", + "983641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110079", + "1483110079", + "1483110108", + "1483110079", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983979", + "983979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111872", + "1483111872", + "1483111900", + "1483111872", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983999", + "983999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111908", + "1483111908", + "1483111936", + "1483111908", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984003", + "984003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111922", + "1483111922", + "1483111943", + "1483111922", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984005", + "984005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111930", + "1483111930", + "1483111954", + "1483111930", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984021", + "984021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111982", + "1483111982", + "1483112003", + "1483111982", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984045", + "984045", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112055", + "1483112055", + "1483112080", + "1483112055", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984061", + "984061", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112117", + "1483112117", + "1483112144", + "1483112117", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984063", + "984063", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112120", + "1483112120", + "1483112141", + "1483112120", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984087", + "984087", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112193", + "1483112193", + "1483112212", + "1483112193", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984103", + "984103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112241", + "1483112241", + "1483112263", + "1483112241", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984135", + "984135", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112354", + "1483112354", + "1483112380", + "1483112354", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984139", + "984139", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112371", + "1483112371", + "1483112395", + "1483112371", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984161", + "984161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112425", + "1483112425", + "1483112442", + "1483112425", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984163", + "984163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112433", + "1483112433", + "1483112458", + "1483112433", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984169", + "984169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112443", + "1483112443", + "1483112466", + "1483112443", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984179", + "984179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112467", + "1483112467", + "1483112496", + "1483112467", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984183", + "984183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112476", + "1483112476", + "1483112503", + "1483112476", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984243", + "984243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112666", + "1483112666", + "1483112688", + "1483112666", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984247", + "984247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112689", + "1483112689", + "1483112711", + "1483112689", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984271", + "984271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112771", + "1483112771", + "1483112797", + "1483112771", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984273", + "984273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112775", + "1483112775", + "1483112798", + "1483112775", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984298", + "984298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112875", + "1483112875", + "1483112897", + "1483112875", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984353", + "984353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113074", + "1483113074", + "1483113097", + "1483113074", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984369", + "984369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113157", + "1483113157", + "1483113177", + "1483113157", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984371", + "984371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113159", + "1483113159", + "1483113177", + "1483113159", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984393", + "984393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113229", + "1483113229", + "1483113249", + "1483113229", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984429", + "984429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113343", + "1483113343", + "1483113363", + "1483113343", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984526", + "984526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113829", + "1483113829", + "1483113850", + "1483113829", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984532", + "984532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113838", + "1483113838", + "1483113864", + "1483113838", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984546", + "984546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113884", + "1483113884", + "1483113912", + "1483113884", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984548", + "984548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113893", + "1483113893", + "1483113917", + "1483113893", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984552", + "984552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113901", + "1483113901", + "1483113930", + "1483113901", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984554", + "984554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113904", + "1483113904", + "1483113929", + "1483113904", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984570", + "984570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113969", + "1483113969", + "1483113996", + "1483113969", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984574", + "984574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113981", + "1483113981", + "1483114006", + "1483113981", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984592", + "984592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114033", + "1483114033", + "1483114062", + "1483114033", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984596", + "984596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114046", + "1483114046", + "1483114067", + "1483114046", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984636", + "984636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114169", + "1483114169", + "1483114198", + "1483114169", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984642", + "984642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114175", + "1483114175", + "1483114203", + "1483114175", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984648", + "984648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114198", + "1483114198", + "1483114220", + "1483114198", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984654", + "984654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114204", + "1483114204", + "1483114231", + "1483114204", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984674", + "984674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114278", + "1483114278", + "1483114307", + "1483114278", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984680", + "984680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114287", + "1483114287", + "1483114311", + "1483114287", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984682", + "984682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114300", + "1483114300", + "1483114322", + "1483114300", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984694", + "984694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114326", + "1483114326", + "1483114353", + "1483114326", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984708", + "984708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114361", + "1483114361", + "1483114379", + "1483114361", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984714", + "984714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114380", + "1483114380", + "1483114403", + "1483114380", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984720", + "984720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114403", + "1483114403", + "1483114426", + "1483114403", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984730", + "984730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114427", + "1483114427", + "1483114454", + "1483114427", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984734", + "984734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114441", + "1483114441", + "1483114467", + "1483114441", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984740", + "984740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114455", + "1483114455", + "1483114483", + "1483114455", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984754", + "984754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114516", + "1483114516", + "1483114540", + "1483114516", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984791", + "984791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114633", + "1483114633", + "1483114655", + "1483114633", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984817", + "984817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114729", + "1483114729", + "1483114751", + "1483114729", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984841", + "984841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114800", + "1483114800", + "1483114825", + "1483114800", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984895", + "984895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115030", + "1483115030", + "1483115053", + "1483115030", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984901", + "984901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115054", + "1483115054", + "1483115076", + "1483115054", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984917", + "984917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115112", + "1483115112", + "1483115131", + "1483115112", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984919", + "984919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115124", + "1483115124", + "1483115145", + "1483115124", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984939", + "984939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115167", + "1483115167", + "1483115189", + "1483115167", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984961", + "984961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115235", + "1483115235", + "1483115253", + "1483115235", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984977", + "984977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115295", + "1483115295", + "1483115317", + "1483115295", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985056", + "985056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115592", + "1483115592", + "1483115616", + "1483115592", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985076", + "985076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115647", + "1483115647", + "1483115665", + "1483115647", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985094", + "985094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115681", + "1483115681", + "1483115708", + "1483115681", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985120", + "985120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115770", + "1483115770", + "1483115790", + "1483115770", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985122", + "985122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115784", + "1483115784", + "1483115812", + "1483115784", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985150", + "985150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115861", + "1483115861", + "1483115879", + "1483115861", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985168", + "985168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115930", + "1483115930", + "1483115949", + "1483115930", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985192", + "985192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116010", + "1483116010", + "1483116038", + "1483116010", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985200", + "985200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116037", + "1483116037", + "1483116066", + "1483116037", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985215", + "985215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116067", + "1483116067", + "1483116087", + "1483116067", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985235", + "985235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116132", + "1483116132", + "1483116153", + "1483116132", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985237", + "985237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116136", + "1483116136", + "1483116162", + "1483116136", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985239", + "985239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116141", + "1483116141", + "1483116166", + "1483116141", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985241", + "985241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116144", + "1483116144", + "1483116167", + "1483116144", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985247", + "985247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116154", + "1483116154", + "1483116182", + "1483116154", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985249", + "985249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116161", + "1483116161", + "1483116184", + "1483116161", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985257", + "985257", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116183", + "1483116183", + "1483116204", + "1483116183", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985303", + "985303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116299", + "1483116299", + "1483116318", + "1483116299", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985305", + "985305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116310", + "1483116310", + "1483116333", + "1483116310", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "167758", + "167758", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056162", + "1483056162", + "1483056186", + "1483056162", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "167879", + "167879", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056885", + "1483056885", + "1483056906", + "1483056885", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168064", + "168064", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058094", + "1483058094", + "1483058110", + "1483058094", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168090", + "168090", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058262", + "1483058262", + "1483058281", + "1483058262", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168845", + "168845", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064147", + "1483064147", + "1483064162", + "1483064147", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168926", + "168926", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064610", + "1483064610", + "1483064633", + "1483064610", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168941", + "168941", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064686", + "1483064686", + "1483064705", + "1483064686", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168976", + "168976", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064890", + "1483064890", + "1483064911", + "1483064890", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169025", + "169025", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065153", + "1483065153", + "1483065174", + "1483065153", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169092", + "169092", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065655", + "1483065655", + "1483065677", + "1483065655", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169109", + "169109", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065746", + "1483065746", + "1483065765", + "1483065746", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169298", + "169298", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067327", + "1483067327", + "1483067354", + "1483067327", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169344", + "169344", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067698", + "1483067698", + "1483067726", + "1483067698", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169482", + "169482", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068425", + "1483068425", + "1483068448", + "1483068425", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169584", + "169584", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069058", + "1483069058", + "1483069077", + "1483069058", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169732", + "169732", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069959", + "1483069959", + "1483069982", + "1483069959", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169823", + "169823", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070337", + "1483070337", + "1483070359", + "1483070337", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169917", + "169917", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070822", + "1483070822", + "1483070846", + "1483070822", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170003", + "170003", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071184", + "1483071184", + "1483071200", + "1483071184", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170015", + "170015", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071218", + "1483071218", + "1483071244", + "1483071218", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170080", + "170080", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071605", + "1483071605", + "1483071631", + "1483071605", + "1", + "8", + "0", + "-1", + "26", + "0", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170208", + "170208", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072517", + "1483072517", + "1483072536", + "1483072517", + "1", + "8", + "0", + "-1", + "19", + "0", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170310", + "170310", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073138", + "1483073138", + "1483073154", + "1483073138", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170516", + "170516", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074445", + "1483074445", + "1483074459", + "1483074445", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170522", + "170522", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074467", + "1483074467", + "1483074485", + "1483074467", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170806", + "170806", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076639", + "1483076639", + "1483076654", + "1483076639", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170831", + "170831", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076803", + "1483076803", + "1483076823", + "1483076803", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170999", + "170999", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077948", + "1483077948", + "1483077972", + "1483077948", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171067", + "171067", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078333", + "1483078333", + "1483078353", + "1483078333", + "1", + "8", + "0", + "-1", + "20", + "0", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171095", + "171095", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078458", + "1483078458", + "1483078483", + "1483078458", + "1", + "8", + "0", + "-1", + "25", + "0", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171493", + "171493", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081270", + "1483081270", + "1483081297", + "1483081270", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171531", + "171531", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081554", + "1483081554", + "1483081578", + "1483081554", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171813", + "171813", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083447", + "1483083447", + "1483083462", + "1483083447", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171825", + "171825", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083484", + "1483083484", + "1483083502", + "1483083484", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171887", + "171887", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083740", + "1483083740", + "1483083753", + "1483083740", + "1", + "8", + "0", + "-1", + "13", + "0", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171973", + "171973", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084106", + "1483084106", + "1483084120", + "1483084106", + "1", + "8", + "0", + "-1", + "14", + "0", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172120", + "172120", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085039", + "1483085039", + "1483085056", + "1483085039", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172198", + "172198", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085421", + "1483085421", + "1483085443", + "1483085421", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172354", + "172354", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086263", + "1483086263", + "1483086280", + "1483086263", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172451", + "172451", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086662", + "1483086662", + "1483086678", + "1483086662", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172517", + "172517", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086974", + "1483086974", + "1483086997", + "1483086974", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172525", + "172525", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087009", + "1483087009", + "1483087031", + "1483087009", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172638", + "172638", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087832", + "1483087832", + "1483087847", + "1483087832", + "1", + "8", + "0", + "-1", + "15", + "0", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172701", + "172701", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088093", + "1483088093", + "1483088114", + "1483088093", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172993", + "172993", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089804", + "1483089804", + "1483089820", + "1483089804", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173119", + "173119", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090700", + "1483090700", + "1483090728", + "1483090700", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173175", + "173175", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091087", + "1483091087", + "1483091116", + "1483091087", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173235", + "173235", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091394", + "1483091394", + "1483091410", + "1483091394", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173467", + "173467", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092806", + "1483092806", + "1483092835", + "1483092806", + "1", + "8", + "0", + "-1", + "29", + "0", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173485", + "173485", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092882", + "1483092882", + "1483092906", + "1483092882", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173710", + "173710", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094470", + "1483094470", + "1483094492", + "1483094470", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173818", + "173818", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095190", + "1483095190", + "1483095211", + "1483095190", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173838", + "173838", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095309", + "1483095309", + "1483095336", + "1483095309", + "1", + "8", + "0", + "-1", + "27", + "0", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173950", + "173950", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096229", + "1483096229", + "1483096253", + "1483096229", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174048", + "174048", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097054", + "1483097054", + "1483097082", + "1483097054", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174270", + "174270", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098731", + "1483098731", + "1483098753", + "1483098731", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174358", + "174358", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099360", + "1483099360", + "1483099377", + "1483099360", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174556", + "174556", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101220", + "1483101220", + "1483101244", + "1483101220", + "1", + "8", + "0", + "-1", + "24", + "0", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174634", + "174634", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101717", + "1483101717", + "1483101739", + "1483101717", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174672", + "174672", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101932", + "1483101932", + "1483101948", + "1483101932", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174922", + "174922", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103543", + "1483103543", + "1483103571", + "1483103543", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175109", + "175109", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105222", + "1483105222", + "1483105250", + "1483105222", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175438", + "175438", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107965", + "1483107965", + "1483107993", + "1483107965", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175490", + "175490", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108280", + "1483108280", + "1483108297", + "1483108280", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175553", + "175553", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108723", + "1483108723", + "1483108746", + "1483108723", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175588", + "175588", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108974", + "1483108974", + "1483108996", + "1483108974", + "1", + "8", + "0", + "-1", + "22", + "0", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175682", + "175682", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109665", + "1483109665", + "1483109682", + "1483109665", + "1", + "8", + "0", + "-1", + "17", + "0", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175725", + "175725", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109940", + "1483109940", + "1483109956", + "1483109940", + "1", + "8", + "0", + "-1", + "16", + "0", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176322", + "176322", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114577", + "1483114577", + "1483114598", + "1483114577", + "1", + "8", + "0", + "-1", + "21", + "0", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176594", + "176594", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116319", + "1483116319", + "1483116337", + "1483116319", + "1", + "8", + "0", + "-1", + "18", + "0", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "1010786", + "1010786", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483142202", + "1483142202", + "1483142230", + "1483142202", + "1", + "8", + "0", + "-1", + "28", + "0", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006445", + "1006445", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483086222", + "1483086222", + "1483086245", + "1483086222", + "1", + "8", + "0", + "-1", + "23", + "0", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "2277104", + "2277104", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070210", + "1483070210", + "1483070216", + "1483070210", + "1", + "12", + "0", + "-1", + "6", + "0", + "72", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278843", + "2278843", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086755", + "1483086755", + "1483086765", + "1483086755", + "1", + "12", + "0", + "-1", + "10", + "0", + "120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279450", + "2279450", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092193", + "1483092193", + "1483092202", + "1483092193", + "1", + "12", + "0", + "-1", + "9", + "0", + "108", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282010", + "2282010", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116063", + "1483116063", + "1483116072", + "1483116063", + "1", + "12", + "0", + "-1", + "9", + "0", + "108", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282560", + "2282560", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120252", + "1483120252", + "1483120262", + "1483120252", + "1", + "12", + "0", + "-1", + "10", + "0", + "120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283953", + "2283953", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133222", + "1483133222", + "1483133234", + "1483133222", + "1", + "12", + "0", + "-1", + "12", + "0", + "144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284714", + "2284714", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140468", + "1483140468", + "1483140480", + "1483140468", + "1", + "12", + "0", + "-1", + "12", + "0", + "144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6108541", + "6108541", + "Robertson", + "UTC", + "", + "Warbler, Golden-winged", + "Screwdriver", + "green-grape", + "1483063853", + "1483063853", + "1483063881", + "1483063853", + "2", + "24", + "0", + "-1", + "28", + "0", + "672", + "0", + "0:0", + "COMPLETED", + "24", + "2147486448Mn", + "3600", + "potbrood", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Economics" + ], + [ + "6110375", + "6110375", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118393", + "1483118396", + "1483118402", + "1483118393", + "1", + "1", + "0", + "-1", + "6", + "3", + "6", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6110382", + "6110382", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118406", + "1483118412", + "1483118421", + "1483118406", + "1", + "1", + "0", + "-1", + "9", + "6", + "9", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6110454", + "6110454", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118629", + "1483118632", + "1483118636", + "1483118629", + "1", + "1", + "0", + "-1", + "4", + "3", + "4", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6110457", + "6110457", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118638", + "1483118640", + "1483118645", + "1483118638", + "1", + "1", + "0", + "-1", + "5", + "2", + "5", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6112281", + "6112281", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483134653", + "1483134669", + "1483134684", + "1483134653", + "1", + "1", + "0", + "-1", + "15", + "16", + "15", + "0", + "0:0", + "COMPLETED", + "1", + "2147531648Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "2284674", + "2284674", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140322", + "1483140323", + "1483140335", + "1483140322", + "1", + "1", + "0", + "-1", + "12", + "1", + "12", + "0", + "1:0", + "FAILED", + "1", + "2147486648Mn", + "259200", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6109028", + "6109028", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "green-grape", + "1483088282", + "1483088283", + "1483088286", + "1483088282", + "1", + "1", + "0", + "-1", + "3", + "1", + "3", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110628", + "6110628", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "green-grape", + "1483119197", + "1483119198", + "1483119203", + "1483119197", + "1", + "1", + "0", + "-1", + "5", + "1", + "5", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "968147", + "968147", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055976", + "1483055977", + "1483056005", + "1483055976", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968151", + "968151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055998", + "1483055999", + "1483056024", + "1483055998", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968195", + "968195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056138", + "1483056139", + "1483056161", + "1483056138", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968216", + "968216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056207", + "1483056208", + "1483056234", + "1483056207", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968224", + "968224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056227", + "1483056228", + "1483056254", + "1483056227", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968228", + "968228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056233", + "1483056235", + "1483056261", + "1483056233", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968234", + "968234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056256", + "1483056258", + "1483056287", + "1483056256", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968244", + "968244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056286", + "1483056288", + "1483056312", + "1483056286", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968284", + "968284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056432", + "1483056434", + "1483056461", + "1483056432", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968286", + "968286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056435", + "1483056437", + "1483056458", + "1483056435", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968290", + "968290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056441", + "1483056444", + "1483056467", + "1483056441", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968316", + "968316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056533", + "1483056534", + "1483056556", + "1483056533", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968334", + "968334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056590", + "1483056591", + "1483056615", + "1483056590", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968336", + "968336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056591", + "1483056592", + "1483056619", + "1483056591", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968354", + "968354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056655", + "1483056657", + "1483056681", + "1483056655", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968356", + "968356", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056657", + "1483056658", + "1483056684", + "1483056657", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968366", + "968366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056684", + "1483056686", + "1483056709", + "1483056684", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968368", + "968368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056693", + "1483056694", + "1483056723", + "1483056693", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968370", + "968370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056704", + "1483056705", + "1483056733", + "1483056704", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968375", + "968375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056707", + "1483056708", + "1483056735", + "1483056707", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968377", + "968377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056709", + "1483056711", + "1483056732", + "1483056709", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968397", + "968397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056776", + "1483056777", + "1483056801", + "1483056776", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968399", + "968399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056779", + "1483056780", + "1483056803", + "1483056779", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968405", + "968405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056803", + "1483056805", + "1483056826", + "1483056803", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968413", + "968413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056827", + "1483056830", + "1483056855", + "1483056827", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968415", + "968415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056833", + "1483056835", + "1483056863", + "1483056833", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968419", + "968419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056850", + "1483056851", + "1483056873", + "1483056850", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968423", + "968423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056856", + "1483056858", + "1483056877", + "1483056856", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968427", + "968427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056864", + "1483056866", + "1483056884", + "1483056864", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968450", + "968450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056902", + "1483056903", + "1483056926", + "1483056902", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968461", + "968461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056926", + "1483056927", + "1483056956", + "1483056926", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968510", + "968510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057118", + "1483057119", + "1483057143", + "1483057118", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968512", + "968512", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057121", + "1483057122", + "1483057150", + "1483057121", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968514", + "968514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057127", + "1483057128", + "1483057156", + "1483057127", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968516", + "968516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057138", + "1483057139", + "1483057165", + "1483057138", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968518", + "968518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057142", + "1483057143", + "1483057170", + "1483057142", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968558", + "968558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057286", + "1483057287", + "1483057313", + "1483057286", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968582", + "968582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057346", + "1483057347", + "1483057376", + "1483057346", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968590", + "968590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057374", + "1483057375", + "1483057401", + "1483057374", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968606", + "968606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057416", + "1483057417", + "1483057443", + "1483057416", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968608", + "968608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057434", + "1483057435", + "1483057462", + "1483057434", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968678", + "968678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057730", + "1483057731", + "1483057755", + "1483057730", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968686", + "968686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057758", + "1483057759", + "1483057787", + "1483057758", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968692", + "968692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057776", + "1483057777", + "1483057804", + "1483057776", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968696", + "968696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057794", + "1483057795", + "1483057821", + "1483057794", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968698", + "968698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057799", + "1483057800", + "1483057823", + "1483057799", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968740", + "968740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057915", + "1483057918", + "1483057940", + "1483057915", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968742", + "968742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057919", + "1483057921", + "1483057944", + "1483057919", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968772", + "968772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057995", + "1483057997", + "1483058019", + "1483057995", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968776", + "968776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058019", + "1483058020", + "1483058043", + "1483058019", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968780", + "968780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058024", + "1483058026", + "1483058050", + "1483058024", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968782", + "968782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058029", + "1483058030", + "1483058053", + "1483058029", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968792", + "968792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058051", + "1483058052", + "1483058080", + "1483058051", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968794", + "968794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058054", + "1483058055", + "1483058084", + "1483058054", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968817", + "968817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058117", + "1483058119", + "1483058147", + "1483058117", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968833", + "968833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058170", + "1483058171", + "1483058197", + "1483058170", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968860", + "968860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058262", + "1483058265", + "1483058288", + "1483058262", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968872", + "968872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058308", + "1483058309", + "1483058337", + "1483058308", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968878", + "968878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058334", + "1483058335", + "1483058357", + "1483058334", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968882", + "968882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058336", + "1483058337", + "1483058359", + "1483058336", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968912", + "968912", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058450", + "1483058451", + "1483058479", + "1483058450", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968924", + "968924", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058489", + "1483058490", + "1483058516", + "1483058489", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968926", + "968926", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058493", + "1483058494", + "1483058517", + "1483058493", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969022", + "969022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058893", + "1483058894", + "1483058922", + "1483058893", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969243", + "969243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060032", + "1483060033", + "1483060059", + "1483060032", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969247", + "969247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060046", + "1483060048", + "1483060077", + "1483060046", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969275", + "969275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060130", + "1483060131", + "1483060154", + "1483060130", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969293", + "969293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060183", + "1483060184", + "1483060208", + "1483060183", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969337", + "969337", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060365", + "1483060368", + "1483060396", + "1483060365", + "1", + "8", + "0", + "-1", + "28", + "3", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969339", + "969339", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060368", + "1483060369", + "1483060392", + "1483060368", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969384", + "969384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060528", + "1483060529", + "1483060553", + "1483060528", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969410", + "969410", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060638", + "1483060639", + "1483060664", + "1483060638", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969417", + "969417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060658", + "1483060659", + "1483060687", + "1483060658", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969423", + "969423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060669", + "1483060670", + "1483060698", + "1483060669", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969451", + "969451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060736", + "1483060737", + "1483060763", + "1483060736", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969457", + "969457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060756", + "1483060757", + "1483060784", + "1483060756", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969479", + "969479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060829", + "1483060831", + "1483060859", + "1483060829", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969501", + "969501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060895", + "1483060896", + "1483060925", + "1483060895", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969517", + "969517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060950", + "1483060951", + "1483060978", + "1483060950", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969521", + "969521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060955", + "1483060957", + "1483060981", + "1483060955", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969549", + "969549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061059", + "1483061060", + "1483061084", + "1483061059", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969609", + "969609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061248", + "1483061249", + "1483061276", + "1483061248", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969640", + "969640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061359", + "1483061360", + "1483061384", + "1483061359", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969656", + "969656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061417", + "1483061418", + "1483061447", + "1483061417", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969662", + "969662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061438", + "1483061439", + "1483061463", + "1483061438", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969729", + "969729", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061658", + "1483061660", + "1483061686", + "1483061658", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969731", + "969731", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061682", + "1483061683", + "1483061710", + "1483061682", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969737", + "969737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061697", + "1483061698", + "1483061726", + "1483061697", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969743", + "969743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061726", + "1483061727", + "1483061755", + "1483061726", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969747", + "969747", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061731", + "1483061732", + "1483061760", + "1483061731", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969749", + "969749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061744", + "1483061745", + "1483061767", + "1483061744", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969773", + "969773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061823", + "1483061824", + "1483061850", + "1483061823", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969777", + "969777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061833", + "1483061834", + "1483061856", + "1483061833", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969783", + "969783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061851", + "1483061852", + "1483061879", + "1483061851", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969793", + "969793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061889", + "1483061891", + "1483061920", + "1483061889", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969795", + "969795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061891", + "1483061894", + "1483061918", + "1483061891", + "1", + "8", + "0", + "-1", + "24", + "3", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969814", + "969814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061955", + "1483061957", + "1483061986", + "1483061955", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969816", + "969816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061961", + "1483061962", + "1483061986", + "1483061961", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969820", + "969820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061981", + "1483061982", + "1483062007", + "1483061981", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969830", + "969830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062007", + "1483062008", + "1483062034", + "1483062007", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969836", + "969836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062021", + "1483062022", + "1483062048", + "1483062021", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969840", + "969840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062035", + "1483062036", + "1483062056", + "1483062035", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969842", + "969842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062037", + "1483062039", + "1483062060", + "1483062037", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969868", + "969868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062120", + "1483062121", + "1483062146", + "1483062120", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969876", + "969876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062146", + "1483062147", + "1483062176", + "1483062146", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969884", + "969884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062173", + "1483062175", + "1483062198", + "1483062173", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969892", + "969892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062198", + "1483062199", + "1483062226", + "1483062198", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969914", + "969914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062265", + "1483062266", + "1483062290", + "1483062265", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969926", + "969926", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062291", + "1483062292", + "1483062320", + "1483062291", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969930", + "969930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062299", + "1483062300", + "1483062327", + "1483062299", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969936", + "969936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062321", + "1483062324", + "1483062353", + "1483062321", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969982", + "969982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062476", + "1483062478", + "1483062506", + "1483062476", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970068", + "970068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062814", + "1483062815", + "1483062843", + "1483062814", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970283", + "970283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063952", + "1483063953", + "1483063972", + "1483063952", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970287", + "970287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063969", + "1483063970", + "1483063997", + "1483063969", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970295", + "970295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063998", + "1483063999", + "1483064021", + "1483063998", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970299", + "970299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064004", + "1483064006", + "1483064024", + "1483064004", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970301", + "970301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064009", + "1483064010", + "1483064031", + "1483064009", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970303", + "970303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064015", + "1483064016", + "1483064039", + "1483064015", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970329", + "970329", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064093", + "1483064095", + "1483064114", + "1483064093", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970339", + "970339", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064122", + "1483064124", + "1483064151", + "1483064122", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970348", + "970348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064151", + "1483064152", + "1483064172", + "1483064151", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970372", + "970372", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064234", + "1483064235", + "1483064263", + "1483064234", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970390", + "970390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064298", + "1483064300", + "1483064320", + "1483064298", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970392", + "970392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064306", + "1483064307", + "1483064327", + "1483064306", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970394", + "970394", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064309", + "1483064310", + "1483064338", + "1483064309", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970434", + "970434", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064438", + "1483064439", + "1483064460", + "1483064438", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970438", + "970438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064441", + "1483064442", + "1483064464", + "1483064441", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970440", + "970440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064453", + "1483064455", + "1483064477", + "1483064453", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970456", + "970456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064498", + "1483064499", + "1483064528", + "1483064498", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970466", + "970466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064511", + "1483064512", + "1483064530", + "1483064511", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970470", + "970470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064531", + "1483064532", + "1483064558", + "1483064531", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970488", + "970488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064581", + "1483064582", + "1483064609", + "1483064581", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970507", + "970507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064627", + "1483064630", + "1483064656", + "1483064627", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970509", + "970509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064636", + "1483064637", + "1483064655", + "1483064636", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970511", + "970511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064641", + "1483064642", + "1483064657", + "1483064641", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970513", + "970513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064644", + "1483064645", + "1483064666", + "1483064644", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970525", + "970525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064684", + "1483064685", + "1483064702", + "1483064684", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970527", + "970527", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064686", + "1483064688", + "1483064709", + "1483064686", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970530", + "970530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064686", + "1483064688", + "1483064706", + "1483064686", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970572", + "970572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064822", + "1483064823", + "1483064844", + "1483064822", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970574", + "970574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064825", + "1483064826", + "1483064853", + "1483064825", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970601", + "970601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064907", + "1483064908", + "1483064930", + "1483064907", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970615", + "970615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064941", + "1483064943", + "1483064964", + "1483064941", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970621", + "970621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064965", + "1483064966", + "1483064988", + "1483064965", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970648", + "970648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065062", + "1483065063", + "1483065092", + "1483065062", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970658", + "970658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065079", + "1483065080", + "1483065102", + "1483065079", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970660", + "970660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065080", + "1483065083", + "1483065106", + "1483065080", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970665", + "970665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065083", + "1483065086", + "1483065107", + "1483065083", + "1", + "8", + "0", + "-1", + "21", + "3", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970702", + "970702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065217", + "1483065218", + "1483065246", + "1483065217", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970708", + "970708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065227", + "1483065229", + "1483065252", + "1483065227", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970772", + "970772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065517", + "1483065518", + "1483065545", + "1483065517", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970796", + "970796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065619", + "1483065620", + "1483065639", + "1483065619", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970825", + "970825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065694", + "1483065695", + "1483065715", + "1483065694", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970845", + "970845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065745", + "1483065746", + "1483065768", + "1483065745", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970864", + "970864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065795", + "1483065796", + "1483065823", + "1483065795", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970866", + "970866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065802", + "1483065803", + "1483065831", + "1483065802", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970868", + "970868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065805", + "1483065806", + "1483065834", + "1483065805", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970870", + "970870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065810", + "1483065811", + "1483065834", + "1483065810", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970872", + "970872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065818", + "1483065819", + "1483065835", + "1483065818", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970882", + "970882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065835", + "1483065838", + "1483065867", + "1483065835", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970888", + "970888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065866", + "1483065867", + "1483065887", + "1483065866", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970890", + "970890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065868", + "1483065870", + "1483065895", + "1483065868", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970906", + "970906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065917", + "1483065918", + "1483065947", + "1483065917", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970914", + "970914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065943", + "1483065945", + "1483065969", + "1483065943", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970916", + "970916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065946", + "1483065947", + "1483065972", + "1483065946", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970918", + "970918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065947", + "1483065948", + "1483065966", + "1483065947", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970926", + "970926", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065972", + "1483065973", + "1483066001", + "1483065972", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970930", + "970930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065983", + "1483065984", + "1483066003", + "1483065983", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970932", + "970932", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066001", + "1483066002", + "1483066020", + "1483066001", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970934", + "970934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066004", + "1483066005", + "1483066022", + "1483066004", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970938", + "970938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066011", + "1483066012", + "1483066034", + "1483066011", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970960", + "970960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066069", + "1483066070", + "1483066095", + "1483066069", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970964", + "970964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066081", + "1483066083", + "1483066101", + "1483066081", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970975", + "970975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066101", + "1483066102", + "1483066127", + "1483066101", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970977", + "970977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066108", + "1483066109", + "1483066128", + "1483066108", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970979", + "970979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066110", + "1483066112", + "1483066129", + "1483066110", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970981", + "970981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066127", + "1483066128", + "1483066153", + "1483066127", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970983", + "970983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066129", + "1483066130", + "1483066148", + "1483066129", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970996", + "970996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066149", + "1483066150", + "1483066179", + "1483066149", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971020", + "971020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066226", + "1483066227", + "1483066255", + "1483066226", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971022", + "971022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066230", + "1483066231", + "1483066256", + "1483066230", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971054", + "971054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066335", + "1483066336", + "1483066363", + "1483066335", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971074", + "971074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066406", + "1483066407", + "1483066434", + "1483066406", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971100", + "971100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066496", + "1483066497", + "1483066522", + "1483066496", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971120", + "971120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066578", + "1483066579", + "1483066607", + "1483066578", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971316", + "971316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067865", + "1483067866", + "1483067884", + "1483067865", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971318", + "971318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067877", + "1483067878", + "1483067894", + "1483067877", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971320", + "971320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067884", + "1483067885", + "1483067908", + "1483067884", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971322", + "971322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067885", + "1483067888", + "1483067913", + "1483067885", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971324", + "971324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067895", + "1483067896", + "1483067923", + "1483067895", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971326", + "971326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067897", + "1483067898", + "1483067920", + "1483067897", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971334", + "971334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067909", + "1483067910", + "1483067928", + "1483067909", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971336", + "971336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067913", + "1483067914", + "1483067943", + "1483067913", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971355", + "971355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067957", + "1483067958", + "1483067983", + "1483067957", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971357", + "971357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067964", + "1483067965", + "1483067990", + "1483067964", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971363", + "971363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067984", + "1483067985", + "1483068014", + "1483067984", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971365", + "971365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067986", + "1483067987", + "1483068015", + "1483067986", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971375", + "971375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068012", + "1483068013", + "1483068040", + "1483068012", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971377", + "971377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068015", + "1483068016", + "1483068034", + "1483068015", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971381", + "971381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068018", + "1483068019", + "1483068038", + "1483068018", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971399", + "971399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068071", + "1483068072", + "1483068098", + "1483068071", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971403", + "971403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068078", + "1483068079", + "1483068096", + "1483068078", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971405", + "971405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068079", + "1483068082", + "1483068108", + "1483068079", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971411", + "971411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068098", + "1483068099", + "1483068128", + "1483068098", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971425", + "971425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068132", + "1483068133", + "1483068162", + "1483068132", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971442", + "971442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068164", + "1483068165", + "1483068187", + "1483068164", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971456", + "971456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068199", + "1483068202", + "1483068222", + "1483068199", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971458", + "971458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068206", + "1483068207", + "1483068227", + "1483068206", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971462", + "971462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068222", + "1483068223", + "1483068243", + "1483068222", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971478", + "971478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068274", + "1483068275", + "1483068291", + "1483068274", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971480", + "971480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068281", + "1483068282", + "1483068308", + "1483068281", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971484", + "971484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068290", + "1483068291", + "1483068317", + "1483068290", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971486", + "971486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068292", + "1483068293", + "1483068317", + "1483068292", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971500", + "971500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068335", + "1483068336", + "1483068353", + "1483068335", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971502", + "971502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068336", + "1483068338", + "1483068359", + "1483068336", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971516", + "971516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068378", + "1483068379", + "1483068395", + "1483068378", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971518", + "971518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068381", + "1483068382", + "1483068401", + "1483068381", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971526", + "971526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068398", + "1483068399", + "1483068424", + "1483068398", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971530", + "971530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068406", + "1483068407", + "1483068423", + "1483068406", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971532", + "971532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068410", + "1483068411", + "1483068424", + "1483068410", + "1", + "8", + "0", + "-1", + "13", + "1", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971534", + "971534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068415", + "1483068416", + "1483068443", + "1483068415", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971536", + "971536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068422", + "1483068423", + "1483068437", + "1483068422", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971538", + "971538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068423", + "1483068424", + "1483068446", + "1483068423", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971540", + "971540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068424", + "1483068426", + "1483068455", + "1483068424", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971569", + "971569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068495", + "1483068497", + "1483068518", + "1483068495", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971581", + "971581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068519", + "1483068520", + "1483068548", + "1483068519", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971587", + "971587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068548", + "1483068549", + "1483068578", + "1483068548", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971595", + "971595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068578", + "1483068579", + "1483068601", + "1483068578", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971599", + "971599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068586", + "1483068587", + "1483068614", + "1483068586", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971613", + "971613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068644", + "1483068645", + "1483068674", + "1483068644", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971616", + "971616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068645", + "1483068648", + "1483068673", + "1483068645", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971624", + "971624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068674", + "1483068675", + "1483068694", + "1483068674", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971626", + "971626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068675", + "1483068678", + "1483068698", + "1483068675", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971632", + "971632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068699", + "1483068701", + "1483068729", + "1483068699", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971650", + "971650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068752", + "1483068753", + "1483068778", + "1483068752", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971652", + "971652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068758", + "1483068759", + "1483068780", + "1483068758", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971700", + "971700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068931", + "1483068932", + "1483068959", + "1483068931", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971708", + "971708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068960", + "1483068961", + "1483068978", + "1483068960", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971710", + "971710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068974", + "1483068975", + "1483068999", + "1483068974", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971724", + "971724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069021", + "1483069022", + "1483069040", + "1483069021", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971726", + "971726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069024", + "1483069025", + "1483069041", + "1483069024", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971730", + "971730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069040", + "1483069041", + "1483069057", + "1483069040", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971734", + "971734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069041", + "1483069042", + "1483069071", + "1483069041", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971745", + "971745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069071", + "1483069072", + "1483069086", + "1483069071", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971751", + "971751", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069086", + "1483069089", + "1483069116", + "1483069086", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971755", + "971755", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069106", + "1483069107", + "1483069130", + "1483069106", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971771", + "971771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069146", + "1483069147", + "1483069174", + "1483069146", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971773", + "971773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069149", + "1483069150", + "1483069176", + "1483069149", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971779", + "971779", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069165", + "1483069166", + "1483069191", + "1483069165", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971855", + "971855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069567", + "1483069568", + "1483069588", + "1483069567", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971857", + "971857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069575", + "1483069576", + "1483069595", + "1483069575", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971861", + "971861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069590", + "1483069592", + "1483069613", + "1483069590", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971869", + "971869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069608", + "1483069609", + "1483069632", + "1483069608", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971903", + "971903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069688", + "1483069690", + "1483069710", + "1483069688", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971905", + "971905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069690", + "1483069693", + "1483069713", + "1483069690", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971915", + "971915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069715", + "1483069717", + "1483069738", + "1483069715", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971923", + "971923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069736", + "1483069737", + "1483069757", + "1483069736", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971925", + "971925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069738", + "1483069739", + "1483069757", + "1483069738", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971927", + "971927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069739", + "1483069740", + "1483069759", + "1483069739", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971929", + "971929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069741", + "1483069743", + "1483069760", + "1483069741", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971931", + "971931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069750", + "1483069751", + "1483069770", + "1483069750", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971947", + "971947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069786", + "1483069787", + "1483069806", + "1483069786", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971949", + "971949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069787", + "1483069789", + "1483069808", + "1483069787", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971951", + "971951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069790", + "1483069793", + "1483069812", + "1483069790", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971955", + "971955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069798", + "1483069799", + "1483069816", + "1483069798", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971957", + "971957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069806", + "1483069807", + "1483069823", + "1483069806", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971959", + "971959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069807", + "1483069809", + "1483069829", + "1483069807", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971961", + "971961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069809", + "1483069810", + "1483069832", + "1483069809", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971963", + "971963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069812", + "1483069813", + "1483069836", + "1483069812", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971969", + "971969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069823", + "1483069824", + "1483069843", + "1483069823", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971971", + "971971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069825", + "1483069827", + "1483069849", + "1483069825", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971975", + "971975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069832", + "1483069833", + "1483069850", + "1483069832", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971977", + "971977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069837", + "1483069838", + "1483069855", + "1483069837", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971983", + "971983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069850", + "1483069851", + "1483069880", + "1483069850", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971995", + "971995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069880", + "1483069882", + "1483069901", + "1483069880", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972003", + "972003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069904", + "1483069905", + "1483069921", + "1483069904", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972005", + "972005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069910", + "1483069911", + "1483069932", + "1483069910", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972007", + "972007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069915", + "1483069916", + "1483069937", + "1483069915", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972009", + "972009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069918", + "1483069919", + "1483069940", + "1483069918", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972019", + "972019", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069937", + "1483069938", + "1483069959", + "1483069937", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972021", + "972021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069940", + "1483069941", + "1483069958", + "1483069940", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972029", + "972029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069952", + "1483069953", + "1483069980", + "1483069952", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972038", + "972038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069963", + "1483069965", + "1483069984", + "1483069963", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972042", + "972042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069981", + "1483069984", + "1483070002", + "1483069981", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972046", + "972046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069985", + "1483069987", + "1483070002", + "1483069985", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972050", + "972050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070002", + "1483070003", + "1483070021", + "1483070002", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972054", + "972054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070003", + "1483070005", + "1483070024", + "1483070003", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972056", + "972056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070005", + "1483070006", + "1483070026", + "1483070005", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972070", + "972070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070024", + "1483070025", + "1483070053", + "1483070024", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972072", + "972072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070025", + "1483070026", + "1483070052", + "1483070025", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972074", + "972074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070027", + "1483070029", + "1483070057", + "1483070027", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972088", + "972088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070058", + "1483070060", + "1483070081", + "1483070058", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972090", + "972090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070070", + "1483070071", + "1483070094", + "1483070070", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972094", + "972094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070075", + "1483070077", + "1483070089", + "1483070075", + "1", + "8", + "0", + "-1", + "12", + "2", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972096", + "972096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070082", + "1483070083", + "1483070108", + "1483070082", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972102", + "972102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070090", + "1483070091", + "1483070113", + "1483070090", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972104", + "972104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070095", + "1483070096", + "1483070118", + "1483070095", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972112", + "972112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070113", + "1483070115", + "1483070128", + "1483070113", + "1", + "8", + "0", + "-1", + "13", + "2", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972116", + "972116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070121", + "1483070122", + "1483070147", + "1483070121", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972118", + "972118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070123", + "1483070125", + "1483070152", + "1483070123", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972120", + "972120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070126", + "1483070128", + "1483070155", + "1483070126", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972124", + "972124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070129", + "1483070131", + "1483070159", + "1483070129", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972126", + "972126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070133", + "1483070134", + "1483070162", + "1483070133", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972130", + "972130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070147", + "1483070148", + "1483070169", + "1483070147", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972134", + "972134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070155", + "1483070156", + "1483070179", + "1483070155", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972140", + "972140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070169", + "1483070170", + "1483070188", + "1483070169", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972142", + "972142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070175", + "1483070176", + "1483070200", + "1483070175", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972144", + "972144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070179", + "1483070180", + "1483070201", + "1483070179", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972156", + "972156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070202", + "1483070204", + "1483070227", + "1483070202", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972158", + "972158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070209", + "1483070210", + "1483070230", + "1483070209", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972164", + "972164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070223", + "1483070225", + "1483070254", + "1483070223", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972180", + "972180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070261", + "1483070263", + "1483070285", + "1483070261", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972188", + "972188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070284", + "1483070285", + "1483070307", + "1483070284", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972190", + "972190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070286", + "1483070288", + "1483070310", + "1483070286", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972198", + "972198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070301", + "1483070302", + "1483070321", + "1483070301", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972200", + "972200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070308", + "1483070309", + "1483070327", + "1483070308", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972202", + "972202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070311", + "1483070312", + "1483070337", + "1483070311", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972206", + "972206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070322", + "1483070323", + "1483070341", + "1483070322", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972210", + "972210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070337", + "1483070338", + "1483070366", + "1483070337", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972223", + "972223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070370", + "1483070371", + "1483070392", + "1483070370", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972225", + "972225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070374", + "1483070375", + "1483070398", + "1483070374", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972227", + "972227", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070377", + "1483070378", + "1483070405", + "1483070377", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972231", + "972231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070391", + "1483070392", + "1483070408", + "1483070391", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972233", + "972233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070392", + "1483070393", + "1483070417", + "1483070392", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972237", + "972237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070396", + "1483070398", + "1483070421", + "1483070396", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972245", + "972245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070408", + "1483070409", + "1483070431", + "1483070408", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972247", + "972247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070409", + "1483070412", + "1483070431", + "1483070409", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972249", + "972249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070418", + "1483070419", + "1483070437", + "1483070418", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972267", + "972267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070465", + "1483070466", + "1483070486", + "1483070465", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972275", + "972275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070486", + "1483070487", + "1483070505", + "1483070486", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972279", + "972279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070493", + "1483070495", + "1483070518", + "1483070493", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972285", + "972285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070507", + "1483070509", + "1483070536", + "1483070507", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972289", + "972289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070515", + "1483070516", + "1483070540", + "1483070515", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972293", + "972293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070523", + "1483070524", + "1483070547", + "1483070523", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972336", + "972336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070634", + "1483070636", + "1483070663", + "1483070634", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972358", + "972358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070734", + "1483070735", + "1483070755", + "1483070734", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972364", + "972364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070756", + "1483070757", + "1483070780", + "1483070756", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972368", + "972368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070762", + "1483070763", + "1483070778", + "1483070762", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972370", + "972370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070768", + "1483070769", + "1483070789", + "1483070768", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972372", + "972372", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070778", + "1483070779", + "1483070799", + "1483070778", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972374", + "972374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070780", + "1483070782", + "1483070804", + "1483070780", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972378", + "972378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070796", + "1483070797", + "1483070825", + "1483070796", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972380", + "972380", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070799", + "1483070800", + "1483070821", + "1483070799", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972388", + "972388", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070818", + "1483070820", + "1483070838", + "1483070818", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972415", + "972415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070874", + "1483070876", + "1483070897", + "1483070874", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972419", + "972419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070877", + "1483070879", + "1483070898", + "1483070877", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972429", + "972429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070899", + "1483070900", + "1483070916", + "1483070899", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972431", + "972431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070900", + "1483070901", + "1483070917", + "1483070900", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972449", + "972449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070943", + "1483070944", + "1483070962", + "1483070943", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972451", + "972451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070946", + "1483070947", + "1483070966", + "1483070946", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972453", + "972453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070951", + "1483070952", + "1483070976", + "1483070951", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972455", + "972455", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070959", + "1483070960", + "1483070980", + "1483070959", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972457", + "972457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070963", + "1483070964", + "1483070977", + "1483070963", + "1", + "8", + "0", + "-1", + "13", + "1", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972459", + "972459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070966", + "1483070967", + "1483070979", + "1483070966", + "1", + "8", + "0", + "-1", + "12", + "1", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972463", + "972463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070978", + "1483070980", + "1483071002", + "1483070978", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972465", + "972465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070980", + "1483070981", + "1483071005", + "1483070980", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972469", + "972469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070984", + "1483070986", + "1483071007", + "1483070984", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972471", + "972471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071003", + "1483071004", + "1483071021", + "1483071003", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972473", + "972473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071005", + "1483071007", + "1483071021", + "1483071005", + "1", + "8", + "0", + "-1", + "14", + "2", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972475", + "972475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071007", + "1483071009", + "1483071027", + "1483071007", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972497", + "972497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071054", + "1483071056", + "1483071073", + "1483071054", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972499", + "972499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071057", + "1483071058", + "1483071076", + "1483071057", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972501", + "972501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071058", + "1483071059", + "1483071083", + "1483071058", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972503", + "972503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071073", + "1483071074", + "1483071088", + "1483071073", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972505", + "972505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071074", + "1483071076", + "1483071091", + "1483071074", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972509", + "972509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071078", + "1483071080", + "1483071109", + "1483071078", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972513", + "972513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071089", + "1483071090", + "1483071115", + "1483071089", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972515", + "972515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071091", + "1483071093", + "1483071116", + "1483071091", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972517", + "972517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071104", + "1483071105", + "1483071122", + "1483071104", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972519", + "972519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071108", + "1483071109", + "1483071124", + "1483071108", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972521", + "972521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071110", + "1483071112", + "1483071133", + "1483071110", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972523", + "972523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071113", + "1483071115", + "1483071129", + "1483071113", + "1", + "8", + "0", + "-1", + "14", + "2", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972541", + "972541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071134", + "1483071136", + "1483071157", + "1483071134", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972543", + "972543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071151", + "1483071152", + "1483071174", + "1483071151", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972547", + "972547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071158", + "1483071160", + "1483071183", + "1483071158", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972549", + "972549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071160", + "1483071161", + "1483071183", + "1483071160", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972551", + "972551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071163", + "1483071164", + "1483071178", + "1483071163", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972553", + "972553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071175", + "1483071176", + "1483071200", + "1483071175", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972561", + "972561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071183", + "1483071186", + "1483071209", + "1483071183", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972607", + "972607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071302", + "1483071303", + "1483071325", + "1483071302", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972611", + "972611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071306", + "1483071309", + "1483071334", + "1483071306", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972631", + "972631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071405", + "1483071406", + "1483071434", + "1483071405", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972633", + "972633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071407", + "1483071409", + "1483071435", + "1483071407", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972639", + "972639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071419", + "1483071420", + "1483071445", + "1483071419", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972643", + "972643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071434", + "1483071435", + "1483071464", + "1483071434", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972653", + "972653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071464", + "1483071465", + "1483071491", + "1483071464", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972655", + "972655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071468", + "1483071469", + "1483071494", + "1483071468", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972659", + "972659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071478", + "1483071479", + "1483071502", + "1483071478", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972669", + "972669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071497", + "1483071498", + "1483071527", + "1483071497", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972677", + "972677", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071512", + "1483071513", + "1483071539", + "1483071512", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972685", + "972685", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071539", + "1483071540", + "1483071565", + "1483071539", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972691", + "972691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071552", + "1483071553", + "1483071582", + "1483071552", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972707", + "972707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071593", + "1483071594", + "1483071619", + "1483071593", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972840", + "972840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072144", + "1483072145", + "1483072173", + "1483072144", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972857", + "972857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072191", + "1483072192", + "1483072221", + "1483072191", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972859", + "972859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072220", + "1483072221", + "1483072248", + "1483072220", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972864", + "972864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072222", + "1483072223", + "1483072248", + "1483072222", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972866", + "972866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072223", + "1483072224", + "1483072248", + "1483072223", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972882", + "972882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072279", + "1483072281", + "1483072309", + "1483072279", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972924", + "972924", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072426", + "1483072427", + "1483072448", + "1483072426", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972930", + "972930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072451", + "1483072453", + "1483072474", + "1483072451", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973042", + "973042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072802", + "1483072805", + "1483072833", + "1483072802", + "1", + "8", + "0", + "-1", + "28", + "3", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973068", + "973068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072895", + "1483072897", + "1483072918", + "1483072895", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973084", + "973084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072948", + "1483072949", + "1483072974", + "1483072948", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973090", + "973090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072974", + "1483072975", + "1483072999", + "1483072974", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973092", + "973092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072975", + "1483072977", + "1483072998", + "1483072975", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973094", + "973094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072989", + "1483072990", + "1483073011", + "1483072989", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973113", + "973113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073039", + "1483073042", + "1483073069", + "1483073039", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973137", + "973137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073117", + "1483073118", + "1483073136", + "1483073117", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973139", + "973139", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073120", + "1483073121", + "1483073137", + "1483073120", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973141", + "973141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073135", + "1483073136", + "1483073163", + "1483073135", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973145", + "973145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073137", + "1483073139", + "1483073166", + "1483073137", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973148", + "973148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073138", + "1483073139", + "1483073162", + "1483073138", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973150", + "973150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073138", + "1483073139", + "1483073156", + "1483073138", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973154", + "973154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073157", + "1483073158", + "1483073175", + "1483073157", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973158", + "973158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073163", + "1483073164", + "1483073183", + "1483073163", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973164", + "973164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073175", + "1483073176", + "1483073202", + "1483073175", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973170", + "973170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073197", + "1483073199", + "1483073227", + "1483073197", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973200", + "973200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073304", + "1483073305", + "1483073328", + "1483073304", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973202", + "973202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073312", + "1483073313", + "1483073335", + "1483073312", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973220", + "973220", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073362", + "1483073363", + "1483073392", + "1483073362", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973246", + "973246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073456", + "1483073457", + "1483073480", + "1483073456", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973250", + "973250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073468", + "1483073469", + "1483073492", + "1483073468", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973274", + "973274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073558", + "1483073559", + "1483073582", + "1483073558", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973276", + "973276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073578", + "1483073579", + "1483073600", + "1483073578", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973292", + "973292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073629", + "1483073630", + "1483073656", + "1483073629", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973294", + "973294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073632", + "1483073633", + "1483073653", + "1483073632", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973296", + "973296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073636", + "1483073637", + "1483073662", + "1483073636", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973339", + "973339", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073755", + "1483073757", + "1483073780", + "1483073755", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973402", + "973402", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073986", + "1483073988", + "1483074017", + "1483073986", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973404", + "973404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074018", + "1483074019", + "1483074045", + "1483074018", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973428", + "973428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074110", + "1483074112", + "1483074131", + "1483074110", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973448", + "973448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074175", + "1483074177", + "1483074203", + "1483074175", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973460", + "973460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074226", + "1483074227", + "1483074249", + "1483074226", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973466", + "973466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074236", + "1483074237", + "1483074260", + "1483074236", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973468", + "973468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074237", + "1483074240", + "1483074261", + "1483074237", + "1", + "8", + "0", + "-1", + "21", + "3", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973472", + "973472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074250", + "1483074251", + "1483074270", + "1483074250", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973474", + "973474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074261", + "1483074262", + "1483074283", + "1483074261", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973494", + "973494", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074309", + "1483074310", + "1483074333", + "1483074309", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973496", + "973496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074311", + "1483074313", + "1483074337", + "1483074311", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973498", + "973498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074322", + "1483074323", + "1483074349", + "1483074322", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973502", + "973502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074333", + "1483074334", + "1483074356", + "1483074333", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973510", + "973510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074349", + "1483074350", + "1483074373", + "1483074349", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973512", + "973512", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074351", + "1483074353", + "1483074376", + "1483074351", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973514", + "973514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074356", + "1483074357", + "1483074382", + "1483074356", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973518", + "973518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074368", + "1483074369", + "1483074390", + "1483074368", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973542", + "973542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074418", + "1483074420", + "1483074444", + "1483074418", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973544", + "973544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074441", + "1483074442", + "1483074466", + "1483074441", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973546", + "973546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074442", + "1483074445", + "1483074470", + "1483074442", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973551", + "973551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074445", + "1483074448", + "1483074477", + "1483074445", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973570", + "973570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074489", + "1483074490", + "1483074516", + "1483074489", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973584", + "973584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074516", + "1483074517", + "1483074542", + "1483074516", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973588", + "973588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074552", + "1483074553", + "1483074578", + "1483074552", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973590", + "973590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074554", + "1483074556", + "1483074577", + "1483074554", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973594", + "973594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074569", + "1483074570", + "1483074588", + "1483074569", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973610", + "973610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074609", + "1483074610", + "1483074634", + "1483074609", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973614", + "973614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074633", + "1483074634", + "1483074658", + "1483074633", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973629", + "973629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074657", + "1483074659", + "1483074687", + "1483074657", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973659", + "973659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074765", + "1483074766", + "1483074793", + "1483074765", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973883", + "973883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075761", + "1483075762", + "1483075789", + "1483075761", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973957", + "973957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076106", + "1483076107", + "1483076128", + "1483076106", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973959", + "973959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076108", + "1483076110", + "1483076131", + "1483076108", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973977", + "973977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076158", + "1483076160", + "1483076184", + "1483076158", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974003", + "974003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076244", + "1483076245", + "1483076268", + "1483076244", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974025", + "974025", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076323", + "1483076324", + "1483076349", + "1483076323", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974064", + "974064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076468", + "1483076469", + "1483076498", + "1483076468", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974133", + "974133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076716", + "1483076717", + "1483076741", + "1483076716", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974135", + "974135", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076730", + "1483076731", + "1483076759", + "1483076730", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974141", + "974141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076747", + "1483076749", + "1483076776", + "1483076747", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974153", + "974153", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076798", + "1483076799", + "1483076821", + "1483076798", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974157", + "974157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076803", + "1483076805", + "1483076824", + "1483076803", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974162", + "974162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076805", + "1483076808", + "1483076837", + "1483076805", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974176", + "974176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076858", + "1483076859", + "1483076886", + "1483076858", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974178", + "974178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076876", + "1483076877", + "1483076903", + "1483076876", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974180", + "974180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076877", + "1483076880", + "1483076902", + "1483076877", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974182", + "974182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076882", + "1483076883", + "1483076908", + "1483076882", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974184", + "974184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076886", + "1483076887", + "1483076912", + "1483076886", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974188", + "974188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076904", + "1483076906", + "1483076930", + "1483076904", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974190", + "974190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076908", + "1483076909", + "1483076936", + "1483076908", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974194", + "974194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076914", + "1483076916", + "1483076940", + "1483076914", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974204", + "974204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076944", + "1483076945", + "1483076965", + "1483076944", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974235", + "974235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077030", + "1483077031", + "1483077059", + "1483077030", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974288", + "974288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077227", + "1483077229", + "1483077254", + "1483077227", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974292", + "974292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077255", + "1483077256", + "1483077278", + "1483077255", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974294", + "974294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077260", + "1483077261", + "1483077289", + "1483077260", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974338", + "974338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077416", + "1483077417", + "1483077443", + "1483077416", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974357", + "974357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077481", + "1483077482", + "1483077511", + "1483077481", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974365", + "974365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077512", + "1483077513", + "1483077540", + "1483077512", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974367", + "974367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077516", + "1483077517", + "1483077543", + "1483077516", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974371", + "974371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077523", + "1483077524", + "1483077550", + "1483077523", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974383", + "974383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077555", + "1483077556", + "1483077578", + "1483077555", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974458", + "974458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077875", + "1483077876", + "1483077895", + "1483077875", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974462", + "974462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077883", + "1483077884", + "1483077912", + "1483077883", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974468", + "974468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077913", + "1483077914", + "1483077941", + "1483077913", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974470", + "974470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077924", + "1483077925", + "1483077947", + "1483077924", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974472", + "974472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077933", + "1483077934", + "1483077959", + "1483077933", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974474", + "974474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077937", + "1483077938", + "1483077962", + "1483077937", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974499", + "974499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078008", + "1483078011", + "1483078038", + "1483078008", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974501", + "974501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078016", + "1483078017", + "1483078041", + "1483078016", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974507", + "974507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078034", + "1483078037", + "1483078063", + "1483078034", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974511", + "974511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078042", + "1483078043", + "1483078072", + "1483078042", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974519", + "974519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078073", + "1483078074", + "1483078095", + "1483078073", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974521", + "974521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078080", + "1483078081", + "1483078108", + "1483078080", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974523", + "974523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078089", + "1483078090", + "1483078112", + "1483078089", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974551", + "974551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078178", + "1483078180", + "1483078208", + "1483078178", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974563", + "974563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078210", + "1483078212", + "1483078234", + "1483078210", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974595", + "974595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078283", + "1483078284", + "1483078308", + "1483078283", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974597", + "974597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078285", + "1483078287", + "1483078313", + "1483078285", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974599", + "974599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078302", + "1483078303", + "1483078332", + "1483078302", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974601", + "974601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078306", + "1483078307", + "1483078335", + "1483078306", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974605", + "974605", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078310", + "1483078311", + "1483078339", + "1483078310", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974611", + "974611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078332", + "1483078333", + "1483078353", + "1483078332", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974616", + "974616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078336", + "1483078337", + "1483078364", + "1483078336", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974620", + "974620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078339", + "1483078340", + "1483078369", + "1483078339", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974630", + "974630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078370", + "1483078371", + "1483078396", + "1483078370", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974640", + "974640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078396", + "1483078399", + "1483078425", + "1483078396", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974652", + "974652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078426", + "1483078427", + "1483078453", + "1483078426", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974658", + "974658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078450", + "1483078451", + "1483078475", + "1483078450", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974660", + "974660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078451", + "1483078453", + "1483078477", + "1483078451", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974675", + "974675", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078488", + "1483078489", + "1483078518", + "1483078488", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974703", + "974703", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078570", + "1483078572", + "1483078597", + "1483078570", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975005", + "975005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080021", + "1483080023", + "1483080040", + "1483080021", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975020", + "975020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080089", + "1483080092", + "1483080110", + "1483080089", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975052", + "975052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080180", + "1483080183", + "1483080206", + "1483080180", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975062", + "975062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080206", + "1483080207", + "1483080235", + "1483080206", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975066", + "975066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080225", + "1483080226", + "1483080245", + "1483080225", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975070", + "975070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080236", + "1483080238", + "1483080260", + "1483080236", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975092", + "975092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080303", + "1483080304", + "1483080328", + "1483080303", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975096", + "975096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080306", + "1483080307", + "1483080329", + "1483080306", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975110", + "975110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080367", + "1483080369", + "1483080391", + "1483080367", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975112", + "975112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080370", + "1483080372", + "1483080391", + "1483080370", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975114", + "975114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080374", + "1483080375", + "1483080398", + "1483080374", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975139", + "975139", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080437", + "1483080438", + "1483080458", + "1483080437", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975153", + "975153", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080462", + "1483080464", + "1483080492", + "1483080462", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975161", + "975161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080491", + "1483080492", + "1483080518", + "1483080491", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975184", + "975184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080551", + "1483080553", + "1483080576", + "1483080551", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975186", + "975186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080564", + "1483080565", + "1483080582", + "1483080564", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975190", + "975190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080576", + "1483080577", + "1483080606", + "1483080576", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975194", + "975194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080583", + "1483080584", + "1483080611", + "1483080583", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975198", + "975198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080606", + "1483080607", + "1483080624", + "1483080606", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975200", + "975200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080612", + "1483080613", + "1483080630", + "1483080612", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975203", + "975203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080612", + "1483080613", + "1483080631", + "1483080612", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975219", + "975219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080658", + "1483080659", + "1483080687", + "1483080658", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975221", + "975221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080668", + "1483080669", + "1483080694", + "1483080668", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975225", + "975225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080671", + "1483080672", + "1483080695", + "1483080671", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975229", + "975229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080688", + "1483080689", + "1483080707", + "1483080688", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975233", + "975233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080694", + "1483080696", + "1483080725", + "1483080694", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975235", + "975235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080696", + "1483080697", + "1483080720", + "1483080696", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975238", + "975238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080696", + "1483080697", + "1483080723", + "1483080696", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975240", + "975240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080708", + "1483080709", + "1483080735", + "1483080708", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975244", + "975244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080720", + "1483080721", + "1483080737", + "1483080720", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975246", + "975246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080724", + "1483080725", + "1483080742", + "1483080724", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975250", + "975250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080727", + "1483080728", + "1483080747", + "1483080727", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975262", + "975262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080743", + "1483080745", + "1483080772", + "1483080743", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975272", + "975272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080773", + "1483080775", + "1483080802", + "1483080773", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975274", + "975274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080781", + "1483080782", + "1483080803", + "1483080781", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975290", + "975290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080844", + "1483080845", + "1483080865", + "1483080844", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975294", + "975294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080847", + "1483080849", + "1483080870", + "1483080847", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975334", + "975334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080975", + "1483080976", + "1483080997", + "1483080975", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975336", + "975336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080976", + "1483080978", + "1483081001", + "1483080976", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975338", + "975338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080984", + "1483080985", + "1483081008", + "1483080984", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975340", + "975340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080996", + "1483080997", + "1483081018", + "1483080996", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975342", + "975342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080998", + "1483081000", + "1483081029", + "1483080998", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975361", + "975361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081050", + "1483081052", + "1483081080", + "1483081050", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975363", + "975363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081053", + "1483081055", + "1483081083", + "1483081053", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975367", + "975367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081074", + "1483081075", + "1483081096", + "1483081074", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975375", + "975375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081084", + "1483081085", + "1483081114", + "1483081084", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975379", + "975379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081108", + "1483081109", + "1483081131", + "1483081108", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975381", + "975381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081115", + "1483081116", + "1483081138", + "1483081115", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975385", + "975385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081121", + "1483081122", + "1483081144", + "1483081121", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975387", + "975387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081124", + "1483081125", + "1483081146", + "1483081124", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975407", + "975407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081187", + "1483081188", + "1483081215", + "1483081187", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975419", + "975419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081218", + "1483081219", + "1483081245", + "1483081218", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975429", + "975429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081248", + "1483081249", + "1483081269", + "1483081248", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975500", + "975500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081526", + "1483081527", + "1483081555", + "1483081526", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975504", + "975504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081543", + "1483081544", + "1483081567", + "1483081543", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975521", + "975521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081596", + "1483081597", + "1483081620", + "1483081596", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975549", + "975549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081686", + "1483081687", + "1483081702", + "1483081686", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975552", + "975552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081687", + "1483081690", + "1483081712", + "1483081687", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975562", + "975562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081712", + "1483081713", + "1483081730", + "1483081712", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975564", + "975564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081726", + "1483081727", + "1483081744", + "1483081726", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975566", + "975566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081731", + "1483081732", + "1483081751", + "1483081731", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975568", + "975568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081733", + "1483081735", + "1483081752", + "1483081733", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975574", + "975574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081739", + "1483081741", + "1483081768", + "1483081739", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975580", + "975580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081752", + "1483081753", + "1483081782", + "1483081752", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975592", + "975592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081798", + "1483081799", + "1483081820", + "1483081798", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975594", + "975594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081805", + "1483081806", + "1483081820", + "1483081805", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975602", + "975602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081823", + "1483081824", + "1483081853", + "1483081823", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975612", + "975612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081856", + "1483081858", + "1483081877", + "1483081856", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975614", + "975614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081858", + "1483081861", + "1483081877", + "1483081858", + "1", + "8", + "0", + "-1", + "16", + "3", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975648", + "975648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081943", + "1483081945", + "1483081972", + "1483081943", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975654", + "975654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081970", + "1483081971", + "1483081989", + "1483081970", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975656", + "975656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081973", + "1483081974", + "1483081995", + "1483081973", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975658", + "975658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081976", + "1483081978", + "1483081997", + "1483081976", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975660", + "975660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081979", + "1483081981", + "1483081998", + "1483081979", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975686", + "975686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082045", + "1483082046", + "1483082062", + "1483082045", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975688", + "975688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082049", + "1483082050", + "1483082076", + "1483082049", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975694", + "975694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082061", + "1483082063", + "1483082092", + "1483082061", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975698", + "975698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082064", + "1483082067", + "1483082085", + "1483082064", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975700", + "975700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082077", + "1483082078", + "1483082096", + "1483082077", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975704", + "975704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082085", + "1483082088", + "1483082104", + "1483082085", + "1", + "8", + "0", + "-1", + "16", + "3", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975706", + "975706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082088", + "1483082091", + "1483082113", + "1483082088", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975730", + "975730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082149", + "1483082150", + "1483082178", + "1483082149", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975744", + "975744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082202", + "1483082204", + "1483082231", + "1483082202", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975746", + "975746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082214", + "1483082215", + "1483082239", + "1483082214", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975748", + "975748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082218", + "1483082219", + "1483082243", + "1483082218", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975777", + "975777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082319", + "1483082321", + "1483082349", + "1483082319", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975806", + "975806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082404", + "1483082405", + "1483082427", + "1483082404", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975820", + "975820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082457", + "1483082458", + "1483082487", + "1483082457", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975834", + "975834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082517", + "1483082518", + "1483082544", + "1483082517", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976004", + "976004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083255", + "1483083256", + "1483083282", + "1483083255", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976043", + "976043", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083430", + "1483083431", + "1483083449", + "1483083430", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976047", + "976047", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083444", + "1483083446", + "1483083463", + "1483083444", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976049", + "976049", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083446", + "1483083449", + "1483083464", + "1483083446", + "1", + "8", + "0", + "-1", + "15", + "3", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976054", + "976054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083450", + "1483083452", + "1483083476", + "1483083450", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976060", + "976060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083464", + "1483083465", + "1483083483", + "1483083464", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976066", + "976066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083476", + "1483083478", + "1483083495", + "1483083476", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976070", + "976070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083484", + "1483083485", + "1483083511", + "1483083484", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976073", + "976073", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083484", + "1483083485", + "1483083511", + "1483083484", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976089", + "976089", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083537", + "1483083538", + "1483083554", + "1483083537", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976091", + "976091", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083538", + "1483083541", + "1483083555", + "1483083538", + "1", + "8", + "0", + "-1", + "14", + "3", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976093", + "976093", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083541", + "1483083544", + "1483083566", + "1483083541", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976095", + "976095", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083549", + "1483083550", + "1483083574", + "1483083549", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976098", + "976098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083550", + "1483083553", + "1483083573", + "1483083550", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976100", + "976100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083555", + "1483083556", + "1483083578", + "1483083555", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976104", + "976104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083556", + "1483083559", + "1483083577", + "1483083556", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976106", + "976106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083559", + "1483083562", + "1483083580", + "1483083559", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976108", + "976108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083567", + "1483083568", + "1483083584", + "1483083567", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976110", + "976110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083574", + "1483083575", + "1483083591", + "1483083574", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976112", + "976112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083575", + "1483083577", + "1483083602", + "1483083575", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976114", + "976114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083577", + "1483083578", + "1483083604", + "1483083577", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976116", + "976116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083578", + "1483083581", + "1483083606", + "1483083578", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976124", + "976124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083603", + "1483083604", + "1483083632", + "1483083603", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976128", + "976128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083606", + "1483083607", + "1483083627", + "1483083606", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976134", + "976134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083627", + "1483083628", + "1483083655", + "1483083627", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976138", + "976138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083638", + "1483083639", + "1483083659", + "1483083638", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976140", + "976140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083640", + "1483083641", + "1483083662", + "1483083640", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976142", + "976142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083641", + "1483083642", + "1483083663", + "1483083641", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976148", + "976148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083656", + "1483083658", + "1483083673", + "1483083656", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976150", + "976150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083660", + "1483083661", + "1483083677", + "1483083660", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976152", + "976152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083662", + "1483083663", + "1483083680", + "1483083662", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976156", + "976156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083664", + "1483083667", + "1483083692", + "1483083664", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976166", + "976166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083681", + "1483083682", + "1483083708", + "1483083681", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976170", + "976170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083693", + "1483083696", + "1483083713", + "1483083693", + "1", + "8", + "0", + "-1", + "17", + "3", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976176", + "976176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083714", + "1483083715", + "1483083736", + "1483083714", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976178", + "976178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083716", + "1483083718", + "1483083739", + "1483083716", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976184", + "976184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083735", + "1483083736", + "1483083756", + "1483083735", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976186", + "976186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083737", + "1483083739", + "1483083759", + "1483083737", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976188", + "976188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083740", + "1483083742", + "1483083762", + "1483083740", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976191", + "976191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083740", + "1483083742", + "1483083760", + "1483083740", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976206", + "976206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083783", + "1483083784", + "1483083799", + "1483083783", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976216", + "976216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083800", + "1483083801", + "1483083820", + "1483083800", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976222", + "976222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083818", + "1483083819", + "1483083834", + "1483083818", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976224", + "976224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083819", + "1483083820", + "1483083834", + "1483083819", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976226", + "976226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083821", + "1483083823", + "1483083837", + "1483083821", + "1", + "8", + "0", + "-1", + "14", + "2", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976228", + "976228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083827", + "1483083828", + "1483083842", + "1483083827", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976232", + "976232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083834", + "1483083835", + "1483083860", + "1483083834", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976234", + "976234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083835", + "1483083837", + "1483083862", + "1483083835", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976240", + "976240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083843", + "1483083844", + "1483083872", + "1483083843", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976246", + "976246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083860", + "1483083862", + "1483083878", + "1483083860", + "1", + "8", + "0", + "-1", + "16", + "2", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976248", + "976248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083862", + "1483083863", + "1483083879", + "1483083862", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976250", + "976250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083873", + "1483083874", + "1483083890", + "1483083873", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976252", + "976252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083876", + "1483083877", + "1483083893", + "1483083876", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976258", + "976258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083882", + "1483083883", + "1483083896", + "1483083882", + "1", + "8", + "0", + "-1", + "13", + "1", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976260", + "976260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083891", + "1483083892", + "1483083904", + "1483083891", + "1", + "8", + "0", + "-1", + "12", + "1", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976266", + "976266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083897", + "1483083898", + "1483083920", + "1483083897", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976268", + "976268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083900", + "1483083901", + "1483083923", + "1483083900", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976274", + "976274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083908", + "1483083909", + "1483083936", + "1483083908", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976278", + "976278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083910", + "1483083913", + "1483083936", + "1483083910", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976280", + "976280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083921", + "1483083922", + "1483083944", + "1483083921", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976282", + "976282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083924", + "1483083925", + "1483083953", + "1483083924", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976288", + "976288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083936", + "1483083937", + "1483083959", + "1483083936", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976290", + "976290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083942", + "1483083943", + "1483083963", + "1483083942", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976292", + "976292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083945", + "1483083946", + "1483083965", + "1483083945", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976294", + "976294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083954", + "1483083955", + "1483083975", + "1483083954", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976296", + "976296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083958", + "1483083959", + "1483083977", + "1483083958", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976298", + "976298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083960", + "1483083962", + "1483083981", + "1483083960", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976300", + "976300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083963", + "1483083965", + "1483083994", + "1483083963", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976304", + "976304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083969", + "1483083971", + "1483083998", + "1483083969", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976318", + "976318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084027", + "1483084028", + "1483084051", + "1483084027", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976320", + "976320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084029", + "1483084031", + "1483084053", + "1483084029", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976324", + "976324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084045", + "1483084046", + "1483084065", + "1483084045", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976328", + "976328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084051", + "1483084052", + "1483084070", + "1483084051", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976332", + "976332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084054", + "1483084055", + "1483084082", + "1483084054", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976348", + "976348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084089", + "1483084090", + "1483084112", + "1483084089", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976354", + "976354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084105", + "1483084108", + "1483084127", + "1483084105", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976357", + "976357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084106", + "1483084108", + "1483084126", + "1483084106", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976361", + "976361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084125", + "1483084126", + "1483084151", + "1483084125", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976363", + "976363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084127", + "1483084128", + "1483084157", + "1483084127", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976365", + "976365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084128", + "1483084129", + "1483084157", + "1483084128", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976373", + "976373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084152", + "1483084153", + "1483084182", + "1483084152", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976383", + "976383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084166", + "1483084167", + "1483084188", + "1483084166", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976385", + "976385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084182", + "1483084183", + "1483084200", + "1483084182", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976389", + "976389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084187", + "1483084188", + "1483084214", + "1483084187", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976393", + "976393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084193", + "1483084194", + "1483084220", + "1483084193", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976431", + "976431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084329", + "1483084331", + "1483084348", + "1483084329", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976439", + "976439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084365", + "1483084367", + "1483084394", + "1483084365", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976441", + "976441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084377", + "1483084378", + "1483084403", + "1483084377", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976453", + "976453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084407", + "1483084408", + "1483084424", + "1483084407", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976457", + "976457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084425", + "1483084427", + "1483084442", + "1483084425", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976461", + "976461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084432", + "1483084433", + "1483084457", + "1483084432", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976465", + "976465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084443", + "1483084445", + "1483084469", + "1483084443", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976477", + "976477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084468", + "1483084469", + "1483084486", + "1483084468", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976479", + "976479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084470", + "1483084471", + "1483084485", + "1483084470", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976481", + "976481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084471", + "1483084472", + "1483084496", + "1483084471", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976483", + "976483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084479", + "1483084480", + "1483084502", + "1483084479", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976489", + "976489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084487", + "1483084488", + "1483084517", + "1483084487", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976499", + "976499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084518", + "1483084520", + "1483084541", + "1483084518", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976501", + "976501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084521", + "1483084523", + "1483084546", + "1483084521", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976503", + "976503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084530", + "1483084531", + "1483084554", + "1483084530", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976511", + "976511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084547", + "1483084549", + "1483084575", + "1483084547", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976519", + "976519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084571", + "1483084572", + "1483084595", + "1483084571", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976585", + "976585", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084843", + "1483084846", + "1483084868", + "1483084843", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976589", + "976589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084869", + "1483084870", + "1483084892", + "1483084869", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976591", + "976591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084878", + "1483084879", + "1483084901", + "1483084878", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976593", + "976593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084884", + "1483084885", + "1483084907", + "1483084884", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976597", + "976597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084892", + "1483084893", + "1483084916", + "1483084892", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976599", + "976599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084893", + "1483084894", + "1483084917", + "1483084893", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976601", + "976601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084901", + "1483084902", + "1483084924", + "1483084901", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976603", + "976603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084907", + "1483084908", + "1483084931", + "1483084907", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976605", + "976605", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084915", + "1483084917", + "1483084941", + "1483084915", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976633", + "976633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084993", + "1483084996", + "1483085017", + "1483084993", + "1", + "8", + "0", + "-1", + "21", + "3", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976639", + "976639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085018", + "1483085019", + "1483085040", + "1483085018", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976645", + "976645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085038", + "1483085039", + "1483085065", + "1483085038", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976652", + "976652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085041", + "1483085042", + "1483085068", + "1483085041", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976656", + "976656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085051", + "1483085052", + "1483085074", + "1483085051", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976660", + "976660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085062", + "1483085063", + "1483085086", + "1483085062", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976676", + "976676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085098", + "1483085101", + "1483085123", + "1483085098", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976682", + "976682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085123", + "1483085126", + "1483085148", + "1483085123", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976684", + "976684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085127", + "1483085129", + "1483085149", + "1483085127", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976688", + "976688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085131", + "1483085132", + "1483085157", + "1483085131", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976690", + "976690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085133", + "1483085135", + "1483085159", + "1483085133", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976696", + "976696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085148", + "1483085149", + "1483085172", + "1483085148", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976698", + "976698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085150", + "1483085152", + "1483085176", + "1483085150", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976702", + "976702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085160", + "1483085161", + "1483085185", + "1483085160", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976710", + "976710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085177", + "1483085178", + "1483085207", + "1483085177", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976712", + "976712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085181", + "1483085182", + "1483085211", + "1483085181", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976722", + "976722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085211", + "1483085212", + "1483085236", + "1483085211", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976728", + "976728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085239", + "1483085241", + "1483085268", + "1483085239", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976730", + "976730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085244", + "1483085245", + "1483085273", + "1483085244", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976732", + "976732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085245", + "1483085246", + "1483085270", + "1483085245", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976736", + "976736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085250", + "1483085251", + "1483085280", + "1483085250", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976738", + "976738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085253", + "1483085254", + "1483085282", + "1483085253", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976744", + "976744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085271", + "1483085273", + "1483085300", + "1483085271", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976746", + "976746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085273", + "1483085275", + "1483085303", + "1483085273", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976748", + "976748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085281", + "1483085282", + "1483085304", + "1483085281", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976752", + "976752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085297", + "1483085298", + "1483085326", + "1483085297", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976768", + "976768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085341", + "1483085343", + "1483085363", + "1483085341", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976774", + "976774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085365", + "1483085367", + "1483085387", + "1483085365", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976778", + "976778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085379", + "1483085382", + "1483085400", + "1483085379", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976782", + "976782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085388", + "1483085389", + "1483085410", + "1483085388", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976784", + "976784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085397", + "1483085398", + "1483085420", + "1483085397", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976792", + "976792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085405", + "1483085408", + "1483085426", + "1483085405", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976815", + "976815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085453", + "1483085454", + "1483085473", + "1483085453", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976819", + "976819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085462", + "1483085463", + "1483085482", + "1483085462", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976823", + "976823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085468", + "1483085469", + "1483085484", + "1483085468", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976825", + "976825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085471", + "1483085472", + "1483085493", + "1483085471", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976827", + "976827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085474", + "1483085475", + "1483085496", + "1483085474", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976832", + "976832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085477", + "1483085478", + "1483085498", + "1483085477", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976838", + "976838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085494", + "1483085495", + "1483085509", + "1483085494", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976842", + "976842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085497", + "1483085498", + "1483085514", + "1483085497", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976846", + "976846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085500", + "1483085501", + "1483085526", + "1483085500", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976848", + "976848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085504", + "1483085505", + "1483085530", + "1483085504", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976856", + "976856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085527", + "1483085528", + "1483085555", + "1483085527", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976858", + "976858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085530", + "1483085531", + "1483085554", + "1483085530", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976860", + "976860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085548", + "1483085549", + "1483085575", + "1483085548", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976862", + "976862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085550", + "1483085552", + "1483085577", + "1483085550", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976864", + "976864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085554", + "1483085555", + "1483085579", + "1483085554", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976866", + "976866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085556", + "1483085558", + "1483085584", + "1483085556", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976870", + "976870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085571", + "1483085573", + "1483085599", + "1483085571", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976876", + "976876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085577", + "1483085578", + "1483085603", + "1483085577", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976878", + "976878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085580", + "1483085581", + "1483085608", + "1483085580", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976882", + "976882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085599", + "1483085600", + "1483085626", + "1483085599", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976903", + "976903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085651", + "1483085653", + "1483085666", + "1483085651", + "1", + "8", + "0", + "-1", + "13", + "2", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976905", + "976905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085655", + "1483085656", + "1483085680", + "1483085655", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976907", + "976907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085658", + "1483085659", + "1483085682", + "1483085658", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976911", + "976911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085662", + "1483085663", + "1483085684", + "1483085662", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976917", + "976917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085680", + "1483085681", + "1483085707", + "1483085680", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976919", + "976919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085683", + "1483085684", + "1483085710", + "1483085683", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976921", + "976921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085685", + "1483085687", + "1483085712", + "1483085685", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976951", + "976951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085760", + "1483085761", + "1483085784", + "1483085760", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976961", + "976961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085793", + "1483085795", + "1483085820", + "1483085793", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976967", + "976967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085807", + "1483085808", + "1483085834", + "1483085807", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976969", + "976969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085812", + "1483085813", + "1483085839", + "1483085812", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976973", + "976973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085821", + "1483085823", + "1483085847", + "1483085821", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976975", + "976975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085823", + "1483085824", + "1483085850", + "1483085823", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977003", + "977003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085910", + "1483085911", + "1483085934", + "1483085910", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977021", + "977021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085954", + "1483085956", + "1483085978", + "1483085954", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977023", + "977023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085962", + "1483085963", + "1483085988", + "1483085962", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977090", + "977090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086228", + "1483086229", + "1483086251", + "1483086228", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977092", + "977092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086241", + "1483086242", + "1483086262", + "1483086241", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977098", + "977098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086263", + "1483086265", + "1483086287", + "1483086263", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977101", + "977101", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086264", + "1483086265", + "1483086288", + "1483086264", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977103", + "977103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086272", + "1483086273", + "1483086296", + "1483086272", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977109", + "977109", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086288", + "1483086289", + "1483086308", + "1483086288", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977120", + "977120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086302", + "1483086304", + "1483086332", + "1483086302", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977130", + "977130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086334", + "1483086336", + "1483086358", + "1483086334", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977132", + "977132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086341", + "1483086342", + "1483086364", + "1483086341", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977134", + "977134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086347", + "1483086348", + "1483086370", + "1483086347", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977140", + "977140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086359", + "1483086361", + "1483086389", + "1483086359", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977144", + "977144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086366", + "1483086368", + "1483086391", + "1483086366", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977146", + "977146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086371", + "1483086372", + "1483086393", + "1483086371", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977148", + "977148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086383", + "1483086384", + "1483086407", + "1483086383", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977150", + "977150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086388", + "1483086389", + "1483086412", + "1483086388", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977152", + "977152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086389", + "1483086392", + "1483086412", + "1483086389", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977156", + "977156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086394", + "1483086395", + "1483086413", + "1483086394", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977163", + "977163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086407", + "1483086408", + "1483086437", + "1483086407", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977184", + "977184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086455", + "1483086457", + "1483086474", + "1483086455", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977186", + "977186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086459", + "1483086460", + "1483086486", + "1483086459", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977194", + "977194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086475", + "1483086478", + "1483086505", + "1483086475", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977202", + "977202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086500", + "1483086501", + "1483086517", + "1483086500", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977204", + "977204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086503", + "1483086504", + "1483086527", + "1483086503", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977209", + "977209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086506", + "1483086507", + "1483086536", + "1483086506", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977219", + "977219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086536", + "1483086538", + "1483086557", + "1483086536", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977221", + "977221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086548", + "1483086549", + "1483086569", + "1483086548", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977225", + "977225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086555", + "1483086556", + "1483086575", + "1483086555", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977227", + "977227", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086557", + "1483086559", + "1483086576", + "1483086557", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977229", + "977229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086562", + "1483086563", + "1483086579", + "1483086562", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977231", + "977231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086569", + "1483086570", + "1483086590", + "1483086569", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977233", + "977233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086571", + "1483086573", + "1483086594", + "1483086571", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977237", + "977237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086576", + "1483086579", + "1483086599", + "1483086576", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977239", + "977239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086579", + "1483086582", + "1483086601", + "1483086579", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977241", + "977241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086590", + "1483086591", + "1483086609", + "1483086590", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977243", + "977243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086594", + "1483086595", + "1483086612", + "1483086594", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977245", + "977245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086596", + "1483086598", + "1483086613", + "1483086596", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977247", + "977247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086600", + "1483086601", + "1483086617", + "1483086600", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977249", + "977249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086602", + "1483086603", + "1483086621", + "1483086602", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977253", + "977253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086608", + "1483086609", + "1483086636", + "1483086608", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977255", + "977255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086610", + "1483086612", + "1483086637", + "1483086610", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977261", + "977261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086618", + "1483086619", + "1483086647", + "1483086618", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977263", + "977263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086621", + "1483086622", + "1483086649", + "1483086621", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977265", + "977265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086637", + "1483086638", + "1483086657", + "1483086637", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977267", + "977267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086638", + "1483086641", + "1483086661", + "1483086638", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977273", + "977273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086650", + "1483086651", + "1483086670", + "1483086650", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977286", + "977286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086671", + "1483086673", + "1483086692", + "1483086671", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977288", + "977288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086671", + "1483086673", + "1483086692", + "1483086671", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977292", + "977292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086680", + "1483086681", + "1483086698", + "1483086680", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977294", + "977294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086688", + "1483086689", + "1483086707", + "1483086688", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977318", + "977318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086738", + "1483086740", + "1483086769", + "1483086738", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977336", + "977336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086769", + "1483086771", + "1483086796", + "1483086769", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977364", + "977364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086866", + "1483086868", + "1483086895", + "1483086866", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977428", + "977428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087044", + "1483087045", + "1483087074", + "1483087044", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977640", + "977640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087839", + "1483087841", + "1483087867", + "1483087839", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977646", + "977646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087846", + "1483087847", + "1483087873", + "1483087846", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977648", + "977648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087849", + "1483087850", + "1483087878", + "1483087849", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977650", + "977650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087856", + "1483087858", + "1483087883", + "1483087856", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977676", + "977676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087911", + "1483087912", + "1483087935", + "1483087911", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977684", + "977684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087937", + "1483087939", + "1483087964", + "1483087937", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977686", + "977686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087949", + "1483087950", + "1483087976", + "1483087949", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977691", + "977691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087953", + "1483087954", + "1483087982", + "1483087953", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977701", + "977701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087977", + "1483087978", + "1483088003", + "1483087977", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977721", + "977721", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088017", + "1483088018", + "1483088042", + "1483088017", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977730", + "977730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088041", + "1483088043", + "1483088068", + "1483088041", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977734", + "977734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088043", + "1483088044", + "1483088069", + "1483088043", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977738", + "977738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088067", + "1483088068", + "1483088097", + "1483088067", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977744", + "977744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088069", + "1483088071", + "1483088099", + "1483088069", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977807", + "977807", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088264", + "1483088267", + "1483088289", + "1483088264", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977811", + "977811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088272", + "1483088273", + "1483088295", + "1483088272", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977813", + "977813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088289", + "1483088290", + "1483088312", + "1483088289", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977817", + "977817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088298", + "1483088299", + "1483088317", + "1483088298", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977819", + "977819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088300", + "1483088302", + "1483088326", + "1483088300", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977821", + "977821", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088312", + "1483088313", + "1483088338", + "1483088312", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977823", + "977823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088316", + "1483088317", + "1483088341", + "1483088316", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977825", + "977825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088318", + "1483088320", + "1483088342", + "1483088318", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977827", + "977827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088326", + "1483088327", + "1483088350", + "1483088326", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977829", + "977829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088327", + "1483088330", + "1483088351", + "1483088327", + "1", + "8", + "0", + "-1", + "21", + "3", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977831", + "977831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088332", + "1483088333", + "1483088353", + "1483088332", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977833", + "977833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088339", + "1483088340", + "1483088358", + "1483088339", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977835", + "977835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088342", + "1483088343", + "1483088363", + "1483088342", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977841", + "977841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088352", + "1483088353", + "1483088382", + "1483088352", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977853", + "977853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088383", + "1483088384", + "1483088404", + "1483088383", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977855", + "977855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088386", + "1483088387", + "1483088408", + "1483088386", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977858", + "977858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088386", + "1483088387", + "1483088407", + "1483088386", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977860", + "977860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088399", + "1483088400", + "1483088418", + "1483088399", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977862", + "977862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088405", + "1483088406", + "1483088422", + "1483088405", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977864", + "977864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088406", + "1483088407", + "1483088429", + "1483088406", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977866", + "977866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088407", + "1483088408", + "1483088430", + "1483088407", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977868", + "977868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088408", + "1483088409", + "1483088430", + "1483088408", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977874", + "977874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088419", + "1483088420", + "1483088439", + "1483088419", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977882", + "977882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088431", + "1483088433", + "1483088452", + "1483088431", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977884", + "977884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088434", + "1483088436", + "1483088465", + "1483088434", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977886", + "977886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088439", + "1483088440", + "1483088468", + "1483088439", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977888", + "977888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088442", + "1483088443", + "1483088470", + "1483088442", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977900", + "977900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088471", + "1483088473", + "1483088498", + "1483088471", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977904", + "977904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088497", + "1483088499", + "1483088524", + "1483088497", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977912", + "977912", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088513", + "1483088514", + "1483088540", + "1483088513", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977944", + "977944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088605", + "1483088608", + "1483088632", + "1483088605", + "1", + "8", + "0", + "-1", + "24", + "3", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977946", + "977946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088621", + "1483088622", + "1483088648", + "1483088621", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977950", + "977950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088644", + "1483088645", + "1483088671", + "1483088644", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977952", + "977952", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088645", + "1483088648", + "1483088675", + "1483088645", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977962", + "977962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088672", + "1483088673", + "1483088700", + "1483088672", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977990", + "977990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088751", + "1483088752", + "1483088779", + "1483088751", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977994", + "977994", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088779", + "1483088780", + "1483088807", + "1483088779", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977996", + "977996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088781", + "1483088783", + "1483088809", + "1483088781", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977998", + "977998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088784", + "1483088786", + "1483088811", + "1483088784", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978000", + "978000", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088789", + "1483088790", + "1483088819", + "1483088789", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978002", + "978002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088791", + "1483088793", + "1483088821", + "1483088791", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978004", + "978004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088795", + "1483088796", + "1483088824", + "1483088795", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978008", + "978008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088809", + "1483088811", + "1483088839", + "1483088809", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978010", + "978010", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088812", + "1483088814", + "1483088843", + "1483088812", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978014", + "978014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088821", + "1483088823", + "1483088847", + "1483088821", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978016", + "978016", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088824", + "1483088826", + "1483088853", + "1483088824", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978040", + "978040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088910", + "1483088911", + "1483088940", + "1483088910", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978044", + "978044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088928", + "1483088929", + "1483088954", + "1483088928", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978046", + "978046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088929", + "1483088932", + "1483088957", + "1483088929", + "1", + "8", + "0", + "-1", + "25", + "3", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978064", + "978064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088974", + "1483088975", + "1483088997", + "1483088974", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978128", + "978128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089271", + "1483089272", + "1483089293", + "1483089271", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978130", + "978130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089273", + "1483089275", + "1483089298", + "1483089273", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978132", + "978132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089294", + "1483089295", + "1483089318", + "1483089294", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978134", + "978134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089299", + "1483089300", + "1483089323", + "1483089299", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978136", + "978136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089318", + "1483089319", + "1483089341", + "1483089318", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978140", + "978140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089323", + "1483089325", + "1483089350", + "1483089323", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978142", + "978142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089341", + "1483089342", + "1483089366", + "1483089341", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978144", + "978144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089350", + "1483089351", + "1483089375", + "1483089350", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978146", + "978146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089353", + "1483089354", + "1483089378", + "1483089353", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978150", + "978150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089362", + "1483089365", + "1483089387", + "1483089362", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978152", + "978152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089367", + "1483089368", + "1483089389", + "1483089367", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978154", + "978154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089376", + "1483089377", + "1483089396", + "1483089376", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978174", + "978174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089425", + "1483089426", + "1483089449", + "1483089425", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978176", + "978176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089428", + "1483089429", + "1483089451", + "1483089428", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978178", + "978178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089449", + "1483089450", + "1483089473", + "1483089449", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978180", + "978180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089451", + "1483089453", + "1483089476", + "1483089451", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978184", + "978184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089460", + "1483089461", + "1483089480", + "1483089460", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978192", + "978192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089477", + "1483089478", + "1483089505", + "1483089477", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978194", + "978194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089479", + "1483089481", + "1483089505", + "1483089479", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978222", + "978222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089542", + "1483089544", + "1483089567", + "1483089542", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978224", + "978224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089546", + "1483089547", + "1483089572", + "1483089546", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978226", + "978226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089567", + "1483089568", + "1483089590", + "1483089567", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978228", + "978228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089568", + "1483089571", + "1483089590", + "1483089568", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978238", + "978238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089596", + "1483089598", + "1483089622", + "1483089596", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978242", + "978242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089606", + "1483089608", + "1483089630", + "1483089606", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978244", + "978244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089608", + "1483089609", + "1483089631", + "1483089608", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978264", + "978264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089660", + "1483089663", + "1483089692", + "1483089660", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978266", + "978266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089665", + "1483089666", + "1483089686", + "1483089665", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978268", + "978268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089676", + "1483089677", + "1483089697", + "1483089676", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978270", + "978270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089687", + "1483089688", + "1483089708", + "1483089687", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978272", + "978272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089693", + "1483089694", + "1483089714", + "1483089693", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978274", + "978274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089694", + "1483089697", + "1483089715", + "1483089694", + "1", + "8", + "0", + "-1", + "18", + "3", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978276", + "978276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089698", + "1483089700", + "1483089716", + "1483089698", + "1", + "8", + "0", + "-1", + "16", + "2", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978278", + "978278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089704", + "1483089705", + "1483089727", + "1483089704", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978282", + "978282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089714", + "1483089715", + "1483089737", + "1483089714", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978284", + "978284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089716", + "1483089717", + "1483089739", + "1483089716", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978286", + "978286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089717", + "1483089718", + "1483089740", + "1483089717", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978294", + "978294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089738", + "1483089739", + "1483089757", + "1483089738", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978296", + "978296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089739", + "1483089740", + "1483089760", + "1483089739", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978300", + "978300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089749", + "1483089750", + "1483089778", + "1483089749", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978302", + "978302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089751", + "1483089753", + "1483089779", + "1483089751", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978310", + "978310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089775", + "1483089778", + "1483089807", + "1483089775", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978312", + "978312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089779", + "1483089780", + "1483089803", + "1483089779", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978325", + "978325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089803", + "1483089804", + "1483089828", + "1483089803", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978330", + "978330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089808", + "1483089809", + "1483089831", + "1483089808", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978332", + "978332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089817", + "1483089818", + "1483089839", + "1483089817", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978340", + "978340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089828", + "1483089829", + "1483089849", + "1483089828", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978408", + "978408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090026", + "1483090027", + "1483090056", + "1483090026", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978692", + "978692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091152", + "1483091153", + "1483091178", + "1483091152", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978694", + "978694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091169", + "1483091170", + "1483091190", + "1483091169", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978698", + "978698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091180", + "1483091181", + "1483091200", + "1483091180", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978739", + "978739", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091292", + "1483091293", + "1483091315", + "1483091292", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978741", + "978741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091300", + "1483091301", + "1483091323", + "1483091300", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978745", + "978745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091321", + "1483091322", + "1483091341", + "1483091321", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978747", + "978747", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091323", + "1483091325", + "1483091354", + "1483091323", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978768", + "978768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091359", + "1483091360", + "1483091387", + "1483091359", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978785", + "978785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091394", + "1483091395", + "1483091420", + "1483091394", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978817", + "978817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091500", + "1483091501", + "1483091520", + "1483091500", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978829", + "978829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091527", + "1483091529", + "1483091555", + "1483091527", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978863", + "978863", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091650", + "1483091652", + "1483091670", + "1483091650", + "1", + "8", + "0", + "-1", + "18", + "2", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978867", + "978867", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091660", + "1483091662", + "1483091691", + "1483091660", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978875", + "978875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091692", + "1483091693", + "1483091712", + "1483091692", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978877", + "978877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091694", + "1483091695", + "1483091714", + "1483091694", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978879", + "978879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091701", + "1483091702", + "1483091718", + "1483091701", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978881", + "978881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091703", + "1483091705", + "1483091726", + "1483091703", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978883", + "978883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091712", + "1483091713", + "1483091731", + "1483091712", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978903", + "978903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091772", + "1483091773", + "1483091799", + "1483091772", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978905", + "978905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091774", + "1483091776", + "1483091797", + "1483091774", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978909", + "978909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091780", + "1483091782", + "1483091797", + "1483091780", + "1", + "8", + "0", + "-1", + "15", + "2", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978913", + "978913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091791", + "1483091793", + "1483091816", + "1483091791", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978919", + "978919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091799", + "1483091801", + "1483091823", + "1483091799", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978921", + "978921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091810", + "1483091811", + "1483091828", + "1483091810", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978923", + "978923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091817", + "1483091818", + "1483091836", + "1483091817", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978939", + "978939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091841", + "1483091843", + "1483091872", + "1483091841", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978969", + "978969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091950", + "1483091951", + "1483091976", + "1483091950", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978975", + "978975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091954", + "1483091957", + "1483091979", + "1483091954", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979001", + "979001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092043", + "1483092044", + "1483092065", + "1483092043", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979013", + "979013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092069", + "1483092070", + "1483092092", + "1483092069", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979018", + "979018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092093", + "1483092096", + "1483092120", + "1483092093", + "1", + "8", + "0", + "-1", + "24", + "3", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979061", + "979061", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092236", + "1483092237", + "1483092260", + "1483092236", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979085", + "979085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092312", + "1483092314", + "1483092339", + "1483092312", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979087", + "979087", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092317", + "1483092318", + "1483092343", + "1483092317", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979097", + "979097", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092353", + "1483092354", + "1483092383", + "1483092353", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979105", + "979105", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092376", + "1483092379", + "1483092399", + "1483092376", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979107", + "979107", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092384", + "1483092385", + "1483092408", + "1483092384", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979173", + "979173", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092577", + "1483092578", + "1483092605", + "1483092577", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979189", + "979189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092660", + "1483092661", + "1483092688", + "1483092660", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979195", + "979195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092688", + "1483092689", + "1483092709", + "1483092688", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979197", + "979197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092690", + "1483092692", + "1483092716", + "1483092690", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979199", + "979199", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092698", + "1483092699", + "1483092720", + "1483092698", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979201", + "979201", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092706", + "1483092707", + "1483092734", + "1483092706", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979215", + "979215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092743", + "1483092745", + "1483092773", + "1483092743", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979221", + "979221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092773", + "1483092774", + "1483092796", + "1483092773", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979227", + "979227", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092791", + "1483092794", + "1483092811", + "1483092791", + "1", + "8", + "0", + "-1", + "17", + "3", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979229", + "979229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092796", + "1483092797", + "1483092820", + "1483092796", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979244", + "979244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092827", + "1483092829", + "1483092849", + "1483092827", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979246", + "979246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092831", + "1483092832", + "1483092851", + "1483092831", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979260", + "979260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092852", + "1483092854", + "1483092880", + "1483092852", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979264", + "979264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092881", + "1483092884", + "1483092904", + "1483092881", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979267", + "979267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092882", + "1483092884", + "1483092909", + "1483092882", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979269", + "979269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092886", + "1483092887", + "1483092913", + "1483092886", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979279", + "979279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092911", + "1483092912", + "1483092939", + "1483092911", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979281", + "979281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092913", + "1483092915", + "1483092938", + "1483092913", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979283", + "979283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092916", + "1483092917", + "1483092936", + "1483092916", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979291", + "979291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092938", + "1483092939", + "1483092956", + "1483092938", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979305", + "979305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092972", + "1483092973", + "1483093000", + "1483092972", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979307", + "979307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092974", + "1483092976", + "1483092998", + "1483092974", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979309", + "979309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092979", + "1483092980", + "1483093002", + "1483092979", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979311", + "979311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092988", + "1483092989", + "1483093008", + "1483092988", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979313", + "979313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092996", + "1483092997", + "1483093021", + "1483092996", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979315", + "979315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092998", + "1483093000", + "1483093022", + "1483092998", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979317", + "979317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093000", + "1483093002", + "1483093018", + "1483093000", + "1", + "8", + "0", + "-1", + "16", + "2", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979324", + "979324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093008", + "1483093009", + "1483093035", + "1483093008", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979328", + "979328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093021", + "1483093022", + "1483093042", + "1483093021", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979330", + "979330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093023", + "1483093025", + "1483093041", + "1483093023", + "1", + "8", + "0", + "-1", + "16", + "2", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979332", + "979332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093036", + "1483093037", + "1483093052", + "1483093036", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979371", + "979371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093113", + "1483093116", + "1483093144", + "1483093113", + "1", + "8", + "0", + "-1", + "28", + "3", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979373", + "979373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093120", + "1483093121", + "1483093142", + "1483093120", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979375", + "979375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093122", + "1483093124", + "1483093141", + "1483093122", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979379", + "979379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093139", + "1483093141", + "1483093163", + "1483093139", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979451", + "979451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093391", + "1483093392", + "1483093421", + "1483093391", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979453", + "979453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093401", + "1483093402", + "1483093428", + "1483093401", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979513", + "979513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093658", + "1483093659", + "1483093685", + "1483093658", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979636", + "979636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094251", + "1483094252", + "1483094280", + "1483094251", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979669", + "979669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094349", + "1483094352", + "1483094371", + "1483094349", + "1", + "8", + "0", + "-1", + "19", + "3", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979742", + "979742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094633", + "1483094634", + "1483094659", + "1483094633", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979764", + "979764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094719", + "1483094720", + "1483094749", + "1483094719", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979786", + "979786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094797", + "1483094798", + "1483094822", + "1483094797", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979828", + "979828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094946", + "1483094949", + "1483094975", + "1483094946", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979851", + "979851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095016", + "1483095017", + "1483095043", + "1483095016", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979887", + "979887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095133", + "1483095134", + "1483095159", + "1483095133", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979889", + "979889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095143", + "1483095144", + "1483095172", + "1483095143", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979891", + "979891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095158", + "1483095159", + "1483095188", + "1483095158", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979896", + "979896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095160", + "1483095162", + "1483095189", + "1483095160", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979906", + "979906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095189", + "1483095192", + "1483095218", + "1483095189", + "1", + "8", + "0", + "-1", + "26", + "3", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979929", + "979929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095262", + "1483095264", + "1483095292", + "1483095262", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979935", + "979935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095282", + "1483095283", + "1483095311", + "1483095282", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979943", + "979943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095308", + "1483095309", + "1483095334", + "1483095308", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979972", + "979972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095418", + "1483095419", + "1483095446", + "1483095418", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980003", + "980003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095557", + "1483095558", + "1483095587", + "1483095557", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980033", + "980033", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095665", + "1483095667", + "1483095695", + "1483095665", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980058", + "980058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095767", + "1483095768", + "1483095796", + "1483095767", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980060", + "980060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095795", + "1483095796", + "1483095824", + "1483095795", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980064", + "980064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095803", + "1483095804", + "1483095833", + "1483095803", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980086", + "980086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095901", + "1483095902", + "1483095929", + "1483095901", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980110", + "980110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096068", + "1483096069", + "1483096093", + "1483096068", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980134", + "980134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096126", + "1483096127", + "1483096154", + "1483096126", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980152", + "980152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096207", + "1483096208", + "1483096228", + "1483096207", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980156", + "980156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096225", + "1483096226", + "1483096253", + "1483096225", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980171", + "980171", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096263", + "1483096264", + "1483096289", + "1483096263", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980331", + "980331", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096995", + "1483096998", + "1483097027", + "1483096995", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980333", + "980333", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097003", + "1483097004", + "1483097033", + "1483097003", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980377", + "980377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097153", + "1483097155", + "1483097183", + "1483097153", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980425", + "980425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097320", + "1483097321", + "1483097350", + "1483097320", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980499", + "980499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097596", + "1483097598", + "1483097625", + "1483097596", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980515", + "980515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097653", + "1483097655", + "1483097676", + "1483097653", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980559", + "980559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097810", + "1483097811", + "1483097840", + "1483097810", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980589", + "980589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097935", + "1483097938", + "1483097966", + "1483097935", + "1", + "8", + "0", + "-1", + "28", + "3", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980647", + "980647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098167", + "1483098168", + "1483098196", + "1483098167", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980649", + "980649", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098170", + "1483098171", + "1483098200", + "1483098170", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980651", + "980651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098176", + "1483098178", + "1483098206", + "1483098176", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980692", + "980692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098310", + "1483098311", + "1483098340", + "1483098310", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980787", + "980787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098740", + "1483098741", + "1483098766", + "1483098740", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980857", + "980857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098988", + "1483098989", + "1483099013", + "1483098988", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980875", + "980875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099051", + "1483099052", + "1483099076", + "1483099051", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980877", + "980877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099062", + "1483099063", + "1483099091", + "1483099062", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980879", + "980879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099063", + "1483099066", + "1483099089", + "1483099063", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980883", + "980883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099075", + "1483099077", + "1483099105", + "1483099075", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980901", + "980901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099139", + "1483099140", + "1483099166", + "1483099139", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980927", + "980927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099246", + "1483099248", + "1483099273", + "1483099246", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980929", + "980929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099254", + "1483099255", + "1483099283", + "1483099254", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980951", + "980951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099357", + "1483099358", + "1483099384", + "1483099357", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980958", + "980958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099361", + "1483099364", + "1483099391", + "1483099361", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980964", + "980964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099379", + "1483099382", + "1483099409", + "1483099379", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980966", + "980966", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099384", + "1483099385", + "1483099412", + "1483099384", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980970", + "980970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099392", + "1483099394", + "1483099421", + "1483099392", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980972", + "980972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099402", + "1483099403", + "1483099430", + "1483099402", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981320", + "981320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101174", + "1483101175", + "1483101196", + "1483101174", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981332", + "981332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101190", + "1483101191", + "1483101214", + "1483101190", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981334", + "981334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101196", + "1483101197", + "1483101221", + "1483101196", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981340", + "981340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101220", + "1483101221", + "1483101244", + "1483101220", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981363", + "981363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101286", + "1483101287", + "1483101314", + "1483101286", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981383", + "981383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101352", + "1483101353", + "1483101381", + "1483101352", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981409", + "981409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101433", + "1483101435", + "1483101463", + "1483101433", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981411", + "981411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101442", + "1483101443", + "1483101465", + "1483101442", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981425", + "981425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101501", + "1483101502", + "1483101527", + "1483101501", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981427", + "981427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101503", + "1483101505", + "1483101531", + "1483101503", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981429", + "981429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101509", + "1483101510", + "1483101539", + "1483101509", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981431", + "981431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101511", + "1483101513", + "1483101536", + "1483101511", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981451", + "981451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101569", + "1483101571", + "1483101598", + "1483101569", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981457", + "981457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101598", + "1483101599", + "1483101622", + "1483101598", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981469", + "981469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101628", + "1483101629", + "1483101653", + "1483101628", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981471", + "981471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101638", + "1483101639", + "1483101661", + "1483101638", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981473", + "981473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101642", + "1483101643", + "1483101667", + "1483101642", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981502", + "981502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101728", + "1483101729", + "1483101749", + "1483101728", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981514", + "981514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101761", + "1483101763", + "1483101792", + "1483101761", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981538", + "981538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101843", + "1483101844", + "1483101872", + "1483101843", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981542", + "981542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101858", + "1483101859", + "1483101883", + "1483101858", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981546", + "981546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101870", + "1483101873", + "1483101896", + "1483101870", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981548", + "981548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101873", + "1483101876", + "1483101896", + "1483101873", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981550", + "981550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101883", + "1483101884", + "1483101908", + "1483101883", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981552", + "981552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101885", + "1483101887", + "1483101911", + "1483101885", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981562", + "981562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101912", + "1483101913", + "1483101938", + "1483101912", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981566", + "981566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101931", + "1483101932", + "1483101960", + "1483101931", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981593", + "981593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102003", + "1483102004", + "1483102031", + "1483102003", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981605", + "981605", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102051", + "1483102052", + "1483102078", + "1483102051", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981643", + "981643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102143", + "1483102145", + "1483102174", + "1483102143", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981651", + "981651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102175", + "1483102176", + "1483102201", + "1483102175", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981653", + "981653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102180", + "1483102181", + "1483102205", + "1483102180", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981655", + "981655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102181", + "1483102184", + "1483102213", + "1483102181", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981699", + "981699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102326", + "1483102328", + "1483102352", + "1483102326", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981703", + "981703", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102353", + "1483102354", + "1483102380", + "1483102353", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981705", + "981705", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102356", + "1483102357", + "1483102381", + "1483102356", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981731", + "981731", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102441", + "1483102444", + "1483102466", + "1483102441", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981745", + "981745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102502", + "1483102504", + "1483102531", + "1483102502", + "1", + "8", + "0", + "-1", + "27", + "2", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981747", + "981747", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102506", + "1483102507", + "1483102531", + "1483102506", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981834", + "981834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102896", + "1483102897", + "1483102924", + "1483102896", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981840", + "981840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102917", + "1483102918", + "1483102941", + "1483102917", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981860", + "981860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102985", + "1483102986", + "1483103014", + "1483102985", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981862", + "981862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102987", + "1483102988", + "1483103016", + "1483102987", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981866", + "981866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102999", + "1483103000", + "1483103027", + "1483102999", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981868", + "981868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103004", + "1483103005", + "1483103024", + "1483103004", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981872", + "981872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103014", + "1483103015", + "1483103044", + "1483103014", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981880", + "981880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103019", + "1483103021", + "1483103044", + "1483103019", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981882", + "981882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103024", + "1483103025", + "1483103046", + "1483103024", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981903", + "981903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103078", + "1483103079", + "1483103106", + "1483103078", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981907", + "981907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103096", + "1483103098", + "1483103126", + "1483103096", + "1", + "8", + "0", + "-1", + "28", + "2", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981923", + "981923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103146", + "1483103147", + "1483103176", + "1483103146", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981925", + "981925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103152", + "1483103153", + "1483103176", + "1483103152", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981929", + "981929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103170", + "1483103171", + "1483103193", + "1483103170", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981973", + "981973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103302", + "1483103303", + "1483103323", + "1483103302", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981975", + "981975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103307", + "1483103308", + "1483103329", + "1483103307", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981979", + "981979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103313", + "1483103314", + "1483103336", + "1483103313", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982005", + "982005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103383", + "1483103386", + "1483103406", + "1483103383", + "1", + "8", + "0", + "-1", + "20", + "3", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982019", + "982019", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103419", + "1483103420", + "1483103440", + "1483103419", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982025", + "982025", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103441", + "1483103443", + "1483103472", + "1483103441", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982063", + "982063", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103558", + "1483103560", + "1483103589", + "1483103558", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982384", + "982384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105045", + "1483105046", + "1483105075", + "1483105045", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982508", + "982508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105589", + "1483105590", + "1483105619", + "1483105589", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982510", + "982510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105590", + "1483105591", + "1483105620", + "1483105590", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982584", + "982584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105904", + "1483105905", + "1483105928", + "1483105904", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982753", + "982753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106680", + "1483106681", + "1483106710", + "1483106680", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982755", + "982755", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106683", + "1483106684", + "1483106709", + "1483106683", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982776", + "982776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106744", + "1483106745", + "1483106768", + "1483106744", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982796", + "982796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106813", + "1483106814", + "1483106843", + "1483106813", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982800", + "982800", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106839", + "1483106840", + "1483106867", + "1483106839", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982915", + "982915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107476", + "1483107477", + "1483107502", + "1483107476", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982927", + "982927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107503", + "1483107504", + "1483107529", + "1483107503", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982935", + "982935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107529", + "1483107530", + "1483107558", + "1483107529", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982979", + "982979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107693", + "1483107694", + "1483107718", + "1483107693", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983005", + "983005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107782", + "1483107784", + "1483107813", + "1483107782", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983027", + "983027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107841", + "1483107842", + "1483107869", + "1483107841", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983053", + "983053", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107929", + "1483107930", + "1483107954", + "1483107929", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983064", + "983064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107965", + "1483107967", + "1483107993", + "1483107965", + "1", + "8", + "0", + "-1", + "26", + "2", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983117", + "983117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108169", + "1483108170", + "1483108199", + "1483108169", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983142", + "983142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108255", + "1483108257", + "1483108279", + "1483108255", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983154", + "983154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108280", + "1483108282", + "1483108304", + "1483108280", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983157", + "983157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108280", + "1483108282", + "1483108303", + "1483108280", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983161", + "983161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108285", + "1483108288", + "1483108311", + "1483108285", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983187", + "983187", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108377", + "1483108378", + "1483108404", + "1483108377", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983232", + "983232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108542", + "1483108543", + "1483108570", + "1483108542", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983244", + "983244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108592", + "1483108593", + "1483108621", + "1483108592", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983322", + "983322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108904", + "1483108906", + "1483108929", + "1483108904", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983324", + "983324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108929", + "1483108930", + "1483108959", + "1483108929", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983338", + "983338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108973", + "1483108975", + "1483109000", + "1483108973", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983341", + "983341", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108974", + "1483108975", + "1483109002", + "1483108974", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983413", + "983413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109304", + "1483109306", + "1483109329", + "1483109304", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983425", + "983425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109369", + "1483109370", + "1483109394", + "1483109369", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983427", + "983427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109381", + "1483109382", + "1483109405", + "1483109381", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983429", + "983429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109383", + "1483109384", + "1483109413", + "1483109383", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983431", + "983431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109384", + "1483109385", + "1483109409", + "1483109384", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983433", + "983433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109392", + "1483109393", + "1483109416", + "1483109392", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983457", + "983457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109486", + "1483109487", + "1483109514", + "1483109486", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983459", + "983459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109488", + "1483109490", + "1483109513", + "1483109488", + "1", + "8", + "0", + "-1", + "23", + "2", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983463", + "983463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109504", + "1483109505", + "1483109533", + "1483109504", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983471", + "983471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109515", + "1483109516", + "1483109539", + "1483109515", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983473", + "983473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109516", + "1483109518", + "1483109543", + "1483109516", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983475", + "983475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109534", + "1483109535", + "1483109557", + "1483109534", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983479", + "983479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109539", + "1483109540", + "1483109566", + "1483109539", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983517", + "983517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109640", + "1483109641", + "1483109664", + "1483109640", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983519", + "983519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109660", + "1483109661", + "1483109681", + "1483109660", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983523", + "983523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109664", + "1483109667", + "1483109690", + "1483109664", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983550", + "983550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109769", + "1483109770", + "1483109790", + "1483109769", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983560", + "983560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109790", + "1483109793", + "1483109822", + "1483109790", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983562", + "983562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109794", + "1483109796", + "1483109818", + "1483109794", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983596", + "983596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109907", + "1483109908", + "1483109934", + "1483109907", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983656", + "983656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110115", + "1483110118", + "1483110146", + "1483110115", + "1", + "8", + "0", + "-1", + "28", + "3", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983819", + "983819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111160", + "1483111161", + "1483111188", + "1483111160", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983997", + "983997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111901", + "1483111902", + "1483111929", + "1483111901", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984017", + "984017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111955", + "1483111956", + "1483111985", + "1483111955", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984025", + "984025", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111986", + "1483111988", + "1483112010", + "1483111986", + "1", + "8", + "0", + "-1", + "22", + "2", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984047", + "984047", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112062", + "1483112063", + "1483112089", + "1483112062", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984067", + "984067", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112124", + "1483112126", + "1483112150", + "1483112124", + "1", + "8", + "0", + "-1", + "24", + "2", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984085", + "984085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112185", + "1483112186", + "1483112209", + "1483112185", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984125", + "984125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112330", + "1483112331", + "1483112353", + "1483112330", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984133", + "984133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112342", + "1483112343", + "1483112372", + "1483112342", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984141", + "984141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112373", + "1483112374", + "1483112400", + "1483112373", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984143", + "984143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112375", + "1483112377", + "1483112396", + "1483112375", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984171", + "984171", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112445", + "1483112446", + "1483112469", + "1483112445", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984175", + "984175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112455", + "1483112456", + "1483112475", + "1483112455", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984177", + "984177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112458", + "1483112459", + "1483112476", + "1483112458", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984181", + "984181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112469", + "1483112470", + "1483112489", + "1483112469", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984211", + "984211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112578", + "1483112579", + "1483112603", + "1483112578", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984215", + "984215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112591", + "1483112592", + "1483112617", + "1483112591", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984245", + "984245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112679", + "1483112680", + "1483112708", + "1483112679", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984279", + "984279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112798", + "1483112801", + "1483112830", + "1483112798", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984296", + "984296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112849", + "1483112852", + "1483112874", + "1483112849", + "1", + "8", + "0", + "-1", + "22", + "3", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984300", + "984300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112875", + "1483112876", + "1483112897", + "1483112875", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984302", + "984302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112881", + "1483112882", + "1483112904", + "1483112881", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984351", + "984351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113069", + "1483113070", + "1483113091", + "1483113069", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984373", + "984373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113159", + "1483113160", + "1483113182", + "1483113159", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984375", + "984375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113177", + "1483113178", + "1483113198", + "1483113177", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984391", + "984391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113228", + "1483113229", + "1483113246", + "1483113228", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984395", + "984395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113234", + "1483113235", + "1483113251", + "1483113234", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984401", + "984401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113246", + "1483113249", + "1483113276", + "1483113246", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984411", + "984411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113277", + "1483113278", + "1483113298", + "1483113277", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984413", + "984413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113281", + "1483113282", + "1483113302", + "1483113281", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984415", + "984415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113288", + "1483113289", + "1483113312", + "1483113288", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984431", + "984431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113351", + "1483113352", + "1483113378", + "1483113351", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984433", + "984433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113363", + "1483113364", + "1483113393", + "1483113363", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984504", + "984504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113764", + "1483113765", + "1483113786", + "1483113764", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984508", + "984508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113770", + "1483113771", + "1483113796", + "1483113770", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984510", + "984510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113773", + "1483113774", + "1483113793", + "1483113773", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984576", + "984576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113981", + "1483113983", + "1483114012", + "1483113981", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984611", + "984611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114099", + "1483114100", + "1483114123", + "1483114099", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984630", + "984630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114138", + "1483114139", + "1483114168", + "1483114138", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984632", + "984632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114142", + "1483114143", + "1483114168", + "1483114142", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984634", + "984634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114152", + "1483114153", + "1483114174", + "1483114152", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984638", + "984638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114169", + "1483114172", + "1483114201", + "1483114169", + "1", + "8", + "0", + "-1", + "29", + "3", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984640", + "984640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114173", + "1483114174", + "1483114203", + "1483114173", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984672", + "984672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114276", + "1483114277", + "1483114300", + "1483114276", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984676", + "984676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114279", + "1483114280", + "1483114304", + "1483114279", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984686", + "984686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114305", + "1483114306", + "1483114325", + "1483114305", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984688", + "984688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114307", + "1483114309", + "1483114329", + "1483114307", + "1", + "8", + "0", + "-1", + "20", + "2", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984692", + "984692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114322", + "1483114323", + "1483114348", + "1483114322", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984696", + "984696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114330", + "1483114331", + "1483114360", + "1483114330", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984722", + "984722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114404", + "1483114406", + "1483114435", + "1483114404", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984726", + "984726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114418", + "1483114419", + "1483114440", + "1483114418", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984728", + "984728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114421", + "1483114422", + "1483114449", + "1483114421", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984744", + "984744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114470", + "1483114472", + "1483114501", + "1483114470", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984750", + "984750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114485", + "1483114488", + "1483114515", + "1483114485", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984758", + "984758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114525", + "1483114526", + "1483114551", + "1483114525", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984785", + "984785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114616", + "1483114617", + "1483114641", + "1483114616", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984789", + "984789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114621", + "1483114622", + "1483114643", + "1483114621", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984795", + "984795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114644", + "1483114645", + "1483114673", + "1483114644", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984819", + "984819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114731", + "1483114732", + "1483114757", + "1483114731", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984843", + "984843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114809", + "1483114810", + "1483114834", + "1483114809", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984845", + "984845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114815", + "1483114816", + "1483114837", + "1483114815", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984847", + "984847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114816", + "1483114819", + "1483114842", + "1483114816", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984873", + "984873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114896", + "1483114898", + "1483114927", + "1483114896", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984923", + "984923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115132", + "1483115133", + "1483115152", + "1483115132", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984943", + "984943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115189", + "1483115190", + "1483115213", + "1483115189", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984945", + "984945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115190", + "1483115191", + "1483115218", + "1483115190", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984959", + "984959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115220", + "1483115223", + "1483115246", + "1483115220", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985066", + "985066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115620", + "1483115621", + "1483115646", + "1483115620", + "1", + "8", + "0", + "-1", + "25", + "1", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985074", + "985074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115640", + "1483115641", + "1483115660", + "1483115640", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985080", + "985080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115652", + "1483115653", + "1483115680", + "1483115652", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985104", + "985104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115716", + "1483115717", + "1483115735", + "1483115716", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985140", + "985140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115823", + "1483115825", + "1483115854", + "1483115823", + "1", + "8", + "0", + "-1", + "29", + "2", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985166", + "985166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115928", + "1483115929", + "1483115948", + "1483115928", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985170", + "985170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115930", + "1483115932", + "1483115951", + "1483115930", + "1", + "8", + "0", + "-1", + "19", + "2", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985194", + "985194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116012", + "1483116013", + "1483116042", + "1483116012", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985196", + "985196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116021", + "1483116022", + "1483116041", + "1483116021", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985198", + "985198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116036", + "1483116037", + "1483116060", + "1483116036", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985208", + "985208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116042", + "1483116043", + "1483116069", + "1483116042", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985231", + "985231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116104", + "1483116107", + "1483116131", + "1483116104", + "1", + "8", + "0", + "-1", + "24", + "3", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985255", + "985255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116168", + "1483116170", + "1483116187", + "1483116168", + "1", + "8", + "0", + "-1", + "17", + "2", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985261", + "985261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116188", + "1483116189", + "1483116218", + "1483116188", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985277", + "985277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116239", + "1483116240", + "1483116260", + "1483116239", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985279", + "985279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116240", + "1483116243", + "1483116264", + "1483116240", + "1", + "8", + "0", + "-1", + "21", + "3", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985281", + "985281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116247", + "1483116248", + "1483116270", + "1483116247", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985285", + "985285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116265", + "1483116266", + "1483116283", + "1483116265", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985287", + "985287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116268", + "1483116269", + "1483116296", + "1483116268", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985289", + "985289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116271", + "1483116272", + "1483116295", + "1483116271", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985291", + "985291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116279", + "1483116280", + "1483116298", + "1483116279", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985293", + "985293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116283", + "1483116284", + "1483116311", + "1483116283", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985295", + "985295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116289", + "1483116290", + "1483116309", + "1483116289", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985299", + "985299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116296", + "1483116297", + "1483116313", + "1483116296", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985301", + "985301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116297", + "1483116298", + "1483116320", + "1483116297", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985307", + "985307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116312", + "1483116313", + "1483116336", + "1483116312", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985309", + "985309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116314", + "1483116316", + "1483116341", + "1483116314", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985311", + "985311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116319", + "1483116320", + "1483116348", + "1483116319", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985376", + "985376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116328", + "1483116334", + "1483116354", + "1483116328", + "1", + "8", + "0", + "-1", + "20", + "6", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985390", + "985390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116330", + "1483116358", + "1483116380", + "1483116330", + "1", + "8", + "0", + "-1", + "22", + "28", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976874", + "976874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "apple", + "1483085575", + "1483085577", + "1483085602", + "1483085575", + "1", + "8", + "0", + "-1", + "25", + "2", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "167841", + "167841", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056704", + "1483056705", + "1483056722", + "1483056704", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168280", + "168280", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059999", + "1483060000", + "1483060029", + "1483059999", + "1", + "8", + "0", + "-1", + "29", + "1", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168350", + "168350", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060470", + "1483060471", + "1483060499", + "1483060470", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168371", + "168371", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060638", + "1483060639", + "1483060655", + "1483060638", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169012", + "169012", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065080", + "1483065081", + "1483065109", + "1483065080", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169173", + "169173", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066096", + "1483066099", + "1483066122", + "1483066096", + "1", + "8", + "0", + "-1", + "23", + "3", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169183", + "169183", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066130", + "1483066131", + "1483066150", + "1483066130", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169377", + "169377", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067913", + "1483067914", + "1483067929", + "1483067913", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170161", + "170161", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072220", + "1483072221", + "1483072240", + "1483072220", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170291", + "170291", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073039", + "1483073040", + "1483073058", + "1483073039", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170554", + "170554", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074635", + "1483074638", + "1483074665", + "1483074635", + "1", + "8", + "0", + "-1", + "27", + "3", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170859", + "170859", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076959", + "1483076960", + "1483076982", + "1483076959", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171276", + "171276", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080089", + "1483080090", + "1483080104", + "1483080089", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171372", + "171372", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080612", + "1483080613", + "1483080626", + "1483080612", + "1", + "8", + "0", + "-1", + "13", + "1", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171391", + "171391", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080696", + "1483080698", + "1483080719", + "1483080696", + "1", + "8", + "0", + "-1", + "21", + "2", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171554", + "171554", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081686", + "1483081687", + "1483081715", + "1483081686", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171664", + "171664", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082280", + "1483082281", + "1483082305", + "1483082280", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171676", + "171676", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082350", + "1483082351", + "1483082374", + "1483082350", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171775", + "171775", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083175", + "1483083176", + "1483083204", + "1483083175", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171839", + "171839", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083549", + "1483083550", + "1483083564", + "1483083549", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171891", + "171891", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083757", + "1483083758", + "1483083775", + "1483083757", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172214", + "172214", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085474", + "1483085475", + "1483085489", + "1483085474", + "1", + "8", + "0", + "-1", + "14", + "1", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172364", + "172364", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086299", + "1483086300", + "1483086320", + "1483086299", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172386", + "172386", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086394", + "1483086395", + "1483086408", + "1483086394", + "1", + "8", + "0", + "-1", + "13", + "1", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172394", + "172394", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086414", + "1483086415", + "1483086437", + "1483086414", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172414", + "172414", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086506", + "1483086507", + "1483086533", + "1483086506", + "1", + "8", + "0", + "-1", + "26", + "1", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172497", + "172497", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086869", + "1483086870", + "1483086891", + "1483086869", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172593", + "172593", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087493", + "1483087494", + "1483087518", + "1483087493", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172666", + "172666", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087949", + "1483087950", + "1483087968", + "1483087949", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172685", + "172685", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088017", + "1483088018", + "1483088034", + "1483088017", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172755", + "172755", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088386", + "1483088387", + "1483088402", + "1483088386", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172985", + "172985", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089779", + "1483089780", + "1483089795", + "1483089779", + "1", + "8", + "0", + "-1", + "15", + "1", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173021", + "173021", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089939", + "1483089940", + "1483089959", + "1483089939", + "1", + "8", + "0", + "-1", + "19", + "1", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173066", + "173066", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090173", + "1483090174", + "1483090197", + "1483090173", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173208", + "173208", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091281", + "1483091282", + "1483091302", + "1483091281", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173218", + "173218", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091326", + "1483091327", + "1483091350", + "1483091326", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173353", + "173353", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092093", + "1483092094", + "1483092110", + "1483092093", + "1", + "8", + "0", + "-1", + "16", + "1", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173513", + "173513", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093000", + "1483093001", + "1483093025", + "1483093000", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173525", + "173525", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093043", + "1483093044", + "1483093065", + "1483093043", + "1", + "8", + "0", + "-1", + "21", + "1", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173809", + "173809", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095158", + "1483095159", + "1483095183", + "1483095158", + "1", + "8", + "0", + "-1", + "24", + "1", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174061", + "174061", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097153", + "1483097154", + "1483097177", + "1483097153", + "1", + "8", + "0", + "-1", + "23", + "1", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174190", + "174190", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098102", + "1483098103", + "1483098131", + "1483098102", + "1", + "8", + "0", + "-1", + "28", + "1", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174835", + "174835", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103033", + "1483103034", + "1483103051", + "1483103033", + "1", + "8", + "0", + "-1", + "17", + "1", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175480", + "175480", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108246", + "1483108247", + "1483108265", + "1483108246", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175513", + "175513", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108405", + "1483108406", + "1483108426", + "1483108405", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176073", + "176073", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112848", + "1483112849", + "1483112876", + "1483112848", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176230", + "176230", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114048", + "1483114049", + "1483114067", + "1483114048", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176239", + "176239", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114100", + "1483114101", + "1483114121", + "1483114100", + "1", + "8", + "0", + "-1", + "20", + "1", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176541", + "176541", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116042", + "1483116043", + "1483116070", + "1483116042", + "1", + "8", + "0", + "-1", + "27", + "1", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "1004480", + "1004480", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483059241", + "1483059266", + "1483059279", + "1483059241", + "1", + "8", + "0", + "-1", + "13", + "25", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004562", + "1004562", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483060223", + "1483060227", + "1483060234", + "1483060223", + "1", + "8", + "0", + "-1", + "7", + "4", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004584", + "1004584", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483060445", + "1483060468", + "1483060491", + "1483060445", + "1", + "8", + "0", + "-1", + "23", + "23", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004750", + "1004750", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483062978", + "1483062992", + "1483063008", + "1483062978", + "1", + "8", + "0", + "-1", + "16", + "14", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005003", + "1005003", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483066696", + "1483066718", + "1483066747", + "1483066696", + "1", + "8", + "0", + "-1", + "29", + "22", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005034", + "1005034", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067310", + "1483067319", + "1483067336", + "1483067310", + "1", + "8", + "0", + "-1", + "17", + "9", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005049", + "1005049", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067665", + "1483067687", + "1483067695", + "1483067665", + "1", + "8", + "0", + "-1", + "8", + "22", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005212", + "1005212", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483069489", + "1483069490", + "1483069502", + "1483069489", + "1", + "8", + "0", + "-1", + "12", + "1", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005246", + "1005246", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483069957", + "1483069971", + "1483069987", + "1483069957", + "1", + "8", + "0", + "-1", + "16", + "14", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005404", + "1005404", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483072118", + "1483072135", + "1483072163", + "1483072118", + "1", + "8", + "0", + "-1", + "28", + "17", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005415", + "1005415", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483072355", + "1483072375", + "1483072393", + "1483072355", + "1", + "8", + "0", + "-1", + "18", + "20", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005545", + "1005545", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483074149", + "1483074178", + "1483074205", + "1483074149", + "1", + "8", + "0", + "-1", + "27", + "29", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005594", + "1005594", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483074874", + "1483074899", + "1483074928", + "1483074874", + "1", + "8", + "0", + "-1", + "29", + "25", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005688", + "1005688", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483075965", + "1483075981", + "1483075993", + "1483075965", + "1", + "8", + "0", + "-1", + "12", + "16", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005713", + "1005713", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483076335", + "1483076342", + "1483076349", + "1483076335", + "1", + "8", + "0", + "-1", + "7", + "7", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005818", + "1005818", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483077883", + "1483077904", + "1483077928", + "1483077883", + "1", + "8", + "0", + "-1", + "24", + "21", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005819", + "1005819", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483077896", + "1483077904", + "1483077913", + "1483077896", + "1", + "8", + "0", + "-1", + "9", + "8", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005859", + "1005859", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483078372", + "1483078385", + "1483078394", + "1483078372", + "1", + "8", + "0", + "-1", + "9", + "13", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005903", + "1005903", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483078840", + "1483078866", + "1483078875", + "1483078840", + "1", + "8", + "0", + "-1", + "9", + "26", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006074", + "1006074", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483081016", + "1483081030", + "1483081036", + "1483081016", + "1", + "8", + "0", + "-1", + "6", + "14", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006410", + "1006410", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483085697", + "1483085717", + "1483085745", + "1483085697", + "1", + "8", + "0", + "-1", + "28", + "20", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006558", + "1006558", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483087856", + "1483087881", + "1483087910", + "1483087856", + "1", + "8", + "0", + "-1", + "29", + "25", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006789", + "1006789", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483091097", + "1483091126", + "1483091133", + "1483091097", + "1", + "8", + "0", + "-1", + "7", + "29", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006790", + "1006790", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483091114", + "1483091126", + "1483091152", + "1483091114", + "1", + "8", + "0", + "-1", + "26", + "12", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006937", + "1006937", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093037", + "1483093049", + "1483093078", + "1483093037", + "1", + "8", + "0", + "-1", + "29", + "12", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006996", + "1006996", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093764", + "1483093770", + "1483093792", + "1483093764", + "1", + "8", + "0", + "-1", + "22", + "6", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007082", + "1007082", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483094961", + "1483094972", + "1483094983", + "1483094961", + "1", + "8", + "0", + "-1", + "11", + "11", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007135", + "1007135", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483095684", + "1483095693", + "1483095721", + "1483095684", + "1", + "8", + "0", + "-1", + "28", + "9", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007216", + "1007216", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483096750", + "1483096774", + "1483096803", + "1483096750", + "1", + "8", + "0", + "-1", + "29", + "24", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007218", + "1007218", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483096772", + "1483096774", + "1483096786", + "1483096772", + "1", + "8", + "0", + "-1", + "12", + "2", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007275", + "1007275", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483097363", + "1483097375", + "1483097393", + "1483097363", + "1", + "8", + "0", + "-1", + "18", + "12", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007732", + "1007732", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483104105", + "1483104107", + "1483104113", + "1483104105", + "1", + "8", + "0", + "-1", + "6", + "2", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008017", + "1008017", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483108053", + "1483108074", + "1483108081", + "1483108053", + "1", + "8", + "0", + "-1", + "7", + "21", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008228", + "1008228", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483111192", + "1483111200", + "1483111210", + "1483111192", + "1", + "8", + "0", + "-1", + "10", + "8", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008273", + "1008273", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483111774", + "1483111801", + "1483111815", + "1483111774", + "1", + "8", + "0", + "-1", + "14", + "27", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008309", + "1008309", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483112273", + "1483112282", + "1483112289", + "1483112273", + "1", + "8", + "0", + "-1", + "7", + "9", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008418", + "1008418", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483113696", + "1483113724", + "1483113752", + "1483113696", + "1", + "8", + "0", + "-1", + "28", + "28", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008445", + "1008445", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483114298", + "1483114325", + "1483114331", + "1483114298", + "1", + "8", + "0", + "-1", + "6", + "27", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008582", + "1008582", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483116344", + "1483116368", + "1483116392", + "1483116344", + "1", + "8", + "0", + "-1", + "24", + "24", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008649", + "1008649", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483116821", + "1483116849", + "1483116862", + "1483116821", + "1", + "8", + "0", + "-1", + "13", + "28", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008917", + "1008917", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483119118", + "1483119133", + "1483119141", + "1483119118", + "1", + "8", + "0", + "-1", + "8", + "15", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008964", + "1008964", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483119492", + "1483119493", + "1483119511", + "1483119492", + "1", + "8", + "0", + "-1", + "18", + "1", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008993", + "1008993", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483119707", + "1483119733", + "1483119761", + "1483119707", + "1", + "8", + "0", + "-1", + "28", + "26", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009356", + "1009356", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483123450", + "1483123458", + "1483123466", + "1483123450", + "1", + "8", + "0", + "-1", + "8", + "8", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009467", + "1009467", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124756", + "1483124780", + "1483124809", + "1483124756", + "1", + "8", + "0", + "-1", + "29", + "24", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009584", + "1009584", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126320", + "1483126342", + "1483126351", + "1483126320", + "1", + "8", + "0", + "-1", + "9", + "22", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009600", + "1009600", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126556", + "1483126582", + "1483126590", + "1483126556", + "1", + "8", + "0", + "-1", + "8", + "26", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009718", + "1009718", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483128254", + "1483128265", + "1483128276", + "1483128254", + "1", + "8", + "0", + "-1", + "11", + "11", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010004", + "1010004", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483131847", + "1483131869", + "1483131889", + "1483131847", + "1", + "8", + "0", + "-1", + "20", + "22", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010099", + "1010099", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133181", + "1483133191", + "1483133203", + "1483133181", + "1", + "8", + "0", + "-1", + "12", + "10", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010142", + "1010142", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133648", + "1483133672", + "1483133677", + "1483133648", + "1", + "8", + "0", + "-1", + "5", + "24", + "40", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010190", + "1010190", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483134377", + "1483134392", + "1483134400", + "1483134377", + "1", + "8", + "0", + "-1", + "8", + "15", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010215", + "1010215", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483134742", + "1483134753", + "1483134780", + "1483134742", + "1", + "8", + "0", + "-1", + "27", + "11", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010244", + "1010244", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483135095", + "1483135113", + "1483135134", + "1483135095", + "1", + "8", + "0", + "-1", + "21", + "18", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010306", + "1010306", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483135813", + "1483135834", + "1483135860", + "1483135813", + "1", + "8", + "0", + "-1", + "26", + "21", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010658", + "1010658", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140620", + "1483140640", + "1483140656", + "1483140620", + "1", + "8", + "0", + "-1", + "16", + "20", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010675", + "1010675", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140865", + "1483140881", + "1483140905", + "1483140865", + "1", + "8", + "0", + "-1", + "24", + "16", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006471", + "1006471", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483086629", + "1483086630", + "1483086652", + "1483086629", + "1", + "8", + "0", + "-1", + "22", + "1", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009156", + "1009156", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483121371", + "1483121375", + "1483121404", + "1483121371", + "1", + "8", + "0", + "-1", + "29", + "4", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "2281771", + "2281771", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114012", + "1483114013", + "1483114023", + "1483114012", + "1", + "12", + "0", + "-1", + "10", + "1", + "120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281976", + "2281976", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115748", + "1483115749", + "1483115757", + "1483115748", + "1", + "12", + "0", + "-1", + "8", + "1", + "96", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283356", + "2283356", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127270", + "1483127271", + "1483127282", + "1483127270", + "1", + "12", + "0", + "-1", + "11", + "1", + "132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284510", + "2284510", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138619", + "1483138620", + "1483138631", + "1483138619", + "1", + "12", + "0", + "-1", + "11", + "1", + "132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284670", + "2284670", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140308", + "1483140309", + "1483140321", + "1483140308", + "1", + "12", + "0", + "-1", + "12", + "1", + "144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991371", + "991371", + "Mortorq", + "UTC", + "", + "Martin, Crag", + "Screwdriver", + "cheese", + "1483129165", + "1483129170", + "1483129172", + "1483129165", + "1", + "20", + "0", + "-1", + "2", + "5", + "40", + "0", + "0:0", + "COMPLETED", + "1", + "62.50Gn", + "259200", + "panettone", + "Geosciences", + "Earth Sciences", + "Geophysics" + ], + [ + "991464", + "991464", + "Mortorq", + "UTC", + "", + "Martin, Crag", + "Screwdriver", + "cheese", + "1483129587", + "1483129591", + "1483129595", + "1483129587", + "1", + "20", + "0", + "-1", + "4", + "4", + "80", + "0", + "0:0", + "COMPLETED", + "1", + "62.50Gn", + "259200", + "panettone", + "Geosciences", + "Earth Sciences", + "Geophysics" + ], + [ + "1008512", + "1008512", + "Posidriv", + "UTC", + "", + "Shrike, Long-tailed", + "Screwdriver", + "banana-cream", + "1483115256", + "1483115259", + "1483115275", + "1483115256", + "1", + "20", + "0", + "-1", + "16", + "3", + "320", + "0", + "0:0", + "COMPLETED", + "20", + "2147490048Mn", + "259200", + "bannock", + "Engineering", + "Electrical and Communication Systems", + "Quantum Electronics, Waves, and Beams" + ], + [ + "1008485", + "1008485", + "Posidriv", + "UTC", + "", + "Shrike, Long-tailed", + "Screwdriver", + "butter", + "1483114756", + "1483114759", + "1483114773", + "1483114756", + "1", + "20", + "0", + "-1", + "14", + "3", + "280", + "0", + "0:0", + "COMPLETED", + "20", + "2147490048Mn", + "259200", + "bannock", + "Engineering", + "Electrical and Communication Systems", + "Quantum Electronics, Waves, and Beams" + ], + [ + "1008494", + "1008494", + "Posidriv", + "UTC", + "", + "Shrike, Long-tailed", + "Screwdriver", + "butter", + "1483114970", + "1483114974", + "1483114988", + "1483114970", + "1", + "20", + "0", + "-1", + "14", + "4", + "280", + "0", + "0:0", + "COMPLETED", + "20", + "2147490048Mn", + "259200", + "bannock", + "Engineering", + "Electrical and Communication Systems", + "Quantum Electronics, Waves, and Beams" + ], + [ + "1007845", + "1007845", + "Posidriv", + "UTC", + "", + "Warbler, Sardinian", + "Screwdriver", + "apple", + "1483105711", + "1483105714", + "1483105719", + "1483105711", + "2", + "16", + "0", + "-1", + "5", + "3", + "80", + "0", + "0:0", + "COMPLETED", + "16", + "40000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "6108348", + "6108348", + "Robertson", + "UTC", + "", + "Warbler, Golden-winged", + "Screwdriver", + "green-grape", + "1483057648", + "1483057651", + "1483057672", + "1483057648", + "2", + "24", + "0", + "-1", + "21", + "3", + "504", + "0", + "0:0", + "COMPLETED", + "24", + "2147486448Mn", + "3600", + "potbrood", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Economics" + ], + [ + "6108751", + "6108751", + "Robertson", + "UTC", + "", + "Moorhen", + "Screwdriver", + "curry", + "1483072813", + "1483072876", + "1483072889", + "1483072813", + "1", + "1", + "0", + "-1", + "13", + "63", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "18000", + "white", + "Computer and Information Science and Engineering", + "Microelectronic Information Processing Systems", + "Systems Prototyping and Fabrication" + ], + [ + "6108752", + "6108752", + "Robertson", + "UTC", + "", + "Moorhen", + "Screwdriver", + "curry", + "1483072827", + "1483072876", + "1483072890", + "1483072827", + "1", + "1", + "0", + "-1", + "14", + "49", + "14", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "19800", + "white", + "Computer and Information Science and Engineering", + "Microelectronic Information Processing Systems", + "Systems Prototyping and Fabrication" + ], + [ + "6111037[50]", + "6111088", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483126383", + "1483126395", + "1483125913", + "1", + "1", + "0", + "-1", + "12", + "471", + "12", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[55]", + "6111093", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483126383", + "1483126409", + "1483125913", + "1", + "1", + "0", + "-1", + "26", + "471", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[119]", + "6111163", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483126944", + "1483126962", + "1483125913", + "1", + "1", + "0", + "-1", + "18", + "1032", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[120]", + "6111164", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483126944", + "1483126962", + "1483125913", + "1", + "1", + "0", + "-1", + "18", + "1032", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[141]", + "6111187", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127093", + "1483127107", + "1483125913", + "1", + "1", + "0", + "-1", + "14", + "1181", + "14", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[185]", + "6111235", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127515", + "1483127542", + "1483125913", + "1", + "1", + "0", + "-1", + "27", + "1603", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[186]", + "6111236", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127515", + "1483127526", + "1483125913", + "1", + "1", + "0", + "-1", + "11", + "1603", + "11", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[198]", + "6111248", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127515", + "1483127530", + "1483125913", + "1", + "1", + "0", + "-1", + "15", + "1603", + "15", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[203]", + "6111253", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127653", + "1483127676", + "1483125913", + "1", + "1", + "0", + "-1", + "23", + "1741", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[2]", + "6111643", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130279", + "1483130306", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "1719", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112235", + "6112235", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483134122", + "1483134408", + "1483134426", + "1483134122", + "1", + "1", + "0", + "-1", + "18", + "286", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "2147531648Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112280", + "6112280", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483134462", + "1483134542", + "1483134563", + "1483134462", + "1", + "1", + "0", + "-1", + "21", + "80", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[2]", + "6112285", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135712", + "1483135739", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "64", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[10]", + "6112293", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135840", + "1483135853", + "1483135648", + "1", + "1", + "0", + "-1", + "13", + "192", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[15]", + "6112298", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135840", + "1483135868", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "192", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[16]", + "6112299", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135840", + "1483135866", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "192", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[17]", + "6112300", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135968", + "1483135989", + "1483135648", + "1", + "1", + "0", + "-1", + "21", + "320", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[22]", + "6112305", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483135968", + "1483135997", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "320", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[25]", + "6112309", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483136098", + "1483136123", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "450", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[37]", + "6112321", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483136228", + "1483136255", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "580", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[45]", + "6112332", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483136627", + "1483136638", + "1483135648", + "1", + "1", + "0", + "-1", + "11", + "979", + "11", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[50]", + "6112338", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483136905", + "1483136908", + "1483135648", + "1", + "1", + "0", + "-1", + "3", + "1257", + "3", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[52]", + "6112340", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137041", + "1483137058", + "1483135648", + "1", + "1", + "0", + "-1", + "17", + "1393", + "17", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[55]", + "6112343", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137176", + "1483137195", + "1483135648", + "1", + "1", + "0", + "-1", + "19", + "1528", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[61]", + "6112349", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137306", + "1483137334", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "1658", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[64]", + "6112352", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137306", + "1483137335", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "1658", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[66]", + "6112354", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137306", + "1483137335", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "1658", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[78]", + "6112366", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137438", + "1483137467", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "1790", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[84]", + "6112372", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137438", + "1483137464", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "1790", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6110915[4]", + "6110925", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122066", + "1483122574", + "1483122578", + "1483122068", + "1", + "1", + "0", + "-1", + "4", + "508", + "4", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110916[4]", + "6110963", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122115", + "1483122967", + "1483122975", + "1483122115", + "1", + "1", + "0", + "-1", + "8", + "852", + "8", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110916[7]", + "6110996", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122115", + "1483123513", + "1483123523", + "1483122115", + "1", + "1", + "0", + "-1", + "10", + "1398", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110917[4]", + "6111000", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122187", + "1483123513", + "1483123523", + "1483122187", + "1", + "1", + "0", + "-1", + "10", + "1326", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "72000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110917[7]", + "6111003", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122187", + "1483123513", + "1483123525", + "1483122187", + "1", + "1", + "0", + "-1", + "12", + "1326", + "12", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "72000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110918[4]", + "6111008", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122225", + "1483123648", + "1483123658", + "1483122231", + "1", + "1", + "0", + "-1", + "10", + "1423", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110918[7]", + "6111011", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483122225", + "1483123789", + "1483123798", + "1483122231", + "1", + "1", + "0", + "-1", + "9", + "1564", + "9", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "985392", + "985392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116330", + "1483116373", + "1483116394", + "1483116330", + "1", + "8", + "0", + "-1", + "21", + "43", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985396", + "985396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116330", + "1483116379", + "1483116400", + "1483116330", + "1", + "8", + "0", + "-1", + "21", + "49", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985398", + "985398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116331", + "1483116380", + "1483116401", + "1483116331", + "1", + "8", + "0", + "-1", + "21", + "49", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985414", + "985414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116333", + "1483116428", + "1483116457", + "1483116333", + "1", + "8", + "0", + "-1", + "29", + "95", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985420", + "985420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116333", + "1483116460", + "1483116485", + "1483116333", + "1", + "8", + "0", + "-1", + "25", + "127", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985440", + "985440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116336", + "1483116510", + "1483116539", + "1483116336", + "1", + "8", + "0", + "-1", + "29", + "174", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985444", + "985444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116336", + "1483116531", + "1483116551", + "1483116336", + "1", + "8", + "0", + "-1", + "20", + "195", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985464", + "985464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116340", + "1483116569", + "1483116592", + "1483116340", + "1", + "8", + "0", + "-1", + "23", + "229", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985468", + "985468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116340", + "1483116593", + "1483116620", + "1483116340", + "1", + "8", + "0", + "-1", + "27", + "253", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985472", + "985472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116341", + "1483116599", + "1483116625", + "1483116341", + "1", + "8", + "0", + "-1", + "26", + "258", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985476", + "985476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116341", + "1483116606", + "1483116627", + "1483116341", + "1", + "8", + "0", + "-1", + "21", + "265", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985480", + "985480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116342", + "1483116625", + "1483116647", + "1483116342", + "1", + "8", + "0", + "-1", + "22", + "283", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985484", + "985484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116342", + "1483116647", + "1483116670", + "1483116342", + "1", + "8", + "0", + "-1", + "23", + "305", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985500", + "985500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116344", + "1483116683", + "1483116711", + "1483116344", + "1", + "8", + "0", + "-1", + "28", + "339", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985506", + "985506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116345", + "1483116705", + "1483116729", + "1483116345", + "1", + "8", + "0", + "-1", + "24", + "360", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985518", + "985518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116347", + "1483116763", + "1483116791", + "1483116347", + "1", + "8", + "0", + "-1", + "28", + "416", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985522", + "985522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116347", + "1483116773", + "1483116801", + "1483116347", + "1", + "8", + "0", + "-1", + "28", + "426", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985526", + "985526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116348", + "1483116786", + "1483116815", + "1483116348", + "1", + "8", + "0", + "-1", + "29", + "438", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985546", + "985546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116351", + "1483116857", + "1483116878", + "1483116351", + "1", + "8", + "0", + "-1", + "21", + "506", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985554", + "985554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116352", + "1483116896", + "1483116914", + "1483116352", + "1", + "8", + "0", + "-1", + "18", + "544", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985562", + "985562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116353", + "1483116914", + "1483116943", + "1483116353", + "1", + "8", + "0", + "-1", + "29", + "561", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985564", + "985564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116353", + "1483116915", + "1483116938", + "1483116353", + "1", + "8", + "0", + "-1", + "23", + "562", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985570", + "985570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116354", + "1483116922", + "1483116941", + "1483116354", + "1", + "8", + "0", + "-1", + "19", + "568", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985572", + "985572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116354", + "1483116924", + "1483116945", + "1483116354", + "1", + "8", + "0", + "-1", + "21", + "570", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985575", + "985575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116355", + "1483116933", + "1483116962", + "1483116355", + "1", + "8", + "0", + "-1", + "29", + "578", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985589", + "985589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116357", + "1483116962", + "1483116988", + "1483116357", + "1", + "8", + "0", + "-1", + "26", + "605", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985595", + "985595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116358", + "1483116983", + "1483117004", + "1483116358", + "1", + "8", + "0", + "-1", + "21", + "625", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985597", + "985597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116358", + "1483116989", + "1483117018", + "1483116358", + "1", + "8", + "0", + "-1", + "29", + "631", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985602", + "985602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116359", + "1483117005", + "1483117026", + "1483116359", + "1", + "8", + "0", + "-1", + "21", + "646", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985604", + "985604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116359", + "1483117006", + "1483117035", + "1483116359", + "1", + "8", + "0", + "-1", + "29", + "647", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985607", + "985607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116360", + "1483117014", + "1483117033", + "1483116360", + "1", + "8", + "0", + "-1", + "19", + "654", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985609", + "985609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116360", + "1483117019", + "1483117048", + "1483116360", + "1", + "8", + "0", + "-1", + "29", + "659", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985625", + "985625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116363", + "1483117036", + "1483117061", + "1483116363", + "1", + "8", + "0", + "-1", + "25", + "673", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985627", + "985627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116363", + "1483117049", + "1483117073", + "1483116363", + "1", + "8", + "0", + "-1", + "24", + "686", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985630", + "985630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116363", + "1483117061", + "1483117080", + "1483116363", + "1", + "8", + "0", + "-1", + "19", + "698", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985633", + "985633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116364", + "1483117065", + "1483117092", + "1483116364", + "1", + "8", + "0", + "-1", + "27", + "701", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985635", + "985635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116364", + "1483117066", + "1483117091", + "1483116364", + "1", + "8", + "0", + "-1", + "25", + "702", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985638", + "985638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116365", + "1483117071", + "1483117090", + "1483116365", + "1", + "8", + "0", + "-1", + "19", + "706", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985640", + "985640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116365", + "1483117074", + "1483117096", + "1483116365", + "1", + "8", + "0", + "-1", + "22", + "709", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985643", + "985643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116365", + "1483117076", + "1483117096", + "1483116365", + "1", + "8", + "0", + "-1", + "20", + "711", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985645", + "985645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116366", + "1483117081", + "1483117099", + "1483116366", + "1", + "8", + "0", + "-1", + "18", + "715", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985648", + "985648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116366", + "1483117091", + "1483117118", + "1483116366", + "1", + "8", + "0", + "-1", + "27", + "725", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985650", + "985650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116366", + "1483117092", + "1483117117", + "1483116366", + "1", + "8", + "0", + "-1", + "25", + "726", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985663", + "985663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116368", + "1483117118", + "1483117142", + "1483116368", + "1", + "8", + "0", + "-1", + "24", + "750", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985666", + "985666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116369", + "1483117119", + "1483117148", + "1483116369", + "1", + "8", + "0", + "-1", + "29", + "750", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985668", + "985668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116369", + "1483117128", + "1483117147", + "1483116369", + "1", + "8", + "0", + "-1", + "19", + "759", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985681", + "985681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116371", + "1483117146", + "1483117163", + "1483116371", + "1", + "8", + "0", + "-1", + "17", + "775", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985699", + "985699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116374", + "1483117176", + "1483117205", + "1483116374", + "1", + "8", + "0", + "-1", + "29", + "802", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985701", + "985701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116374", + "1483117178", + "1483117197", + "1483116374", + "1", + "8", + "0", + "-1", + "19", + "804", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985704", + "985704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116375", + "1483117181", + "1483117203", + "1483116375", + "1", + "8", + "0", + "-1", + "22", + "806", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985706", + "985706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116375", + "1483117183", + "1483117209", + "1483116375", + "1", + "8", + "0", + "-1", + "26", + "808", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985714", + "985714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116376", + "1483117199", + "1483117222", + "1483116376", + "1", + "8", + "0", + "-1", + "23", + "823", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985719", + "985719", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116377", + "1483117205", + "1483117225", + "1483116377", + "1", + "8", + "0", + "-1", + "20", + "828", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985721", + "985721", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116377", + "1483117210", + "1483117227", + "1483116377", + "1", + "8", + "0", + "-1", + "17", + "833", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985724", + "985724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116378", + "1483117214", + "1483117234", + "1483116378", + "1", + "8", + "0", + "-1", + "20", + "836", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985726", + "985726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116378", + "1483117222", + "1483117246", + "1483116378", + "1", + "8", + "0", + "-1", + "24", + "844", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985736", + "985736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116380", + "1483117235", + "1483117261", + "1483116380", + "1", + "8", + "0", + "-1", + "26", + "855", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985741", + "985741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116381", + "1483117246", + "1483117270", + "1483116381", + "1", + "8", + "0", + "-1", + "24", + "865", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985743", + "985743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116381", + "1483117257", + "1483117284", + "1483116381", + "1", + "8", + "0", + "-1", + "27", + "876", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985745", + "985745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116381", + "1483117262", + "1483117288", + "1483116381", + "1", + "8", + "0", + "-1", + "26", + "881", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985750", + "985750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116382", + "1483117280", + "1483117309", + "1483116382", + "1", + "8", + "0", + "-1", + "29", + "898", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985753", + "985753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116382", + "1483117285", + "1483117313", + "1483116382", + "1", + "8", + "0", + "-1", + "28", + "903", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985820", + "985820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116393", + "1483117514", + "1483117540", + "1483116393", + "1", + "8", + "0", + "-1", + "26", + "1121", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985948", + "985948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116413", + "1483118095", + "1483118124", + "1483116413", + "1", + "8", + "0", + "-1", + "29", + "1682", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985953", + "985953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116414", + "1483118102", + "1483118129", + "1483116414", + "1", + "8", + "0", + "-1", + "27", + "1688", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986003", + "986003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116422", + "1483118206", + "1483118227", + "1483116422", + "1", + "8", + "0", + "-1", + "21", + "1784", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176671", + "176671", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116339", + "1483116416", + "1483116441", + "1483116339", + "1", + "8", + "0", + "-1", + "25", + "77", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176673", + "176673", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116339", + "1483116441", + "1483116465", + "1483116339", + "1", + "8", + "0", + "-1", + "24", + "102", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176675", + "176675", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116339", + "1483116465", + "1483116487", + "1483116339", + "1", + "8", + "0", + "-1", + "22", + "126", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176677", + "176677", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116339", + "1483116487", + "1483116508", + "1483116339", + "1", + "8", + "0", + "-1", + "21", + "148", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176726", + "176726", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116352", + "1483116508", + "1483116522", + "1483116352", + "1", + "8", + "0", + "-1", + "14", + "156", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176734", + "176734", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116353", + "1483116552", + "1483116577", + "1483116353", + "1", + "8", + "0", + "-1", + "25", + "199", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176737", + "176737", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116354", + "1483116578", + "1483116593", + "1483116354", + "1", + "8", + "0", + "-1", + "15", + "224", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176741", + "176741", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116355", + "1483116593", + "1483116612", + "1483116355", + "1", + "8", + "0", + "-1", + "19", + "238", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176746", + "176746", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116356", + "1483116612", + "1483116636", + "1483116356", + "1", + "8", + "0", + "-1", + "24", + "256", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176750", + "176750", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116357", + "1483116636", + "1483116656", + "1483116357", + "1", + "8", + "0", + "-1", + "20", + "279", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176754", + "176754", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116357", + "1483116657", + "1483116677", + "1483116357", + "1", + "8", + "0", + "-1", + "20", + "300", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176757", + "176757", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116358", + "1483116677", + "1483116698", + "1483116358", + "1", + "8", + "0", + "-1", + "21", + "319", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176762", + "176762", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116359", + "1483116698", + "1483116712", + "1483116359", + "1", + "8", + "0", + "-1", + "14", + "339", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176766", + "176766", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116360", + "1483116712", + "1483116724", + "1483116360", + "1", + "8", + "0", + "-1", + "12", + "352", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176770", + "176770", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116360", + "1483116725", + "1483116745", + "1483116360", + "1", + "8", + "0", + "-1", + "20", + "365", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176777", + "176777", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116362", + "1483116780", + "1483116804", + "1483116362", + "1", + "8", + "0", + "-1", + "24", + "418", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176781", + "176781", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116362", + "1483116805", + "1483116821", + "1483116362", + "1", + "8", + "0", + "-1", + "16", + "443", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176785", + "176785", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116363", + "1483116822", + "1483116836", + "1483116363", + "1", + "8", + "0", + "-1", + "14", + "459", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176788", + "176788", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116364", + "1483116837", + "1483116849", + "1483116364", + "1", + "8", + "0", + "-1", + "12", + "473", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176792", + "176792", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116364", + "1483116849", + "1483116874", + "1483116364", + "1", + "8", + "0", + "-1", + "25", + "485", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176796", + "176796", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116365", + "1483116874", + "1483116896", + "1483116365", + "1", + "8", + "0", + "-1", + "22", + "509", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176800", + "176800", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116366", + "1483116896", + "1483116912", + "1483116366", + "1", + "8", + "0", + "-1", + "16", + "530", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176804", + "176804", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116367", + "1483116912", + "1483116932", + "1483116367", + "1", + "8", + "0", + "-1", + "20", + "545", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176815", + "176815", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116369", + "1483117033", + "1483117054", + "1483116369", + "1", + "8", + "0", + "-1", + "21", + "664", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176819", + "176819", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116369", + "1483117054", + "1483117074", + "1483116369", + "1", + "8", + "0", + "-1", + "20", + "685", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176822", + "176822", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116370", + "1483117075", + "1483117094", + "1483116370", + "1", + "8", + "0", + "-1", + "19", + "705", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176826", + "176826", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116371", + "1483117095", + "1483117121", + "1483116371", + "1", + "8", + "0", + "-1", + "26", + "724", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176830", + "176830", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116372", + "1483117121", + "1483117134", + "1483116372", + "1", + "8", + "0", + "-1", + "13", + "749", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176834", + "176834", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116372", + "1483117135", + "1483117164", + "1483116372", + "1", + "8", + "0", + "-1", + "29", + "763", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176837", + "176837", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116373", + "1483117164", + "1483117193", + "1483116373", + "1", + "8", + "0", + "-1", + "29", + "791", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176842", + "176842", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116374", + "1483117193", + "1483117219", + "1483116374", + "1", + "8", + "0", + "-1", + "26", + "819", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176846", + "176846", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116375", + "1483117220", + "1483117238", + "1483116375", + "1", + "8", + "0", + "-1", + "18", + "845", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176850", + "176850", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116375", + "1483117239", + "1483117254", + "1483116375", + "1", + "8", + "0", + "-1", + "15", + "864", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176853", + "176853", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116376", + "1483117254", + "1483117274", + "1483116376", + "1", + "8", + "0", + "-1", + "20", + "878", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176857", + "176857", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116377", + "1483117274", + "1483117294", + "1483116377", + "1", + "8", + "0", + "-1", + "20", + "897", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176862", + "176862", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116378", + "1483117294", + "1483117306", + "1483116378", + "1", + "8", + "0", + "-1", + "12", + "916", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176866", + "176866", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116378", + "1483117306", + "1483117324", + "1483116378", + "1", + "8", + "0", + "-1", + "18", + "928", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176870", + "176870", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116379", + "1483117325", + "1483117346", + "1483116379", + "1", + "8", + "0", + "-1", + "21", + "946", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176875", + "176875", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116380", + "1483117347", + "1483117365", + "1483116380", + "1", + "8", + "0", + "-1", + "18", + "967", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176880", + "176880", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116381", + "1483117366", + "1483117395", + "1483116381", + "1", + "8", + "0", + "-1", + "29", + "985", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176891", + "176891", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116383", + "1483117467", + "1483117495", + "1483116383", + "1", + "8", + "0", + "-1", + "28", + "1084", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176895", + "176895", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116384", + "1483117495", + "1483117517", + "1483116384", + "1", + "8", + "0", + "-1", + "22", + "1111", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176901", + "176901", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116385", + "1483117556", + "1483117582", + "1483116385", + "1", + "8", + "0", + "-1", + "26", + "1171", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176921", + "176921", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116389", + "1483117738", + "1483117767", + "1483116389", + "1", + "8", + "0", + "-1", + "29", + "1349", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176943", + "176943", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116393", + "1483117976", + "1483117994", + "1483116393", + "1", + "8", + "0", + "-1", + "18", + "1583", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176952", + "176952", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116395", + "1483118026", + "1483118048", + "1483116395", + "1", + "8", + "0", + "-1", + "22", + "1631", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176963", + "176963", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116397", + "1483118136", + "1483118165", + "1483116397", + "1", + "8", + "0", + "-1", + "29", + "1739", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "1004250", + "1004250", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483056101", + "1483056141", + "1483056160", + "1483056101", + "1", + "8", + "0", + "-1", + "19", + "40", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004277", + "1004277", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483056525", + "1483056621", + "1483056636", + "1483056525", + "1", + "8", + "0", + "-1", + "15", + "96", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004291", + "1004291", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483056675", + "1483056742", + "1483056759", + "1483056675", + "1", + "8", + "0", + "-1", + "17", + "67", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004332", + "1004332", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483057243", + "1483057343", + "1483057358", + "1483057243", + "1", + "8", + "0", + "-1", + "15", + "100", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004336", + "1004336", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483057290", + "1483057343", + "1483057371", + "1483057290", + "1", + "8", + "0", + "-1", + "28", + "53", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004376", + "1004376", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483057838", + "1483057943", + "1483057950", + "1483057838", + "1", + "8", + "0", + "-1", + "7", + "105", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004379", + "1004379", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483057938", + "1483058064", + "1483058077", + "1483057938", + "1", + "8", + "0", + "-1", + "13", + "126", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004392", + "1004392", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058149", + "1483058184", + "1483058196", + "1483058149", + "1", + "8", + "0", + "-1", + "12", + "35", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004416", + "1004416", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058366", + "1483058424", + "1483058434", + "1483058366", + "1", + "8", + "0", + "-1", + "10", + "58", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004417", + "1004417", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058388", + "1483058424", + "1483058451", + "1483058388", + "1", + "8", + "0", + "-1", + "27", + "36", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004425", + "1004425", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058553", + "1483058665", + "1483058683", + "1483058553", + "1", + "8", + "0", + "-1", + "18", + "112", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004427", + "1004427", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058577", + "1483058665", + "1483058694", + "1483058577", + "1", + "8", + "0", + "-1", + "29", + "88", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004428", + "1004428", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058587", + "1483058665", + "1483058691", + "1483058587", + "1", + "8", + "0", + "-1", + "26", + "78", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004435", + "1004435", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058669", + "1483058785", + "1483058804", + "1483058669", + "1", + "8", + "0", + "-1", + "19", + "116", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004449", + "1004449", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058865", + "1483058905", + "1483058916", + "1483058865", + "1", + "8", + "0", + "-1", + "11", + "40", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004450", + "1004450", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483058878", + "1483059025", + "1483059033", + "1483058878", + "1", + "8", + "0", + "-1", + "8", + "147", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004486", + "1004486", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483059270", + "1483059386", + "1483059402", + "1483059270", + "1", + "8", + "0", + "-1", + "16", + "116", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004491", + "1004491", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483059329", + "1483059386", + "1483059399", + "1483059329", + "1", + "8", + "0", + "-1", + "13", + "57", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004547", + "1004547", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483060049", + "1483060107", + "1483060116", + "1483060049", + "1", + "8", + "0", + "-1", + "9", + "58", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004637", + "1004637", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483061076", + "1483061189", + "1483061201", + "1483061076", + "1", + "8", + "0", + "-1", + "12", + "113", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004666", + "1004666", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483061431", + "1483061549", + "1483061559", + "1483061431", + "1", + "8", + "0", + "-1", + "10", + "118", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004669", + "1004669", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483061467", + "1483061549", + "1483061561", + "1483061467", + "1", + "8", + "0", + "-1", + "12", + "82", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004689", + "1004689", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483061885", + "1483062030", + "1483062052", + "1483061885", + "1", + "8", + "0", + "-1", + "22", + "145", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004747", + "1004747", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483062889", + "1483062992", + "1483062998", + "1483062889", + "1", + "8", + "0", + "-1", + "6", + "103", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004761", + "1004761", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483063074", + "1483063112", + "1483063127", + "1483063074", + "1", + "8", + "0", + "-1", + "15", + "38", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004777", + "1004777", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483063256", + "1483063352", + "1483063374", + "1483063256", + "1", + "8", + "0", + "-1", + "22", + "96", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004778", + "1004778", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483063285", + "1483063352", + "1483063380", + "1483063285", + "1", + "8", + "0", + "-1", + "28", + "67", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004801", + "1004801", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483063607", + "1483063713", + "1483063728", + "1483063607", + "1", + "8", + "0", + "-1", + "15", + "106", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004820", + "1004820", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483064010", + "1483064073", + "1483064082", + "1483064010", + "1", + "8", + "0", + "-1", + "9", + "63", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004825", + "1004825", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483064105", + "1483064193", + "1483064215", + "1483064105", + "1", + "8", + "0", + "-1", + "22", + "88", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004870", + "1004870", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483064980", + "1483065035", + "1483065042", + "1483064980", + "1", + "8", + "0", + "-1", + "7", + "55", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004911", + "1004911", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483065443", + "1483065516", + "1483065528", + "1483065443", + "1", + "8", + "0", + "-1", + "12", + "73", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004946", + "1004946", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483065792", + "1483065876", + "1483065886", + "1483065792", + "1", + "8", + "0", + "-1", + "10", + "84", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004973", + "1004973", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483066153", + "1483066237", + "1483066261", + "1483066153", + "1", + "8", + "0", + "-1", + "24", + "84", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004974", + "1004974", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483066176", + "1483066237", + "1483066260", + "1483066176", + "1", + "8", + "0", + "-1", + "23", + "61", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004998", + "1004998", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483066653", + "1483066718", + "1483066725", + "1483066653", + "1", + "8", + "0", + "-1", + "7", + "65", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005009", + "1005009", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483066784", + "1483066838", + "1483066854", + "1483066784", + "1", + "8", + "0", + "-1", + "16", + "54", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005048", + "1005048", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067639", + "1483067687", + "1483067694", + "1483067639", + "1", + "8", + "0", + "-1", + "7", + "48", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005052", + "1005052", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067743", + "1483067807", + "1483067820", + "1483067743", + "1", + "8", + "0", + "-1", + "13", + "64", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005070", + "1005070", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067809", + "1483067927", + "1483067931", + "1483067809", + "1", + "8", + "0", + "-1", + "4", + "118", + "32", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005108", + "1005108", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483068015", + "1483068168", + "1483068194", + "1483068015", + "1", + "8", + "0", + "-1", + "26", + "153", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005112", + "1005112", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483068061", + "1483068168", + "1483068194", + "1483068061", + "1", + "8", + "0", + "-1", + "26", + "107", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005122", + "1005122", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483068217", + "1483068288", + "1483068296", + "1483068217", + "1", + "8", + "0", + "-1", + "8", + "71", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005166", + "1005166", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483068901", + "1483069009", + "1483069015", + "1483068901", + "1", + "8", + "0", + "-1", + "6", + "108", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005169", + "1005169", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483068963", + "1483069009", + "1483069028", + "1483068963", + "1", + "8", + "0", + "-1", + "19", + "46", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005218", + "1005218", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483069540", + "1483069611", + "1483069638", + "1483069540", + "1", + "8", + "0", + "-1", + "27", + "71", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005255", + "1005255", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483070141", + "1483070212", + "1483070235", + "1483070141", + "1", + "8", + "0", + "-1", + "23", + "71", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005281", + "1005281", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483070590", + "1483070692", + "1483070708", + "1483070590", + "1", + "8", + "0", + "-1", + "16", + "102", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005312", + "1005312", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483071021", + "1483071053", + "1483071061", + "1483071021", + "1", + "8", + "0", + "-1", + "8", + "32", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005344", + "1005344", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483071368", + "1483071413", + "1483071435", + "1483071368", + "1", + "8", + "0", + "-1", + "22", + "45", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005364", + "1005364", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483071549", + "1483071774", + "1483071780", + "1483071549", + "1", + "8", + "0", + "-1", + "6", + "225", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005369", + "1005369", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483071600", + "1483071654", + "1483071673", + "1483071600", + "1", + "8", + "0", + "-1", + "19", + "54", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005388", + "1005388", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483071896", + "1483072014", + "1483072026", + "1483071896", + "1", + "8", + "0", + "-1", + "12", + "118", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005413", + "1005413", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483072312", + "1483072375", + "1483072388", + "1483072312", + "1", + "8", + "0", + "-1", + "13", + "63", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005458", + "1005458", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483073011", + "1483073096", + "1483073110", + "1483073011", + "1", + "8", + "0", + "-1", + "14", + "85", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005488", + "1005488", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483073442", + "1483073577", + "1483073585", + "1483073442", + "1", + "8", + "0", + "-1", + "8", + "135", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005498", + "1005498", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483073598", + "1483073697", + "1483073725", + "1483073598", + "1", + "8", + "0", + "-1", + "28", + "99", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005544", + "1005544", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483074136", + "1483074178", + "1483074186", + "1483074136", + "1", + "8", + "0", + "-1", + "8", + "42", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005589", + "1005589", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483074788", + "1483074899", + "1483074907", + "1483074788", + "1", + "8", + "0", + "-1", + "8", + "111", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005621", + "1005621", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483075190", + "1483075260", + "1483075269", + "1483075190", + "1", + "8", + "0", + "-1", + "9", + "70", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005677", + "1005677", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483075805", + "1483075981", + "1483075990", + "1483075805", + "1", + "8", + "0", + "-1", + "9", + "176", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005678", + "1005678", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483075845", + "1483075981", + "1483076004", + "1483075845", + "1", + "8", + "0", + "-1", + "23", + "136", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005703", + "1005703", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483076140", + "1483076222", + "1483076233", + "1483076140", + "1", + "8", + "0", + "-1", + "11", + "82", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005711", + "1005711", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483076250", + "1483076342", + "1483076365", + "1483076250", + "1", + "8", + "0", + "-1", + "23", + "92", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005723", + "1005723", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483076487", + "1483076582", + "1483076603", + "1483076487", + "1", + "8", + "0", + "-1", + "21", + "95", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005767", + "1005767", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483077100", + "1483077303", + "1483077315", + "1483077100", + "1", + "8", + "0", + "-1", + "12", + "203", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005781", + "1005781", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483077284", + "1483077424", + "1483077438", + "1483077284", + "1", + "8", + "0", + "-1", + "14", + "140", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005830", + "1005830", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483078028", + "1483078145", + "1483078156", + "1483078028", + "1", + "8", + "0", + "-1", + "11", + "117", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005839", + "1005839", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483078162", + "1483078265", + "1483078281", + "1483078162", + "1", + "8", + "0", + "-1", + "16", + "103", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005958", + "1005958", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483079410", + "1483079467", + "1483079475", + "1483079410", + "1", + "8", + "0", + "-1", + "8", + "57", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005973", + "1005973", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483079569", + "1483079707", + "1483079713", + "1483079569", + "1", + "8", + "0", + "-1", + "6", + "138", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006022", + "1006022", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483080315", + "1483080429", + "1483080439", + "1483080315", + "1", + "8", + "0", + "-1", + "10", + "114", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006027", + "1006027", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483080361", + "1483080429", + "1483080457", + "1483080361", + "1", + "8", + "0", + "-1", + "28", + "68", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006115", + "1006115", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483081557", + "1483081630", + "1483081638", + "1483081557", + "1", + "8", + "0", + "-1", + "8", + "73", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006154", + "1006154", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483082191", + "1483082232", + "1483082247", + "1483082191", + "1", + "8", + "0", + "-1", + "15", + "41", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006175", + "1006175", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483082587", + "1483082712", + "1483082720", + "1483082587", + "1", + "8", + "0", + "-1", + "8", + "125", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006176", + "1006176", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483082629", + "1483082712", + "1483082732", + "1483082629", + "1", + "8", + "0", + "-1", + "20", + "83", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006236", + "1006236", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483083204", + "1483083313", + "1483083337", + "1483083204", + "1", + "8", + "0", + "-1", + "24", + "109", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006240", + "1006240", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483083234", + "1483083313", + "1483083322", + "1483083234", + "1", + "8", + "0", + "-1", + "9", + "79", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006282", + "1006282", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483083976", + "1483084035", + "1483084049", + "1483083976", + "1", + "8", + "0", + "-1", + "14", + "59", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006335", + "1006335", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483084716", + "1483084756", + "1483084764", + "1483084716", + "1", + "8", + "0", + "-1", + "8", + "40", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006336", + "1006336", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483084730", + "1483084876", + "1483084890", + "1483084730", + "1", + "8", + "0", + "-1", + "14", + "146", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006378", + "1006378", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483085281", + "1483085357", + "1483085364", + "1483085281", + "1", + "8", + "0", + "-1", + "7", + "76", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006392", + "1006392", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483085407", + "1483085477", + "1483085484", + "1483085407", + "1", + "8", + "0", + "-1", + "7", + "70", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006406", + "1006406", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483085605", + "1483085717", + "1483085746", + "1483085605", + "1", + "8", + "0", + "-1", + "29", + "112", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006408", + "1006408", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483085657", + "1483085717", + "1483085735", + "1483085657", + "1", + "8", + "0", + "-1", + "18", + "60", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006446", + "1006446", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483086227", + "1483086318", + "1483086328", + "1483086227", + "1", + "8", + "0", + "-1", + "10", + "91", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006469", + "1006469", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483086591", + "1483086679", + "1483086707", + "1483086591", + "1", + "8", + "0", + "-1", + "28", + "88", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006501", + "1006501", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483087091", + "1483087160", + "1483087166", + "1483087091", + "1", + "8", + "0", + "-1", + "6", + "69", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006546", + "1006546", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483087587", + "1483087761", + "1483087771", + "1483087587", + "1", + "8", + "0", + "-1", + "10", + "174", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006559", + "1006559", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483087896", + "1483088001", + "1483088008", + "1483087896", + "1", + "8", + "0", + "-1", + "7", + "105", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006581", + "1006581", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483088172", + "1483088242", + "1483088248", + "1483088172", + "1", + "8", + "0", + "-1", + "6", + "70", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006595", + "1006595", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483088376", + "1483088482", + "1483088491", + "1483088376", + "1", + "8", + "0", + "-1", + "9", + "106", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006636", + "1006636", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483088987", + "1483089083", + "1483089092", + "1483088987", + "1", + "8", + "0", + "-1", + "9", + "96", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006702", + "1006702", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483089676", + "1483089804", + "1483089815", + "1483089676", + "1", + "8", + "0", + "-1", + "11", + "128", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006726", + "1006726", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483090129", + "1483090164", + "1483090185", + "1483090129", + "1", + "8", + "0", + "-1", + "21", + "35", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006737", + "1006737", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483090372", + "1483090405", + "1483090418", + "1483090372", + "1", + "8", + "0", + "-1", + "13", + "33", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006756", + "1006756", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483090570", + "1483090645", + "1483090674", + "1483090570", + "1", + "8", + "0", + "-1", + "29", + "75", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006793", + "1006793", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483091130", + "1483091246", + "1483091268", + "1483091130", + "1", + "8", + "0", + "-1", + "22", + "116", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006796", + "1006796", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483091146", + "1483091246", + "1483091268", + "1483091146", + "1", + "8", + "0", + "-1", + "22", + "100", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006837", + "1006837", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483091596", + "1483091727", + "1483091735", + "1483091596", + "1", + "8", + "0", + "-1", + "8", + "131", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006890", + "1006890", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483092375", + "1483092448", + "1483092454", + "1483092375", + "1", + "8", + "0", + "-1", + "6", + "73", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006922", + "1006922", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483092863", + "1483092929", + "1483092935", + "1483092863", + "1", + "8", + "0", + "-1", + "6", + "66", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006946", + "1006946", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093204", + "1483093289", + "1483093298", + "1483093204", + "1", + "8", + "0", + "-1", + "9", + "85", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006951", + "1006951", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093247", + "1483093289", + "1483093296", + "1483093247", + "1", + "8", + "0", + "-1", + "7", + "42", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006969", + "1006969", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093427", + "1483093530", + "1483093540", + "1483093427", + "1", + "8", + "0", + "-1", + "10", + "103", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006971", + "1006971", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093490", + "1483093530", + "1483093538", + "1483093490", + "1", + "8", + "0", + "-1", + "8", + "40", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006997", + "1006997", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483093775", + "1483093890", + "1483093898", + "1483093775", + "1", + "8", + "0", + "-1", + "8", + "115", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007036", + "1007036", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483094132", + "1483094251", + "1483094263", + "1483094132", + "1", + "8", + "0", + "-1", + "12", + "119", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007085", + "1007085", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483095004", + "1483095092", + "1483095106", + "1483095004", + "1", + "8", + "0", + "-1", + "14", + "88", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007157", + "1007157", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483095971", + "1483096053", + "1483096061", + "1483095971", + "1", + "8", + "0", + "-1", + "8", + "82", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007205", + "1007205", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483096619", + "1483096654", + "1483096661", + "1483096619", + "1", + "8", + "0", + "-1", + "7", + "35", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007224", + "1007224", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483096846", + "1483096895", + "1483096924", + "1483096846", + "1", + "8", + "0", + "-1", + "29", + "49", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007246", + "1007246", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483097094", + "1483097135", + "1483097160", + "1483097094", + "1", + "8", + "0", + "-1", + "25", + "41", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007308", + "1007308", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483097910", + "1483097976", + "1483097996", + "1483097910", + "1", + "8", + "0", + "-1", + "20", + "66", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007313", + "1007313", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483097946", + "1483097976", + "1483097990", + "1483097946", + "1", + "8", + "0", + "-1", + "14", + "30", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007386", + "1007386", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483098969", + "1483099058", + "1483099069", + "1483098969", + "1", + "8", + "0", + "-1", + "11", + "89", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007409", + "1007409", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483099235", + "1483099299", + "1483099313", + "1483099235", + "1", + "8", + "0", + "-1", + "14", + "64", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007454", + "1007454", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483099947", + "1483100020", + "1483100028", + "1483099947", + "1", + "8", + "0", + "-1", + "8", + "73", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007479", + "1007479", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483100224", + "1483100260", + "1483100272", + "1483100224", + "1", + "8", + "0", + "-1", + "12", + "36", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007511", + "1007511", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483100641", + "1483100741", + "1483100763", + "1483100641", + "1", + "8", + "0", + "-1", + "22", + "100", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007526", + "1007526", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483100781", + "1483100861", + "1483100868", + "1483100781", + "1", + "8", + "0", + "-1", + "7", + "80", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007566", + "1007566", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483101339", + "1483101462", + "1483101469", + "1483101339", + "1", + "8", + "0", + "-1", + "7", + "123", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007611", + "1007611", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483102115", + "1483102183", + "1483102188", + "1483102115", + "1", + "8", + "0", + "-1", + "5", + "68", + "40", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007652", + "1007652", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483102592", + "1483102664", + "1483102677", + "1483102592", + "1", + "8", + "0", + "-1", + "13", + "72", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007677", + "1007677", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483102950", + "1483103145", + "1483103152", + "1483102950", + "1", + "8", + "0", + "-1", + "7", + "195", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007685", + "1007685", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483103092", + "1483103145", + "1483103163", + "1483103092", + "1", + "8", + "0", + "-1", + "18", + "53", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007698", + "1007698", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483103256", + "1483103385", + "1483103404", + "1483103256", + "1", + "8", + "0", + "-1", + "19", + "129", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007772", + "1007772", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483104569", + "1483104708", + "1483104714", + "1483104569", + "1", + "8", + "0", + "-1", + "6", + "139", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007788", + "1007788", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483104790", + "1483104948", + "1483104966", + "1483104790", + "1", + "8", + "0", + "-1", + "18", + "158", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007818", + "1007818", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483105256", + "1483105309", + "1483105318", + "1483105256", + "1", + "8", + "0", + "-1", + "9", + "53", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007873", + "1007873", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483106031", + "1483106150", + "1483106164", + "1483106031", + "1", + "8", + "0", + "-1", + "14", + "119", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007881", + "1007881", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483106178", + "1483106271", + "1483106295", + "1483106178", + "1", + "8", + "0", + "-1", + "24", + "93", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007900", + "1007900", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483106531", + "1483106631", + "1483106653", + "1483106531", + "1", + "8", + "0", + "-1", + "22", + "100", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007922", + "1007922", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483106717", + "1483106751", + "1483106770", + "1483106717", + "1", + "8", + "0", + "-1", + "19", + "34", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007935", + "1007935", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483106912", + "1483106992", + "1483107017", + "1483106912", + "1", + "8", + "0", + "-1", + "25", + "80", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007941", + "1007941", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483107003", + "1483107112", + "1483107130", + "1483107003", + "1", + "8", + "0", + "-1", + "18", + "109", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007964", + "1007964", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483107410", + "1483107473", + "1483107483", + "1483107410", + "1", + "8", + "0", + "-1", + "10", + "63", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007971", + "1007971", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483107522", + "1483107593", + "1483107622", + "1483107522", + "1", + "8", + "0", + "-1", + "29", + "71", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008002", + "1008002", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483107851", + "1483107954", + "1483107961", + "1483107851", + "1", + "8", + "0", + "-1", + "7", + "103", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008015", + "1008015", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483107997", + "1483108074", + "1483108089", + "1483107997", + "1", + "8", + "0", + "-1", + "15", + "77", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008022", + "1008022", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483108140", + "1483108194", + "1483108222", + "1483108140", + "1", + "8", + "0", + "-1", + "28", + "54", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008035", + "1008035", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483108314", + "1483108435", + "1483108450", + "1483108314", + "1", + "8", + "0", + "-1", + "15", + "121", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008066", + "1008066", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483108710", + "1483108795", + "1483108802", + "1483108710", + "1", + "8", + "0", + "-1", + "7", + "85", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008103", + "1008103", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483109350", + "1483109396", + "1483109403", + "1483109350", + "1", + "8", + "0", + "-1", + "7", + "46", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008160", + "1008160", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483110153", + "1483110238", + "1483110247", + "1483110153", + "1", + "8", + "0", + "-1", + "9", + "85", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008181", + "1008181", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483110548", + "1483110598", + "1483110622", + "1483110548", + "1", + "8", + "0", + "-1", + "24", + "50", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008215", + "1008215", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483110982", + "1483111079", + "1483111089", + "1483110982", + "1", + "8", + "0", + "-1", + "10", + "97", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008220", + "1008220", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483111082", + "1483111200", + "1483111205", + "1483111082", + "1", + "8", + "0", + "-1", + "5", + "118", + "40", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008229", + "1008229", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483111201", + "1483111320", + "1483111347", + "1483111201", + "1", + "8", + "0", + "-1", + "27", + "119", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008261", + "1008261", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483111621", + "1483111681", + "1483111691", + "1483111621", + "1", + "8", + "0", + "-1", + "10", + "60", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008367", + "1008367", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483113068", + "1483113123", + "1483113131", + "1483113068", + "1", + "8", + "0", + "-1", + "8", + "55", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008385", + "1008385", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483113272", + "1483113364", + "1483113367", + "1483113272", + "1", + "8", + "0", + "-1", + "3", + "92", + "24", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008399", + "1008399", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483113455", + "1483113604", + "1483113613", + "1483113455", + "1", + "8", + "0", + "-1", + "9", + "149", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008402", + "1008402", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483113479", + "1483113604", + "1483113608", + "1483113479", + "1", + "8", + "0", + "-1", + "4", + "125", + "32", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008446", + "1008446", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483114337", + "1483114445", + "1483114471", + "1483114337", + "1", + "8", + "0", + "-1", + "26", + "108", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008505", + "1008505", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483115126", + "1483115167", + "1483115174", + "1483115126", + "1", + "8", + "0", + "-1", + "7", + "41", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008522", + "1008522", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483115318", + "1483115407", + "1483115421", + "1483115318", + "1", + "8", + "0", + "-1", + "14", + "89", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008539", + "1008539", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483115569", + "1483115647", + "1483115665", + "1483115569", + "1", + "8", + "0", + "-1", + "18", + "78", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008547", + "1008547", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483115607", + "1483115647", + "1483115674", + "1483115607", + "1", + "8", + "0", + "-1", + "27", + "40", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008569", + "1008569", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483116071", + "1483116128", + "1483116141", + "1483116071", + "1", + "8", + "0", + "-1", + "13", + "57", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008635", + "1008635", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483116690", + "1483116729", + "1483116757", + "1483116690", + "1", + "8", + "0", + "-1", + "28", + "39", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008752", + "1008752", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483117589", + "1483117690", + "1483117719", + "1483117589", + "1", + "8", + "0", + "-1", + "29", + "101", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008761", + "1008761", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483117708", + "1483117811", + "1483117835", + "1483117708", + "1", + "8", + "0", + "-1", + "24", + "103", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008835", + "1008835", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483118300", + "1483118411", + "1483118428", + "1483118300", + "1", + "8", + "0", + "-1", + "17", + "111", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008899", + "1008899", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483118941", + "1483119012", + "1483119021", + "1483118941", + "1", + "8", + "0", + "-1", + "9", + "71", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008901", + "1008901", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483118971", + "1483119012", + "1483119018", + "1483118971", + "1", + "8", + "0", + "-1", + "6", + "41", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008938", + "1008938", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483119331", + "1483119373", + "1483119385", + "1483119331", + "1", + "8", + "0", + "-1", + "12", + "42", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009011", + "1009011", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483119863", + "1483119974", + "1483120000", + "1483119863", + "1", + "8", + "0", + "-1", + "26", + "111", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009045", + "1009045", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483120108", + "1483120214", + "1483120231", + "1483120108", + "1", + "8", + "0", + "-1", + "17", + "106", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009052", + "1009052", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483120224", + "1483120334", + "1483120358", + "1483120224", + "1", + "8", + "0", + "-1", + "24", + "110", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009082", + "1009082", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483120563", + "1483120695", + "1483120708", + "1483120563", + "1", + "8", + "0", + "-1", + "13", + "132", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009090", + "1009090", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483120671", + "1483120815", + "1483120835", + "1483120671", + "1", + "8", + "0", + "-1", + "20", + "144", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009139", + "1009139", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483121139", + "1483121175", + "1483121184", + "1483121139", + "1", + "8", + "0", + "-1", + "9", + "36", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009196", + "1009196", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483121772", + "1483121896", + "1483121905", + "1483121772", + "1", + "8", + "0", + "-1", + "9", + "124", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009204", + "1009204", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483121858", + "1483121896", + "1483121921", + "1483121858", + "1", + "8", + "0", + "-1", + "25", + "38", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009226", + "1009226", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483122056", + "1483122137", + "1483122163", + "1483122056", + "1", + "8", + "0", + "-1", + "26", + "81", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009282", + "1009282", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483122548", + "1483122617", + "1483122627", + "1483122548", + "1", + "8", + "0", + "-1", + "10", + "69", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009298", + "1009298", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483122682", + "1483122737", + "1483122752", + "1483122682", + "1", + "8", + "0", + "-1", + "15", + "55", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009379", + "1009379", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483123708", + "1483123819", + "1483123834", + "1483123708", + "1", + "8", + "0", + "-1", + "15", + "111", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009416", + "1009416", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124190", + "1483124299", + "1483124308", + "1483124190", + "1", + "8", + "0", + "-1", + "9", + "109", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009441", + "1009441", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124484", + "1483124540", + "1483124563", + "1483124484", + "1", + "8", + "0", + "-1", + "23", + "56", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009450", + "1009450", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124569", + "1483124660", + "1483124688", + "1483124569", + "1", + "8", + "0", + "-1", + "28", + "91", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009465", + "1009465", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124724", + "1483124780", + "1483124797", + "1483124724", + "1", + "8", + "0", + "-1", + "17", + "56", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009477", + "1009477", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124862", + "1483124900", + "1483124917", + "1483124862", + "1", + "8", + "0", + "-1", + "17", + "38", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009478", + "1009478", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483124872", + "1483125020", + "1483125029", + "1483124872", + "1", + "8", + "0", + "-1", + "9", + "148", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009589", + "1009589", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126409", + "1483126462", + "1483126470", + "1483126409", + "1", + "8", + "0", + "-1", + "8", + "53", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009592", + "1009592", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126428", + "1483126462", + "1483126479", + "1483126428", + "1", + "8", + "0", + "-1", + "17", + "34", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009613", + "1009613", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126677", + "1483126823", + "1483126829", + "1483126677", + "1", + "8", + "0", + "-1", + "6", + "146", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009640", + "1009640", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483126978", + "1483127063", + "1483127082", + "1483126978", + "1", + "8", + "0", + "-1", + "19", + "85", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009650", + "1009650", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483127162", + "1483127303", + "1483127325", + "1483127162", + "1", + "8", + "0", + "-1", + "22", + "141", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009679", + "1009679", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483127574", + "1483127784", + "1483127813", + "1483127574", + "1", + "8", + "0", + "-1", + "29", + "210", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009721", + "1009721", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483128277", + "1483128385", + "1483128407", + "1483128277", + "1", + "8", + "0", + "-1", + "22", + "108", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009746", + "1009746", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483128523", + "1483128625", + "1483128633", + "1483128523", + "1", + "8", + "0", + "-1", + "8", + "102", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009753", + "1009753", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483128685", + "1483128745", + "1483128766", + "1483128685", + "1", + "8", + "0", + "-1", + "21", + "60", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009802", + "1009802", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483129248", + "1483129346", + "1483129357", + "1483129248", + "1", + "8", + "0", + "-1", + "11", + "98", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009826", + "1009826", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483129642", + "1483129707", + "1483129736", + "1483129642", + "1", + "8", + "0", + "-1", + "29", + "65", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009841", + "1009841", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483129869", + "1483129947", + "1483129973", + "1483129869", + "1", + "8", + "0", + "-1", + "26", + "78", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009898", + "1009898", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483130558", + "1483130668", + "1483130693", + "1483130558", + "1", + "8", + "0", + "-1", + "25", + "110", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009905", + "1009905", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483130620", + "1483130668", + "1483130678", + "1483130620", + "1", + "8", + "0", + "-1", + "10", + "48", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009907", + "1009907", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483130636", + "1483130668", + "1483130692", + "1483130636", + "1", + "8", + "0", + "-1", + "24", + "32", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009955", + "1009955", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483131189", + "1483131269", + "1483131291", + "1483131189", + "1", + "8", + "0", + "-1", + "22", + "80", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009966", + "1009966", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483131291", + "1483131389", + "1483131396", + "1483131291", + "1", + "8", + "0", + "-1", + "7", + "98", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009975", + "1009975", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483131469", + "1483131509", + "1483131518", + "1483131469", + "1", + "8", + "0", + "-1", + "9", + "40", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010028", + "1010028", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483132299", + "1483132350", + "1483132356", + "1483132299", + "1", + "8", + "0", + "-1", + "6", + "51", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010073", + "1010073", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483132903", + "1483132951", + "1483132961", + "1483132903", + "1", + "8", + "0", + "-1", + "10", + "48", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010100", + "1010100", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133197", + "1483133311", + "1483133327", + "1483133197", + "1", + "8", + "0", + "-1", + "16", + "114", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010105", + "1010105", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133234", + "1483133311", + "1483133332", + "1483133234", + "1", + "8", + "0", + "-1", + "21", + "77", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010118", + "1010118", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133380", + "1483133431", + "1483133441", + "1483133380", + "1", + "8", + "0", + "-1", + "10", + "51", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010120", + "1010120", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483133395", + "1483133431", + "1483133457", + "1483133395", + "1", + "8", + "0", + "-1", + "26", + "36", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010192", + "1010192", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483134427", + "1483134513", + "1483134526", + "1483134427", + "1", + "8", + "0", + "-1", + "13", + "86", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010211", + "1010211", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483134649", + "1483134753", + "1483134767", + "1483134649", + "1", + "8", + "0", + "-1", + "14", + "104", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010267", + "1010267", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483135405", + "1483135474", + "1483135483", + "1483135405", + "1", + "8", + "0", + "-1", + "9", + "69", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010329", + "1010329", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483136080", + "1483136195", + "1483136207", + "1483136080", + "1", + "8", + "0", + "-1", + "12", + "115", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010345", + "1010345", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483136333", + "1483136435", + "1483136456", + "1483136333", + "1", + "8", + "0", + "-1", + "21", + "102", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010376", + "1010376", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483136824", + "1483137036", + "1483137064", + "1483136824", + "1", + "8", + "0", + "-1", + "28", + "212", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010392", + "1010392", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483137073", + "1483137156", + "1483137165", + "1483137073", + "1", + "8", + "0", + "-1", + "9", + "83", + "72", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010423", + "1010423", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483137426", + "1483137516", + "1483137529", + "1483137426", + "1", + "8", + "0", + "-1", + "13", + "90", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010466", + "1010466", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483137955", + "1483137997", + "1483138011", + "1483137955", + "1", + "8", + "0", + "-1", + "14", + "42", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010469", + "1010469", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483138023", + "1483138237", + "1483138259", + "1483138023", + "1", + "8", + "0", + "-1", + "22", + "214", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010518", + "1010518", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483138750", + "1483138838", + "1483138844", + "1483138750", + "1", + "8", + "0", + "-1", + "6", + "88", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010570", + "1010570", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483139349", + "1483139439", + "1483139447", + "1483139349", + "1", + "8", + "0", + "-1", + "8", + "90", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010572", + "1010572", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483139426", + "1483139559", + "1483139587", + "1483139426", + "1", + "8", + "0", + "-1", + "28", + "133", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010598", + "1010598", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483139887", + "1483139919", + "1483139926", + "1483139887", + "1", + "8", + "0", + "-1", + "7", + "32", + "56", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010608", + "1010608", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140001", + "1483140039", + "1483140050", + "1483140001", + "1", + "8", + "0", + "-1", + "11", + "38", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010610", + "1010610", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140041", + "1483140160", + "1483140174", + "1483140041", + "1", + "8", + "0", + "-1", + "14", + "119", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010617", + "1010617", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140146", + "1483140280", + "1483140304", + "1483140146", + "1", + "8", + "0", + "-1", + "24", + "134", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010633", + "1010633", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140361", + "1483140400", + "1483140420", + "1483140361", + "1", + "8", + "0", + "-1", + "20", + "39", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010653", + "1010653", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140535", + "1483140640", + "1483140648", + "1483140535", + "1", + "8", + "0", + "-1", + "8", + "105", + "64", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010678", + "1010678", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140881", + "1483141001", + "1483141014", + "1483140881", + "1", + "8", + "0", + "-1", + "13", + "120", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010679", + "1010679", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483140898", + "1483141001", + "1483141029", + "1483140898", + "1", + "8", + "0", + "-1", + "28", + "103", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010713", + "1010713", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483141161", + "1483141241", + "1483141265", + "1483141161", + "1", + "8", + "0", + "-1", + "24", + "80", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010746", + "1010746", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483141603", + "1483141722", + "1483141728", + "1483141603", + "1", + "8", + "0", + "-1", + "6", + "119", + "48", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010776", + "1010776", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483142080", + "1483142202", + "1483142217", + "1483142080", + "1", + "8", + "0", + "-1", + "15", + "122", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1004945", + "1004945", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483065770", + "1483065876", + "1483065895", + "1483065770", + "1", + "8", + "0", + "-1", + "19", + "106", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "6111037[221]", + "6111273", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483127791", + "1483127810", + "1483125913", + "1", + "1", + "0", + "-1", + "19", + "1879", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[268]", + "6111320", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483128080", + "1483128102", + "1483125913", + "1", + "1", + "0", + "-1", + "22", + "2168", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[325]", + "6111382", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483128501", + "1483128528", + "1483125913", + "1", + "1", + "0", + "-1", + "27", + "2589", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[395]", + "6111457", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483129063", + "1483129085", + "1483125913", + "1", + "1", + "0", + "-1", + "22", + "3151", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[431]", + "6111505", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483129321", + "1483129347", + "1483125913", + "1", + "1", + "0", + "-1", + "26", + "3409", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[460]", + "6111534", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483129461", + "1483129481", + "1483125913", + "1", + "1", + "0", + "-1", + "20", + "3549", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[10]", + "6111652", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130411", + "1483130430", + "1483128563", + "1", + "1", + "0", + "-1", + "19", + "1851", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[15]", + "6111657", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130411", + "1483130440", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "1851", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[16]", + "6111658", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130411", + "1483130433", + "1483128563", + "1", + "1", + "0", + "-1", + "22", + "1851", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[17]", + "6111659", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130411", + "1483130431", + "1483128563", + "1", + "1", + "0", + "-1", + "20", + "1851", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[25]", + "6111674", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130539", + "1483130567", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "1979", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[37]", + "6111686", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130539", + "1483130567", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "1979", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[45]", + "6111715", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130676", + "1483130695", + "1483128563", + "1", + "1", + "0", + "-1", + "19", + "2116", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[50]", + "6111720", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130676", + "1483130689", + "1483128563", + "1", + "1", + "0", + "-1", + "13", + "2116", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[52]", + "6111722", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130676", + "1483130695", + "1483128563", + "1", + "1", + "0", + "-1", + "19", + "2116", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[54]", + "6111724", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130676", + "1483130702", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "2116", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[55]", + "6111725", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130676", + "1483130695", + "1483128563", + "1", + "1", + "0", + "-1", + "19", + "2116", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[61]", + "6111750", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130808", + "1483130836", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "2248", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[84]", + "6111782", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130937", + "1483130964", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "2377", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[98]", + "6111796", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483130937", + "1483130957", + "1483128563", + "1", + "1", + "0", + "-1", + "20", + "2377", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[106]", + "6111805", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131062", + "1483131090", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "2502", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[119]", + "6111821", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131192", + "1483131207", + "1483128563", + "1", + "1", + "0", + "-1", + "15", + "2632", + "15", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[120]", + "6111822", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131192", + "1483131208", + "1483128563", + "1", + "1", + "0", + "-1", + "16", + "2632", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[127]", + "6111829", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131192", + "1483131219", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "2632", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[131]", + "6111833", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131192", + "1483131220", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "2632", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[138]", + "6111841", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131327", + "1483131356", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "2767", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[141]", + "6111844", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131327", + "1483131332", + "1483128563", + "1", + "1", + "0", + "-1", + "5", + "2767", + "5", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[149]", + "6111852", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131327", + "1483131351", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "2767", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[159]", + "6111863", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131464", + "1483131489", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "2904", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[161]", + "6111865", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131464", + "1483131492", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "2904", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[166]", + "6111870", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131464", + "1483131489", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "2904", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[185]", + "6111890", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131602", + "1483131623", + "1483128563", + "1", + "1", + "0", + "-1", + "21", + "3042", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[186]", + "6111891", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131602", + "1483131612", + "1483128563", + "1", + "1", + "0", + "-1", + "10", + "3042", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[187]", + "6111892", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131602", + "1483131623", + "1483128563", + "1", + "1", + "0", + "-1", + "21", + "3042", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[193]", + "6111898", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131738", + "1483131766", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "3178", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[198]", + "6111903", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131738", + "1483131744", + "1483128563", + "1", + "1", + "0", + "-1", + "6", + "3178", + "6", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[203]", + "6111908", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131738", + "1483131756", + "1483128563", + "1", + "1", + "0", + "-1", + "18", + "3178", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[204]", + "6111909", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131738", + "1483131761", + "1483128563", + "1", + "1", + "0", + "-1", + "23", + "3178", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[206]", + "6111911", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131738", + "1483131766", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "3178", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[212]", + "6111917", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131895", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "3307", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[217]", + "6111922", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131888", + "1483128563", + "1", + "1", + "0", + "-1", + "21", + "3307", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[221]", + "6111926", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131880", + "1483128563", + "1", + "1", + "0", + "-1", + "13", + "3307", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[222]", + "6111927", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131895", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "3307", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[224]", + "6111929", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131895", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "3307", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[225]", + "6111930", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131867", + "1483131890", + "1483128563", + "1", + "1", + "0", + "-1", + "23", + "3307", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[226]", + "6111931", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131997", + "1483132026", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "3437", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[236]", + "6111941", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131997", + "1483132026", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "3437", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[241]", + "6111946", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483131997", + "1483132023", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "3437", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[254]", + "6111959", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132136", + "1483132156", + "1483128563", + "1", + "1", + "0", + "-1", + "20", + "3576", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[255]", + "6111960", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132136", + "1483132162", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "3576", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[256]", + "6111961", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132136", + "1483132163", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "3576", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[263]", + "6111968", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132136", + "1483132163", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "3576", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[98]", + "6112386", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137566", + "1483137582", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "1918", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[106]", + "6112394", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137566", + "1483137594", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "1918", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[119]", + "6112407", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137692", + "1483137712", + "1483135648", + "1", + "1", + "0", + "-1", + "20", + "2044", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[120]", + "6112408", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137692", + "1483137712", + "1483135648", + "1", + "1", + "0", + "-1", + "20", + "2044", + "20", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[127]", + "6112415", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137824", + "1483137853", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "2176", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[129]", + "6112417", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137824", + "1483137851", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "2176", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[138]", + "6112426", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137824", + "1483137853", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "2176", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[141]", + "6112429", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137824", + "1483137835", + "1483135648", + "1", + "1", + "0", + "-1", + "11", + "2176", + "11", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[149]", + "6112437", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137956", + "1483137981", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "2308", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[159]", + "6112447", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137956", + "1483137983", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "2308", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[161]", + "6112449", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483137956", + "1483137985", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "2308", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[166]", + "6112454", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138083", + "1483138105", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "2435", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[167]", + "6112455", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138083", + "1483138111", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "2435", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[173]", + "6112461", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138083", + "1483138111", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "2435", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[175]", + "6112463", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138083", + "1483138111", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "2435", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[185]", + "6112473", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138210", + "1483138232", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "2562", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[186]", + "6112474", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138210", + "1483138218", + "1483135648", + "1", + "1", + "0", + "-1", + "8", + "2562", + "8", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[187]", + "6112475", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138210", + "1483138226", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "2562", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[193]", + "6112481", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138210", + "1483138235", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "2562", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[198]", + "6112486", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138210", + "1483138220", + "1483135648", + "1", + "1", + "0", + "-1", + "10", + "2562", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[203]", + "6112491", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138342", + "1483138356", + "1483135648", + "1", + "1", + "0", + "-1", + "14", + "2694", + "14", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[204]", + "6112492", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138342", + "1483138366", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "2694", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[217]", + "6112505", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138342", + "1483138355", + "1483135648", + "1", + "1", + "0", + "-1", + "13", + "2694", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[221]", + "6112509", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138470", + "1483138483", + "1483135648", + "1", + "1", + "0", + "-1", + "13", + "2822", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[224]", + "6112512", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138470", + "1483138499", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "2822", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[241]", + "6112529", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138601", + "1483138623", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "2953", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[254]", + "6112542", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138601", + "1483138617", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "2953", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[255]", + "6112543", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138601", + "1483138623", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "2953", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[256]", + "6112544", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138601", + "1483138628", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "2953", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[268]", + "6112556", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138737", + "1483138746", + "1483135648", + "1", + "1", + "0", + "-1", + "9", + "3089", + "9", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[277]", + "6112565", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138737", + "1483138764", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "3089", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[281]", + "6112569", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138862", + "1483138884", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "3214", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[294]", + "6112582", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138862", + "1483138885", + "1483135648", + "1", + "1", + "0", + "-1", + "23", + "3214", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[310]", + "6112599", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483138992", + "1483139008", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "3344", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[325]", + "6112615", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139123", + "1483139130", + "1483135648", + "1", + "1", + "0", + "-1", + "7", + "3475", + "7", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[326]", + "6112616", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139123", + "1483139145", + "1483135648", + "1", + "1", + "0", + "-1", + "22", + "3475", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "986006", + "986006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116423", + "1483118225", + "1483118246", + "1483116423", + "1", + "8", + "0", + "-1", + "21", + "1802", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986011", + "986011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116424", + "1483118234", + "1483118251", + "1483116424", + "1", + "8", + "0", + "-1", + "17", + "1810", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986013", + "986013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116424", + "1483118246", + "1483118270", + "1483116424", + "1", + "8", + "0", + "-1", + "24", + "1822", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986016", + "986016", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116424", + "1483118252", + "1483118273", + "1483116424", + "1", + "8", + "0", + "-1", + "21", + "1828", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986018", + "986018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116425", + "1483118254", + "1483118277", + "1483116425", + "1", + "8", + "0", + "-1", + "23", + "1829", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986021", + "986021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116425", + "1483118262", + "1483118281", + "1483116425", + "1", + "8", + "0", + "-1", + "19", + "1837", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986024", + "986024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116426", + "1483118268", + "1483118290", + "1483116426", + "1", + "8", + "0", + "-1", + "22", + "1842", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986026", + "986026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116426", + "1483118270", + "1483118289", + "1483116426", + "1", + "8", + "0", + "-1", + "19", + "1844", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986031", + "986031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116427", + "1483118278", + "1483118307", + "1483116427", + "1", + "8", + "0", + "-1", + "29", + "1851", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986041", + "986041", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116428", + "1483118291", + "1483118313", + "1483116428", + "1", + "8", + "0", + "-1", + "22", + "1863", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986044", + "986044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116429", + "1483118298", + "1483118319", + "1483116429", + "1", + "8", + "0", + "-1", + "21", + "1869", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986049", + "986049", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116429", + "1483118313", + "1483118332", + "1483116429", + "1", + "8", + "0", + "-1", + "19", + "1884", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986051", + "986051", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116430", + "1483118314", + "1483118336", + "1483116430", + "1", + "8", + "0", + "-1", + "22", + "1884", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986054", + "986054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116430", + "1483118320", + "1483118341", + "1483116430", + "1", + "8", + "0", + "-1", + "21", + "1890", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986059", + "986059", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116431", + "1483118336", + "1483118356", + "1483116431", + "1", + "8", + "0", + "-1", + "20", + "1905", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986061", + "986061", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116431", + "1483118337", + "1483118357", + "1483116431", + "1", + "8", + "0", + "-1", + "20", + "1906", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986064", + "986064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116432", + "1483118339", + "1483118358", + "1483116432", + "1", + "8", + "0", + "-1", + "19", + "1907", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986079", + "986079", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116434", + "1483118358", + "1483118379", + "1483116434", + "1", + "8", + "0", + "-1", + "21", + "1924", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986085", + "986085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116435", + "1483118371", + "1483118389", + "1483116435", + "1", + "8", + "0", + "-1", + "18", + "1936", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986087", + "986087", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116435", + "1483118374", + "1483118390", + "1483116435", + "1", + "8", + "0", + "-1", + "16", + "1939", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986092", + "986092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116436", + "1483118380", + "1483118403", + "1483116436", + "1", + "8", + "0", + "-1", + "23", + "1944", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986097", + "986097", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116437", + "1483118391", + "1483118413", + "1483116437", + "1", + "8", + "0", + "-1", + "22", + "1954", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986100", + "986100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116437", + "1483118391", + "1483118410", + "1483116437", + "1", + "8", + "0", + "-1", + "19", + "1954", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986103", + "986103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116438", + "1483118395", + "1483118413", + "1483116438", + "1", + "8", + "0", + "-1", + "18", + "1957", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986118", + "986118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116440", + "1483118427", + "1483118447", + "1483116440", + "1", + "8", + "0", + "-1", + "20", + "1987", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986120", + "986120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116441", + "1483118436", + "1483118457", + "1483116441", + "1", + "8", + "0", + "-1", + "21", + "1995", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986124", + "986124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116441", + "1483118446", + "1483118465", + "1483116441", + "1", + "8", + "0", + "-1", + "19", + "2005", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986129", + "986129", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116442", + "1483118448", + "1483118469", + "1483116442", + "1", + "8", + "0", + "-1", + "21", + "2006", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986134", + "986134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116443", + "1483118458", + "1483118479", + "1483116443", + "1", + "8", + "0", + "-1", + "21", + "2015", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986137", + "986137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116443", + "1483118466", + "1483118485", + "1483116443", + "1", + "8", + "0", + "-1", + "19", + "2023", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986139", + "986139", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116444", + "1483118470", + "1483118488", + "1483116444", + "1", + "8", + "0", + "-1", + "18", + "2026", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986142", + "986142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116444", + "1483118479", + "1483118507", + "1483116444", + "1", + "8", + "0", + "-1", + "28", + "2035", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986145", + "986145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116445", + "1483118481", + "1483118509", + "1483116445", + "1", + "8", + "0", + "-1", + "28", + "2036", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986155", + "986155", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116446", + "1483118495", + "1483118517", + "1483116446", + "1", + "8", + "0", + "-1", + "22", + "2049", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986157", + "986157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116446", + "1483118507", + "1483118527", + "1483116446", + "1", + "8", + "0", + "-1", + "20", + "2061", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986160", + "986160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116447", + "1483118509", + "1483118526", + "1483116447", + "1", + "8", + "0", + "-1", + "17", + "2062", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986163", + "986163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116448", + "1483118517", + "1483118546", + "1483116448", + "1", + "8", + "0", + "-1", + "29", + "2069", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986165", + "986165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116448", + "1483118525", + "1483118553", + "1483116448", + "1", + "8", + "0", + "-1", + "28", + "2077", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986168", + "986168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116448", + "1483118526", + "1483118550", + "1483116448", + "1", + "8", + "0", + "-1", + "24", + "2078", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986170", + "986170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116449", + "1483118528", + "1483118551", + "1483116449", + "1", + "8", + "0", + "-1", + "23", + "2079", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986173", + "986173", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116449", + "1483118528", + "1483118552", + "1483116449", + "1", + "8", + "0", + "-1", + "24", + "2079", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986175", + "986175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116449", + "1483118546", + "1483118564", + "1483116449", + "1", + "8", + "0", + "-1", + "18", + "2097", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986183", + "986183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116451", + "1483118552", + "1483118578", + "1483116451", + "1", + "8", + "0", + "-1", + "26", + "2101", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986191", + "986191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116452", + "1483118555", + "1483118577", + "1483116452", + "1", + "8", + "0", + "-1", + "22", + "2103", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986199", + "986199", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116453", + "1483118578", + "1483118591", + "1483116453", + "1", + "8", + "0", + "-1", + "13", + "2125", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986206", + "986206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116454", + "1483118592", + "1483118613", + "1483116454", + "1", + "8", + "0", + "-1", + "21", + "2138", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986213", + "986213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116455", + "1483118604", + "1483118619", + "1483116455", + "1", + "8", + "0", + "-1", + "15", + "2149", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986216", + "986216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116456", + "1483118614", + "1483118631", + "1483116456", + "1", + "8", + "0", + "-1", + "17", + "2158", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986229", + "986229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116458", + "1483118625", + "1483118647", + "1483116458", + "1", + "8", + "0", + "-1", + "22", + "2167", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986231", + "986231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116458", + "1483118629", + "1483118652", + "1483116458", + "1", + "8", + "0", + "-1", + "23", + "2171", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986233", + "986233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116459", + "1483118631", + "1483118653", + "1483116459", + "1", + "8", + "0", + "-1", + "22", + "2172", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986236", + "986236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116459", + "1483118631", + "1483118651", + "1483116459", + "1", + "8", + "0", + "-1", + "20", + "2172", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986238", + "986238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116459", + "1483118647", + "1483118666", + "1483116459", + "1", + "8", + "0", + "-1", + "19", + "2188", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986240", + "986240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116460", + "1483118650", + "1483118674", + "1483116460", + "1", + "8", + "0", + "-1", + "24", + "2190", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986243", + "986243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116460", + "1483118651", + "1483118675", + "1483116460", + "1", + "8", + "0", + "-1", + "24", + "2191", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986248", + "986248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116461", + "1483118653", + "1483118674", + "1483116461", + "1", + "8", + "0", + "-1", + "21", + "2192", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986251", + "986251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116462", + "1483118654", + "1483118681", + "1483116462", + "1", + "8", + "0", + "-1", + "27", + "2192", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986253", + "986253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116462", + "1483118667", + "1483118687", + "1483116462", + "1", + "8", + "0", + "-1", + "20", + "2205", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986268", + "986268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116464", + "1483118688", + "1483118710", + "1483116464", + "1", + "8", + "0", + "-1", + "22", + "2224", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986271", + "986271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116465", + "1483118706", + "1483118727", + "1483116465", + "1", + "8", + "0", + "-1", + "21", + "2241", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986277", + "986277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116466", + "1483118706", + "1483118732", + "1483116466", + "1", + "8", + "0", + "-1", + "26", + "2240", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986279", + "986279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116466", + "1483118710", + "1483118734", + "1483116466", + "1", + "8", + "0", + "-1", + "24", + "2244", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986287", + "986287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116467", + "1483118728", + "1483118751", + "1483116467", + "1", + "8", + "0", + "-1", + "23", + "2261", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986290", + "986290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116468", + "1483118728", + "1483118748", + "1483116468", + "1", + "8", + "0", + "-1", + "20", + "2260", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986292", + "986292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116468", + "1483118732", + "1483118753", + "1483116468", + "1", + "8", + "0", + "-1", + "21", + "2264", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986305", + "986305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116471", + "1483118753", + "1483118775", + "1483116471", + "1", + "8", + "0", + "-1", + "22", + "2282", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986308", + "986308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116471", + "1483118754", + "1483118776", + "1483116471", + "1", + "8", + "0", + "-1", + "22", + "2283", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986310", + "986310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116471", + "1483118769", + "1483118794", + "1483116471", + "1", + "8", + "0", + "-1", + "25", + "2298", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986312", + "986312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116472", + "1483118775", + "1483118796", + "1483116472", + "1", + "8", + "0", + "-1", + "21", + "2303", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986315", + "986315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116472", + "1483118777", + "1483118801", + "1483116472", + "1", + "8", + "0", + "-1", + "24", + "2305", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986317", + "986317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116472", + "1483118779", + "1483118803", + "1483116472", + "1", + "8", + "0", + "-1", + "24", + "2307", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986322", + "986322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116473", + "1483118790", + "1483118814", + "1483116473", + "1", + "8", + "0", + "-1", + "24", + "2317", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986325", + "986325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116474", + "1483118795", + "1483118815", + "1483116474", + "1", + "8", + "0", + "-1", + "20", + "2321", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986328", + "986328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116474", + "1483118797", + "1483118816", + "1483116474", + "1", + "8", + "0", + "-1", + "19", + "2323", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986330", + "986330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116474", + "1483118801", + "1483118820", + "1483116474", + "1", + "8", + "0", + "-1", + "19", + "2327", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986345", + "986345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116477", + "1483118821", + "1483118842", + "1483116477", + "1", + "8", + "0", + "-1", + "21", + "2344", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986348", + "986348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116477", + "1483118834", + "1483118861", + "1483116477", + "1", + "8", + "0", + "-1", + "27", + "2357", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986350", + "986350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116478", + "1483118843", + "1483118863", + "1483116478", + "1", + "8", + "0", + "-1", + "20", + "2365", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986353", + "986353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116478", + "1483118847", + "1483118871", + "1483116478", + "1", + "8", + "0", + "-1", + "24", + "2369", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986355", + "986355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116478", + "1483118859", + "1483118883", + "1483116478", + "1", + "8", + "0", + "-1", + "24", + "2381", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986363", + "986363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116480", + "1483118871", + "1483118892", + "1483116480", + "1", + "8", + "0", + "-1", + "21", + "2391", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986365", + "986365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116480", + "1483118882", + "1483118903", + "1483116480", + "1", + "8", + "0", + "-1", + "21", + "2402", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986368", + "986368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116481", + "1483118884", + "1483118904", + "1483116481", + "1", + "8", + "0", + "-1", + "20", + "2403", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986396", + "986396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116485", + "1483118942", + "1483118970", + "1483116485", + "1", + "8", + "0", + "-1", + "28", + "2457", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986419", + "986419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116489", + "1483119023", + "1483119043", + "1483116489", + "1", + "8", + "0", + "-1", + "20", + "2534", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986421", + "986421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116489", + "1483119027", + "1483119048", + "1483116489", + "1", + "8", + "0", + "-1", + "21", + "2538", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986426", + "986426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116490", + "1483119044", + "1483119061", + "1483116490", + "1", + "8", + "0", + "-1", + "17", + "2554", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986428", + "986428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116490", + "1483119049", + "1483119065", + "1483116490", + "1", + "8", + "0", + "-1", + "16", + "2559", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986431", + "986431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116491", + "1483119062", + "1483119088", + "1483116491", + "1", + "8", + "0", + "-1", + "26", + "2571", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986433", + "986433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116491", + "1483119066", + "1483119090", + "1483116491", + "1", + "8", + "0", + "-1", + "24", + "2575", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986436", + "986436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116491", + "1483119070", + "1483119092", + "1483116491", + "1", + "8", + "0", + "-1", + "22", + "2579", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986439", + "986439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116492", + "1483119088", + "1483119108", + "1483116492", + "1", + "8", + "0", + "-1", + "20", + "2596", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986441", + "986441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116492", + "1483119091", + "1483119107", + "1483116492", + "1", + "8", + "0", + "-1", + "16", + "2599", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986444", + "986444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116493", + "1483119092", + "1483119111", + "1483116493", + "1", + "8", + "0", + "-1", + "19", + "2599", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986457", + "986457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116495", + "1483119108", + "1483119136", + "1483116495", + "1", + "8", + "0", + "-1", + "28", + "2613", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986459", + "986459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116495", + "1483119111", + "1483119133", + "1483116495", + "1", + "8", + "0", + "-1", + "22", + "2616", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986462", + "986462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116496", + "1483119119", + "1483119141", + "1483116496", + "1", + "8", + "0", + "-1", + "22", + "2623", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986464", + "986464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116496", + "1483119129", + "1483119146", + "1483116496", + "1", + "8", + "0", + "-1", + "17", + "2633", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986467", + "986467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116496", + "1483119134", + "1483119161", + "1483116496", + "1", + "8", + "0", + "-1", + "27", + "2638", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986469", + "986469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116497", + "1483119134", + "1483119163", + "1483116497", + "1", + "8", + "0", + "-1", + "29", + "2637", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986472", + "986472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116497", + "1483119136", + "1483119159", + "1483116497", + "1", + "8", + "0", + "-1", + "23", + "2639", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986475", + "986475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116498", + "1483119141", + "1483119164", + "1483116498", + "1", + "8", + "0", + "-1", + "23", + "2643", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986477", + "986477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116498", + "1483119146", + "1483119166", + "1483116498", + "1", + "8", + "0", + "-1", + "20", + "2648", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986480", + "986480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116498", + "1483119153", + "1483119169", + "1483116498", + "1", + "8", + "0", + "-1", + "16", + "2655", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986482", + "986482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116499", + "1483119159", + "1483119178", + "1483116499", + "1", + "8", + "0", + "-1", + "19", + "2660", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986498", + "986498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116501", + "1483119179", + "1483119199", + "1483116501", + "1", + "8", + "0", + "-1", + "20", + "2678", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986500", + "986500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116502", + "1483119197", + "1483119218", + "1483116502", + "1", + "8", + "0", + "-1", + "21", + "2695", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986503", + "986503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116502", + "1483119197", + "1483119211", + "1483116502", + "1", + "8", + "0", + "-1", + "14", + "2695", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986505", + "986505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116502", + "1483119199", + "1483119226", + "1483116502", + "1", + "8", + "0", + "-1", + "27", + "2697", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986508", + "986508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116503", + "1483119199", + "1483119225", + "1483116503", + "1", + "8", + "0", + "-1", + "26", + "2696", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986511", + "986511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116504", + "1483119201", + "1483119230", + "1483116504", + "1", + "8", + "0", + "-1", + "29", + "2697", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986513", + "986513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116504", + "1483119209", + "1483119227", + "1483116504", + "1", + "8", + "0", + "-1", + "18", + "2705", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986516", + "986516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116504", + "1483119211", + "1483119226", + "1483116504", + "1", + "8", + "0", + "-1", + "15", + "2707", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986518", + "986518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116505", + "1483119218", + "1483119233", + "1483116505", + "1", + "8", + "0", + "-1", + "15", + "2713", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986521", + "986521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116505", + "1483119225", + "1483119249", + "1483116505", + "1", + "8", + "0", + "-1", + "24", + "2720", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986525", + "986525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116506", + "1483119226", + "1483119252", + "1483116506", + "1", + "8", + "0", + "-1", + "26", + "2720", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986528", + "986528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116506", + "1483119227", + "1483119255", + "1483116506", + "1", + "8", + "0", + "-1", + "28", + "2721", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986535", + "986535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116507", + "1483119249", + "1483119268", + "1483116507", + "1", + "8", + "0", + "-1", + "19", + "2742", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986540", + "986540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116508", + "1483119256", + "1483119272", + "1483116508", + "1", + "8", + "0", + "-1", + "16", + "2748", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986542", + "986542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116508", + "1483119267", + "1483119282", + "1483116508", + "1", + "8", + "0", + "-1", + "15", + "2759", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986553", + "986553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116510", + "1483119271", + "1483119289", + "1483116510", + "1", + "8", + "0", + "-1", + "18", + "2761", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986556", + "986556", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116511", + "1483119272", + "1483119289", + "1483116511", + "1", + "8", + "0", + "-1", + "17", + "2761", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986559", + "986559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116511", + "1483119282", + "1483119307", + "1483116511", + "1", + "8", + "0", + "-1", + "25", + "2771", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986561", + "986561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116511", + "1483119286", + "1483119315", + "1483116511", + "1", + "8", + "0", + "-1", + "29", + "2775", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986571", + "986571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116513", + "1483119308", + "1483119330", + "1483116513", + "1", + "8", + "0", + "-1", + "22", + "2795", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986577", + "986577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116514", + "1483119316", + "1483119338", + "1483116514", + "1", + "8", + "0", + "-1", + "22", + "2802", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986582", + "986582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116515", + "1483119329", + "1483119356", + "1483116515", + "1", + "8", + "0", + "-1", + "27", + "2814", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986587", + "986587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116516", + "1483119339", + "1483119365", + "1483116516", + "1", + "8", + "0", + "-1", + "26", + "2823", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986589", + "986589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116516", + "1483119344", + "1483119364", + "1483116516", + "1", + "8", + "0", + "-1", + "20", + "2828", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986592", + "986592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116517", + "1483119345", + "1483119366", + "1483116517", + "1", + "8", + "0", + "-1", + "21", + "2828", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986595", + "986595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116517", + "1483119356", + "1483119378", + "1483116517", + "1", + "8", + "0", + "-1", + "22", + "2839", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986597", + "986597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116517", + "1483119359", + "1483119387", + "1483116517", + "1", + "8", + "0", + "-1", + "28", + "2842", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986610", + "986610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116519", + "1483119367", + "1483119394", + "1483116519", + "1", + "8", + "0", + "-1", + "27", + "2848", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986646", + "986646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116525", + "1483119460", + "1483119488", + "1483116525", + "1", + "8", + "0", + "-1", + "28", + "2935", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986659", + "986659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116528", + "1483119489", + "1483119518", + "1483116528", + "1", + "8", + "0", + "-1", + "29", + "2961", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986664", + "986664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116528", + "1483119500", + "1483119526", + "1483116528", + "1", + "8", + "0", + "-1", + "26", + "2972", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986669", + "986669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116529", + "1483119507", + "1483119532", + "1483116529", + "1", + "8", + "0", + "-1", + "25", + "2978", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986684", + "986684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116532", + "1483119565", + "1483119592", + "1483116532", + "1", + "8", + "0", + "-1", + "27", + "3033", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986687", + "986687", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116532", + "1483119565", + "1483119594", + "1483116532", + "1", + "8", + "0", + "-1", + "29", + "3033", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986692", + "986692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116533", + "1483119578", + "1483119601", + "1483116533", + "1", + "8", + "0", + "-1", + "23", + "3045", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986702", + "986702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116535", + "1483119602", + "1483119630", + "1483116535", + "1", + "8", + "0", + "-1", + "28", + "3067", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986707", + "986707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116535", + "1483119608", + "1483119631", + "1483116535", + "1", + "8", + "0", + "-1", + "23", + "3073", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986839", + "986839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116557", + "1483120079", + "1483120108", + "1483116557", + "1", + "8", + "0", + "-1", + "29", + "3522", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986843", + "986843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116558", + "1483120099", + "1483120126", + "1483116558", + "1", + "8", + "0", + "-1", + "27", + "3541", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986859", + "986859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116560", + "1483120134", + "1483120160", + "1483116560", + "1", + "8", + "0", + "-1", + "26", + "3574", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177000", + "177000", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116405", + "1483118831", + "1483118856", + "1483116405", + "1", + "8", + "0", + "-1", + "25", + "2426", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177004", + "177004", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116405", + "1483118857", + "1483118885", + "1483116405", + "1", + "8", + "0", + "-1", + "28", + "2452", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177008", + "177008", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116406", + "1483118886", + "1483118913", + "1483116406", + "1", + "8", + "0", + "-1", + "27", + "2480", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177011", + "177011", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116407", + "1483118913", + "1483118939", + "1483116407", + "1", + "8", + "0", + "-1", + "26", + "2506", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177015", + "177015", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116408", + "1483118940", + "1483118964", + "1483116408", + "1", + "8", + "0", + "-1", + "24", + "2532", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177035", + "177035", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116412", + "1483119136", + "1483119158", + "1483116412", + "1", + "8", + "0", + "-1", + "22", + "2724", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177039", + "177039", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116412", + "1483119159", + "1483119186", + "1483116412", + "1", + "8", + "0", + "-1", + "27", + "2747", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177046", + "177046", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116414", + "1483119230", + "1483119247", + "1483116414", + "1", + "8", + "0", + "-1", + "17", + "2816", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177050", + "177050", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116414", + "1483119248", + "1483119273", + "1483116414", + "1", + "8", + "0", + "-1", + "25", + "2834", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177082", + "177082", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116420", + "1483119613", + "1483119640", + "1483116420", + "1", + "8", + "0", + "-1", + "27", + "3193", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177093", + "177093", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116423", + "1483119783", + "1483119797", + "1483116423", + "1", + "8", + "0", + "-1", + "14", + "3360", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177097", + "177097", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116423", + "1483119798", + "1483119811", + "1483116423", + "1", + "8", + "0", + "-1", + "13", + "3375", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177101", + "177101", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116424", + "1483119811", + "1483119826", + "1483116424", + "1", + "8", + "0", + "-1", + "15", + "3387", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177105", + "177105", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116425", + "1483119826", + "1483119844", + "1483116425", + "1", + "8", + "0", + "-1", + "18", + "3401", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177108", + "177108", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116425", + "1483119844", + "1483119858", + "1483116425", + "1", + "8", + "0", + "-1", + "14", + "3419", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177112", + "177112", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116426", + "1483119858", + "1483119871", + "1483116426", + "1", + "8", + "0", + "-1", + "13", + "3432", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177116", + "177116", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116427", + "1483119872", + "1483119893", + "1483116427", + "1", + "8", + "0", + "-1", + "21", + "3445", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177124", + "177124", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116428", + "1483119935", + "1483119949", + "1483116428", + "1", + "8", + "0", + "-1", + "14", + "3507", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177128", + "177128", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116429", + "1483119950", + "1483119963", + "1483116429", + "1", + "8", + "0", + "-1", + "13", + "3521", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177132", + "177132", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116430", + "1483119963", + "1483119979", + "1483116430", + "1", + "8", + "0", + "-1", + "16", + "3533", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177136", + "177136", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116431", + "1483119979", + "1483119998", + "1483116431", + "1", + "8", + "0", + "-1", + "19", + "3548", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177140", + "177140", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116431", + "1483119998", + "1483120016", + "1483116431", + "1", + "8", + "0", + "-1", + "18", + "3567", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177143", + "177143", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116432", + "1483120016", + "1483120030", + "1483116432", + "1", + "8", + "0", + "-1", + "14", + "3584", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177147", + "177147", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116433", + "1483120030", + "1483120048", + "1483116433", + "1", + "8", + "0", + "-1", + "18", + "3597", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6108545", + "6108545", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483064269", + "1483080379", + "1483080389", + "1483064269", + "1", + "1", + "0", + "-1", + "10", + "16110", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "125Gn", + "86400", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6111037[521]", + "6111598", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483129882", + "1483129901", + "1483125913", + "1", + "1", + "0", + "-1", + "19", + "3970", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[550]", + "6111627", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483130147", + "1483130170", + "1483125913", + "1", + "1", + "0", + "-1", + "23", + "4235", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[556]", + "6111633", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483130147", + "1483130169", + "1483125913", + "1", + "1", + "0", + "-1", + "22", + "4235", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[557]", + "6111634", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483130147", + "1483130157", + "1483125913", + "1", + "1", + "0", + "-1", + "10", + "4235", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111037[559]", + "6111636", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483125912", + "1483130279", + "1483130296", + "1483125913", + "1", + "1", + "0", + "-1", + "17", + "4367", + "17", + "0", + "0:0", + "COMPLETED", + "1", + "2147487648Mn", + "900", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[268]", + "6111973", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132272", + "1483132285", + "1483128563", + "1", + "1", + "0", + "-1", + "13", + "3712", + "13", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[281]", + "6111986", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132272", + "1483132297", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "3712", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[286]", + "6111992", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132410", + "1483132437", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "3850", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[291]", + "6111997", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132410", + "1483132436", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "3850", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[292]", + "6111998", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132410", + "1483132437", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "3850", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[293]", + "6111999", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132410", + "1483132436", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "3850", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[310]", + "6112016", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132547", + "1483132563", + "1483128563", + "1", + "1", + "0", + "-1", + "16", + "3987", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[311]", + "6112017", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132547", + "1483132576", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "3987", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[319]", + "6112028", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132681", + "1483132708", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "4121", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[321]", + "6112030", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132681", + "1483132710", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "4121", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[325]", + "6112034", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132681", + "1483132688", + "1483128563", + "1", + "1", + "0", + "-1", + "7", + "4121", + "7", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[326]", + "6112035", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132681", + "1483132705", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "4121", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[331]", + "6112040", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132681", + "1483132710", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "4121", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[336]", + "6112050", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132814", + "1483132839", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "4254", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[355]", + "6112069", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132949", + "1483132973", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "4389", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[356]", + "6112070", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132949", + "1483132974", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "4389", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[365]", + "6112079", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483132949", + "1483132964", + "1483128563", + "1", + "1", + "0", + "-1", + "15", + "4389", + "15", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[388]", + "6112102", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133083", + "1483133104", + "1483128563", + "1", + "1", + "0", + "-1", + "21", + "4523", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[395]", + "6112109", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133218", + "1483133234", + "1483128563", + "1", + "1", + "0", + "-1", + "16", + "4658", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[414]", + "6112128", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133352", + "1483133380", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "4792", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[415]", + "6112129", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133352", + "1483133378", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "4792", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[425]", + "6112139", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133352", + "1483133364", + "1483128563", + "1", + "1", + "0", + "-1", + "12", + "4792", + "12", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[431]", + "6112145", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133483", + "1483133498", + "1483128563", + "1", + "1", + "0", + "-1", + "15", + "4923", + "15", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[436]", + "6112150", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133483", + "1483133507", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "4923", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[437]", + "6112151", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133483", + "1483133509", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "4923", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[440]", + "6112154", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133483", + "1483133508", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "4923", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[441]", + "6112155", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133483", + "1483133505", + "1483128563", + "1", + "1", + "0", + "-1", + "22", + "4923", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[450]", + "6112164", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133616", + "1483133643", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "5056", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[453]", + "6112167", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133616", + "1483133643", + "1483128563", + "1", + "1", + "0", + "-1", + "27", + "5056", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[460]", + "6112174", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133616", + "1483133639", + "1483128563", + "1", + "1", + "0", + "-1", + "23", + "5056", + "23", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[469]", + "6112184", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133748", + "1483133777", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "5188", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[470]", + "6112185", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133748", + "1483133770", + "1483128563", + "1", + "1", + "0", + "-1", + "22", + "5188", + "22", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[477]", + "6112192", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133748", + "1483133776", + "1483128563", + "1", + "1", + "0", + "-1", + "28", + "5188", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[482]", + "6112197", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133882", + "1483133907", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "5322", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[483]", + "6112198", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483133882", + "1483133906", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "5322", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[514]", + "6112229", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134016", + "1483134042", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "5456", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[521]", + "6112237", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134160", + "1483128563", + "1", + "1", + "0", + "-1", + "16", + "5584", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[526]", + "6112242", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134169", + "1483128563", + "1", + "1", + "0", + "-1", + "25", + "5584", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[527]", + "6112243", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134168", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "5584", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[528]", + "6112244", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134165", + "1483128563", + "1", + "1", + "0", + "-1", + "21", + "5584", + "21", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[533]", + "6112249", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134170", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "5584", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[538]", + "6112254", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134144", + "1483134168", + "1483128563", + "1", + "1", + "0", + "-1", + "24", + "5584", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[547]", + "6112263", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134282", + "1483134311", + "1483128563", + "1", + "1", + "0", + "-1", + "29", + "5722", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[550]", + "6112266", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134282", + "1483134299", + "1483128563", + "1", + "1", + "0", + "-1", + "17", + "5722", + "17", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[555]", + "6112271", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134282", + "1483134308", + "1483128563", + "1", + "1", + "0", + "-1", + "26", + "5722", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[556]", + "6112272", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134282", + "1483134290", + "1483128563", + "1", + "1", + "0", + "-1", + "8", + "5722", + "8", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6111392[558]", + "6112274", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483128560", + "1483134408", + "1483134415", + "1483128563", + "1", + "1", + "0", + "-1", + "7", + "5848", + "7", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[336]", + "6112626", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139250", + "1483139275", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "3602", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[341]", + "6112631", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139250", + "1483139279", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "3602", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[355]", + "6112645", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139383", + "1483139409", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "3735", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[356]", + "6112646", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139383", + "1483139409", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "3735", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[365]", + "6112655", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139383", + "1483139395", + "1483135648", + "1", + "1", + "0", + "-1", + "12", + "3735", + "12", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[379]", + "6112669", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139509", + "1483139538", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "3861", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[388]", + "6112678", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139509", + "1483139527", + "1483135648", + "1", + "1", + "0", + "-1", + "18", + "3861", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[395]", + "6112685", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139645", + "1483139663", + "1483135648", + "1", + "1", + "0", + "-1", + "18", + "3997", + "18", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[414]", + "6112704", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139776", + "1483139802", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "4128", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[415]", + "6112705", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139776", + "1483139800", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "4128", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[425]", + "6112715", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139777", + "1483139793", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "4129", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[431]", + "6112721", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139927", + "1483135648", + "1", + "1", + "0", + "-1", + "14", + "4265", + "14", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[435]", + "6112725", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139940", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "4265", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[436]", + "6112726", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139937", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "4265", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[437]", + "6112727", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139939", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "4265", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[440]", + "6112730", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139939", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "4265", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[441]", + "6112731", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139937", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "4265", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[447]", + "6112737", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483139913", + "1483139940", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "4265", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[450]", + "6112741", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140044", + "1483140071", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "4396", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[453]", + "6112744", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140044", + "1483140072", + "1483135648", + "1", + "1", + "0", + "-1", + "28", + "4396", + "28", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[460]", + "6112751", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140044", + "1483140056", + "1483135648", + "1", + "1", + "0", + "-1", + "12", + "4396", + "12", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[470]", + "6112763", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140171", + "1483140196", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "4523", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[482]", + "6112775", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140171", + "1483140196", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "4523", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[483]", + "6112776", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140171", + "1483140196", + "1483135648", + "1", + "1", + "0", + "-1", + "25", + "4523", + "25", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[508]", + "6112802", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140441", + "1483140470", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "4793", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[511]", + "6112805", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140441", + "1483140470", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "4793", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[514]", + "6112808", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140441", + "1483140470", + "1483135648", + "1", + "1", + "0", + "-1", + "29", + "4793", + "29", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[521]", + "6112815", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140441", + "1483140451", + "1483135648", + "1", + "1", + "0", + "-1", + "10", + "4793", + "10", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[526]", + "6112820", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140572", + "1483140598", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "4924", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[527]", + "6112821", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140572", + "1483140596", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "4924", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[528]", + "6112822", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140572", + "1483140588", + "1483135648", + "1", + "1", + "0", + "-1", + "16", + "4924", + "16", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[538]", + "6112832", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140572", + "1483140596", + "1483135648", + "1", + "1", + "0", + "-1", + "24", + "4924", + "24", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[546]", + "6112840", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140727", + "1483135648", + "1", + "1", + "0", + "-1", + "27", + "5052", + "27", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[547]", + "6112841", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140726", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "5052", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[550]", + "6112844", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140711", + "1483135648", + "1", + "1", + "0", + "-1", + "11", + "5052", + "11", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[555]", + "6112849", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140726", + "1483135648", + "1", + "1", + "0", + "-1", + "26", + "5052", + "26", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[556]", + "6112850", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140719", + "1483135648", + "1", + "1", + "0", + "-1", + "19", + "5052", + "19", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "6112283[558]", + "6112852", + "Robertson", + "UTC", + "", + "Grey, Great", + "Screwdriver", + "curry", + "1483135648", + "1483140700", + "1483140709", + "1483135648", + "1", + "1", + "0", + "-1", + "9", + "5052", + "9", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "10800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Decision, Risk, and Management Science" + ], + [ + "986877", + "986877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116563", + "1483120174", + "1483120203", + "1483116563", + "1", + "8", + "0", + "-1", + "29", + "3611", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986895", + "986895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116566", + "1483120223", + "1483120246", + "1483116566", + "1", + "8", + "0", + "-1", + "23", + "3657", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986917", + "986917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116569", + "1483120303", + "1483120329", + "1483116569", + "1", + "8", + "0", + "-1", + "26", + "3734", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986930", + "986930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116572", + "1483120332", + "1483120356", + "1483116572", + "1", + "8", + "0", + "-1", + "24", + "3760", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986933", + "986933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116572", + "1483120342", + "1483120362", + "1483116572", + "1", + "8", + "0", + "-1", + "20", + "3770", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986956", + "986956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116576", + "1483120418", + "1483120442", + "1483116576", + "1", + "8", + "0", + "-1", + "24", + "3842", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986958", + "986958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116576", + "1483120436", + "1483120457", + "1483116576", + "1", + "8", + "0", + "-1", + "21", + "3860", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986970", + "986970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116578", + "1483120454", + "1483120481", + "1483116578", + "1", + "8", + "0", + "-1", + "27", + "3876", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986990", + "986990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116582", + "1483120536", + "1483120564", + "1483116582", + "1", + "8", + "0", + "-1", + "28", + "3954", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986993", + "986993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116582", + "1483120540", + "1483120567", + "1483116582", + "1", + "8", + "0", + "-1", + "27", + "3958", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986995", + "986995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116582", + "1483120543", + "1483120565", + "1483116582", + "1", + "8", + "0", + "-1", + "22", + "3961", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "986998", + "986998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116583", + "1483120552", + "1483120581", + "1483116583", + "1", + "8", + "0", + "-1", + "29", + "3969", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987000", + "987000", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116583", + "1483120564", + "1483120593", + "1483116583", + "1", + "8", + "0", + "-1", + "29", + "3981", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987003", + "987003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116584", + "1483120565", + "1483120592", + "1483116584", + "1", + "8", + "0", + "-1", + "27", + "3981", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987006", + "987006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116584", + "1483120567", + "1483120592", + "1483116584", + "1", + "8", + "0", + "-1", + "25", + "3983", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987029", + "987029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116588", + "1483120640", + "1483120667", + "1483116588", + "1", + "8", + "0", + "-1", + "27", + "4052", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987031", + "987031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116588", + "1483120642", + "1483120662", + "1483116588", + "1", + "8", + "0", + "-1", + "20", + "4054", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987039", + "987039", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116590", + "1483120662", + "1483120688", + "1483116590", + "1", + "8", + "0", + "-1", + "26", + "4072", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987047", + "987047", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116591", + "1483120682", + "1483120704", + "1483116591", + "1", + "8", + "0", + "-1", + "22", + "4091", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987065", + "987065", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116594", + "1483120730", + "1483120750", + "1483116594", + "1", + "8", + "0", + "-1", + "20", + "4136", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987070", + "987070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116595", + "1483120741", + "1483120765", + "1483116595", + "1", + "8", + "0", + "-1", + "24", + "4146", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987082", + "987082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116597", + "1483120766", + "1483120785", + "1483116597", + "1", + "8", + "0", + "-1", + "19", + "4169", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987117", + "987117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116602", + "1483120858", + "1483120887", + "1483116602", + "1", + "8", + "0", + "-1", + "29", + "4256", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987122", + "987122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116603", + "1483120868", + "1483120890", + "1483116603", + "1", + "8", + "0", + "-1", + "22", + "4265", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987144", + "987144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116607", + "1483120952", + "1483120981", + "1483116607", + "1", + "8", + "0", + "-1", + "29", + "4345", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987157", + "987157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116609", + "1483120969", + "1483120993", + "1483116609", + "1", + "8", + "0", + "-1", + "24", + "4360", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987160", + "987160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116610", + "1483120982", + "1483121004", + "1483116610", + "1", + "8", + "0", + "-1", + "22", + "4372", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987192", + "987192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116615", + "1483121075", + "1483121100", + "1483116615", + "1", + "8", + "0", + "-1", + "25", + "4460", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987222", + "987222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116620", + "1483121174", + "1483121202", + "1483116620", + "1", + "8", + "0", + "-1", + "28", + "4554", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987235", + "987235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116622", + "1483121203", + "1483121232", + "1483116622", + "1", + "8", + "0", + "-1", + "29", + "4581", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987267", + "987267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116627", + "1483121318", + "1483121347", + "1483116627", + "1", + "8", + "0", + "-1", + "29", + "4691", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987295", + "987295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116632", + "1483121398", + "1483121424", + "1483116632", + "1", + "8", + "0", + "-1", + "26", + "4766", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987300", + "987300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116632", + "1483121413", + "1483121440", + "1483116632", + "1", + "8", + "0", + "-1", + "27", + "4781", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987303", + "987303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116633", + "1483121424", + "1483121453", + "1483116633", + "1", + "8", + "0", + "-1", + "29", + "4791", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987305", + "987305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116633", + "1483121433", + "1483121461", + "1483116633", + "1", + "8", + "0", + "-1", + "28", + "4800", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987308", + "987308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116634", + "1483121441", + "1483121470", + "1483116634", + "1", + "8", + "0", + "-1", + "29", + "4807", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987310", + "987310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116634", + "1483121446", + "1483121469", + "1483116634", + "1", + "8", + "0", + "-1", + "23", + "4812", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987329", + "987329", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116637", + "1483121488", + "1483121517", + "1483116637", + "1", + "8", + "0", + "-1", + "29", + "4851", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987340", + "987340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116639", + "1483121509", + "1483121538", + "1483116639", + "1", + "8", + "0", + "-1", + "29", + "4870", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987347", + "987347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116640", + "1483121521", + "1483121543", + "1483116640", + "1", + "8", + "0", + "-1", + "22", + "4881", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987368", + "987368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116644", + "1483121581", + "1483121608", + "1483116644", + "1", + "8", + "0", + "-1", + "27", + "4937", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987371", + "987371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116644", + "1483121585", + "1483121605", + "1483116644", + "1", + "8", + "0", + "-1", + "20", + "4941", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987373", + "987373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116645", + "1483121595", + "1483121619", + "1483116645", + "1", + "8", + "0", + "-1", + "24", + "4950", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987381", + "987381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116646", + "1483121608", + "1483121634", + "1483116646", + "1", + "8", + "0", + "-1", + "26", + "4962", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987383", + "987383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116646", + "1483121619", + "1483121647", + "1483116646", + "1", + "8", + "0", + "-1", + "28", + "4973", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987386", + "987386", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116647", + "1483121629", + "1483121651", + "1483116647", + "1", + "8", + "0", + "-1", + "22", + "4982", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987389", + "987389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116647", + "1483121631", + "1483121656", + "1483116647", + "1", + "8", + "0", + "-1", + "25", + "4984", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987403", + "987403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116650", + "1483121670", + "1483121697", + "1483116650", + "1", + "8", + "0", + "-1", + "27", + "5020", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987405", + "987405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116650", + "1483121677", + "1483121704", + "1483116650", + "1", + "8", + "0", + "-1", + "27", + "5027", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987418", + "987418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116652", + "1483121698", + "1483121723", + "1483116652", + "1", + "8", + "0", + "-1", + "25", + "5046", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987420", + "987420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116652", + "1483121704", + "1483121733", + "1483116652", + "1", + "8", + "0", + "-1", + "29", + "5052", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987428", + "987428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116654", + "1483121723", + "1483121741", + "1483116654", + "1", + "8", + "0", + "-1", + "18", + "5069", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987441", + "987441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116656", + "1483121754", + "1483121781", + "1483116656", + "1", + "8", + "0", + "-1", + "27", + "5098", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987447", + "987447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116657", + "1483121761", + "1483121783", + "1483116657", + "1", + "8", + "0", + "-1", + "22", + "5104", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987459", + "987459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116659", + "1483121784", + "1483121812", + "1483116659", + "1", + "8", + "0", + "-1", + "28", + "5125", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987464", + "987464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116660", + "1483121787", + "1483121816", + "1483116660", + "1", + "8", + "0", + "-1", + "29", + "5127", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987487", + "987487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116664", + "1483121817", + "1483121844", + "1483116664", + "1", + "8", + "0", + "-1", + "27", + "5153", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987489", + "987489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116664", + "1483121830", + "1483121859", + "1483116664", + "1", + "8", + "0", + "-1", + "29", + "5166", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987499", + "987499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116665", + "1483121860", + "1483121886", + "1483116665", + "1", + "8", + "0", + "-1", + "26", + "5195", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987504", + "987504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116666", + "1483121875", + "1483121902", + "1483116666", + "1", + "8", + "0", + "-1", + "27", + "5209", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987542", + "987542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116673", + "1483121989", + "1483122018", + "1483116673", + "1", + "8", + "0", + "-1", + "29", + "5316", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987576", + "987576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116678", + "1483122070", + "1483122097", + "1483116678", + "1", + "8", + "0", + "-1", + "27", + "5392", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987718", + "987718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116738", + "1483122611", + "1483122635", + "1483116738", + "1", + "8", + "0", + "-1", + "24", + "5873", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987736", + "987736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116801", + "1483122675", + "1483122702", + "1483116801", + "1", + "8", + "0", + "-1", + "27", + "5874", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987754", + "987754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116878", + "1483122743", + "1483122763", + "1483116878", + "1", + "8", + "0", + "-1", + "20", + "5865", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987768", + "987768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116922", + "1483122793", + "1483122813", + "1483116922", + "1", + "8", + "0", + "-1", + "20", + "5871", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987774", + "987774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116938", + "1483122813", + "1483122837", + "1483116938", + "1", + "8", + "0", + "-1", + "24", + "5875", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987778", + "987778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116943", + "1483122837", + "1483122865", + "1483116943", + "1", + "8", + "0", + "-1", + "28", + "5894", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987780", + "987780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116945", + "1483122847", + "1483122876", + "1483116945", + "1", + "8", + "0", + "-1", + "29", + "5902", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987804", + "987804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117026", + "1483122892", + "1483122911", + "1483117026", + "1", + "8", + "0", + "-1", + "19", + "5866", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987806", + "987806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117030", + "1483122902", + "1483122923", + "1483117030", + "1", + "8", + "0", + "-1", + "21", + "5872", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987810", + "987810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117034", + "1483122912", + "1483122940", + "1483117034", + "1", + "8", + "0", + "-1", + "28", + "5878", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987812", + "987812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117036", + "1483122921", + "1483122942", + "1483117036", + "1", + "8", + "0", + "-1", + "21", + "5885", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987820", + "987820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117065", + "1483122940", + "1483122961", + "1483117065", + "1", + "8", + "0", + "-1", + "21", + "5875", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987824", + "987824", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117073", + "1483122956", + "1483122980", + "1483117073", + "1", + "8", + "0", + "-1", + "24", + "5883", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987828", + "987828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117081", + "1483122962", + "1483122981", + "1483117081", + "1", + "8", + "0", + "-1", + "19", + "5881", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987830", + "987830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117090", + "1483122975", + "1483122994", + "1483117090", + "1", + "8", + "0", + "-1", + "19", + "5885", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987832", + "987832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117091", + "1483122976", + "1483122990", + "1483117091", + "1", + "8", + "0", + "-1", + "14", + "5885", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987840", + "987840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117099", + "1483122991", + "1483123009", + "1483117099", + "1", + "8", + "0", + "-1", + "18", + "5892", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987842", + "987842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117118", + "1483122995", + "1483123015", + "1483117118", + "1", + "8", + "0", + "-1", + "20", + "5877", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987844", + "987844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117118", + "1483122996", + "1483123015", + "1483117118", + "1", + "8", + "0", + "-1", + "19", + "5878", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987852", + "987852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117142", + "1483123020", + "1483123046", + "1483117142", + "1", + "8", + "0", + "-1", + "26", + "5878", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987856", + "987856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117145", + "1483123043", + "1483123062", + "1483117145", + "1", + "8", + "0", + "-1", + "19", + "5898", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987858", + "987858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117147", + "1483123046", + "1483123070", + "1483117147", + "1", + "8", + "0", + "-1", + "24", + "5899", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987860", + "987860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117148", + "1483123051", + "1483123068", + "1483117148", + "1", + "8", + "0", + "-1", + "17", + "5903", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987864", + "987864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117154", + "1483123063", + "1483123081", + "1483117154", + "1", + "8", + "0", + "-1", + "18", + "5909", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987872", + "987872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117178", + "1483123071", + "1483123098", + "1483117178", + "1", + "8", + "0", + "-1", + "27", + "5893", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987902", + "987902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117240", + "1483123178", + "1483123202", + "1483117240", + "1", + "8", + "0", + "-1", + "24", + "5938", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987916", + "987916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117288", + "1483123213", + "1483123231", + "1483117288", + "1", + "8", + "0", + "-1", + "18", + "5925", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987918", + "987918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117289", + "1483123229", + "1483123254", + "1483117289", + "1", + "8", + "0", + "-1", + "25", + "5940", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987920", + "987920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117301", + "1483123232", + "1483123260", + "1483117301", + "1", + "8", + "0", + "-1", + "28", + "5931", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987936", + "987936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117376", + "1483123310", + "1483123336", + "1483117376", + "1", + "8", + "0", + "-1", + "26", + "5934", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987938", + "987938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117381", + "1483123311", + "1483123335", + "1483117381", + "1", + "8", + "0", + "-1", + "24", + "5930", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987954", + "987954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117447", + "1483123372", + "1483123400", + "1483117447", + "1", + "8", + "0", + "-1", + "28", + "5925", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987966", + "987966", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117514", + "1483123399", + "1483123421", + "1483117514", + "1", + "8", + "0", + "-1", + "22", + "5885", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987968", + "987968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117523", + "1483123400", + "1483123415", + "1483117523", + "1", + "8", + "0", + "-1", + "15", + "5877", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987972", + "987972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117530", + "1483123416", + "1483123437", + "1483117530", + "1", + "8", + "0", + "-1", + "21", + "5886", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987980", + "987980", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117585", + "1483123438", + "1483123458", + "1483117585", + "1", + "8", + "0", + "-1", + "20", + "5853", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987982", + "987982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117585", + "1483123439", + "1483123459", + "1483117585", + "1", + "8", + "0", + "-1", + "20", + "5854", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "987994", + "987994", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117657", + "1483123493", + "1483123517", + "1483117657", + "1", + "8", + "0", + "-1", + "24", + "5836", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988002", + "988002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117749", + "1483123503", + "1483123528", + "1483117749", + "1", + "8", + "0", + "-1", + "25", + "5754", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988006", + "988006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117769", + "1483123518", + "1483123544", + "1483117769", + "1", + "8", + "0", + "-1", + "26", + "5749", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988008", + "988008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117785", + "1483123529", + "1483123554", + "1483117785", + "1", + "8", + "0", + "-1", + "25", + "5744", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988020", + "988020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117880", + "1483123562", + "1483123584", + "1483117880", + "1", + "8", + "0", + "-1", + "22", + "5682", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988030", + "988030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117935", + "1483123599", + "1483123620", + "1483117935", + "1", + "8", + "0", + "-1", + "21", + "5664", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988036", + "988036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117942", + "1483123619", + "1483123645", + "1483117942", + "1", + "8", + "0", + "-1", + "26", + "5677", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988038", + "988038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117943", + "1483123621", + "1483123644", + "1483117943", + "1", + "8", + "0", + "-1", + "23", + "5678", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988050", + "988050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118023", + "1483123645", + "1483123661", + "1483118023", + "1", + "8", + "0", + "-1", + "16", + "5622", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988060", + "988060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118067", + "1483123674", + "1483123701", + "1483118067", + "1", + "8", + "0", + "-1", + "27", + "5607", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988062", + "988062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118071", + "1483123681", + "1483123704", + "1483118071", + "1", + "8", + "0", + "-1", + "23", + "5610", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988064", + "988064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118076", + "1483123683", + "1483123707", + "1483118076", + "1", + "8", + "0", + "-1", + "24", + "5607", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988088", + "988088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118155", + "1483123770", + "1483123796", + "1483118155", + "1", + "8", + "0", + "-1", + "26", + "5615", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988098", + "988098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118178", + "1483123820", + "1483123845", + "1483118178", + "1", + "8", + "0", + "-1", + "25", + "5642", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988114", + "988114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118227", + "1483123886", + "1483123914", + "1483118227", + "1", + "8", + "0", + "-1", + "28", + "5659", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988116", + "988116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118233", + "1483123891", + "1483123920", + "1483118233", + "1", + "8", + "0", + "-1", + "29", + "5658", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988166", + "988166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118356", + "1483124048", + "1483124072", + "1483118356", + "1", + "8", + "0", + "-1", + "24", + "5692", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988178", + "988178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118375", + "1483124080", + "1483124099", + "1483118375", + "1", + "8", + "0", + "-1", + "19", + "5705", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988202", + "988202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118436", + "1483124169", + "1483124189", + "1483118436", + "1", + "8", + "0", + "-1", + "20", + "5733", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988204", + "988204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118436", + "1483124170", + "1483124191", + "1483118436", + "1", + "8", + "0", + "-1", + "21", + "5734", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988258", + "988258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118564", + "1483124399", + "1483124425", + "1483118564", + "1", + "8", + "0", + "-1", + "26", + "5835", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988264", + "988264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118578", + "1483124421", + "1483124448", + "1483118578", + "1", + "8", + "0", + "-1", + "27", + "5843", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988302", + "988302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118652", + "1483124559", + "1483124587", + "1483118652", + "1", + "8", + "0", + "-1", + "28", + "5907", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988320", + "988320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118705", + "1483124632", + "1483124655", + "1483118705", + "1", + "8", + "0", + "-1", + "23", + "5927", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988330", + "988330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118720", + "1483124655", + "1483124676", + "1483118720", + "1", + "8", + "0", + "-1", + "21", + "5935", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988334", + "988334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118728", + "1483124665", + "1483124686", + "1483118728", + "1", + "8", + "0", + "-1", + "21", + "5937", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988338", + "988338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118734", + "1483124677", + "1483124697", + "1483118734", + "1", + "8", + "0", + "-1", + "20", + "5943", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988344", + "988344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118751", + "1483124697", + "1483124726", + "1483118751", + "1", + "8", + "0", + "-1", + "29", + "5946", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988350", + "988350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118769", + "1483124713", + "1483124732", + "1483118769", + "1", + "8", + "0", + "-1", + "19", + "5944", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988358", + "988358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118782", + "1483124728", + "1483124757", + "1483118782", + "1", + "8", + "0", + "-1", + "29", + "5946", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988368", + "988368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118804", + "1483124758", + "1483124778", + "1483118804", + "1", + "8", + "0", + "-1", + "20", + "5954", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988378", + "988378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118821", + "1483124787", + "1483124812", + "1483118821", + "1", + "8", + "0", + "-1", + "25", + "5966", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988396", + "988396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118883", + "1483124840", + "1483124862", + "1483118883", + "1", + "8", + "0", + "-1", + "22", + "5957", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988398", + "988398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118884", + "1483124847", + "1483124866", + "1483118884", + "1", + "8", + "0", + "-1", + "19", + "5963", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988416", + "988416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118935", + "1483124894", + "1483124913", + "1483118935", + "1", + "8", + "0", + "-1", + "19", + "5959", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988418", + "988418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118942", + "1483124898", + "1483124919", + "1483118942", + "1", + "8", + "0", + "-1", + "21", + "5956", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988430", + "988430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119001", + "1483124953", + "1483124973", + "1483119001", + "1", + "8", + "0", + "-1", + "20", + "5952", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988432", + "988432", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119002", + "1483124953", + "1483124970", + "1483119002", + "1", + "8", + "0", + "-1", + "17", + "5951", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988436", + "988436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119023", + "1483124970", + "1483124996", + "1483119023", + "1", + "8", + "0", + "-1", + "26", + "5947", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988438", + "988438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119027", + "1483124974", + "1483124990", + "1483119027", + "1", + "8", + "0", + "-1", + "16", + "5947", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988450", + "988450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119070", + "1483124997", + "1483125014", + "1483119070", + "1", + "8", + "0", + "-1", + "17", + "5927", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988452", + "988452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119088", + "1483124997", + "1483125019", + "1483119088", + "1", + "8", + "0", + "-1", + "22", + "5909", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988454", + "988454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119090", + "1483125015", + "1483125042", + "1483119090", + "1", + "8", + "0", + "-1", + "27", + "5925", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988456", + "988456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119092", + "1483125020", + "1483125047", + "1483119092", + "1", + "8", + "0", + "-1", + "27", + "5928", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988484", + "988484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119152", + "1483125124", + "1483125148", + "1483119152", + "1", + "8", + "0", + "-1", + "24", + "5972", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988486", + "988486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119159", + "1483125143", + "1483125171", + "1483119159", + "1", + "8", + "0", + "-1", + "28", + "5984", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988496", + "988496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119169", + "1483125163", + "1483125190", + "1483119169", + "1", + "8", + "0", + "-1", + "27", + "5994", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988514", + "988514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119218", + "1483125240", + "1483125260", + "1483119218", + "1", + "8", + "0", + "-1", + "20", + "6022", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988516", + "988516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119225", + "1483125251", + "1483125277", + "1483119225", + "1", + "8", + "0", + "-1", + "26", + "6026", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988518", + "988518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119226", + "1483125258", + "1483125279", + "1483119226", + "1", + "8", + "0", + "-1", + "21", + "6032", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988520", + "988520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119226", + "1483125259", + "1483125283", + "1483119226", + "1", + "8", + "0", + "-1", + "24", + "6033", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988524", + "988524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119230", + "1483125266", + "1483125291", + "1483119230", + "1", + "8", + "0", + "-1", + "25", + "6036", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988546", + "988546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119282", + "1483125364", + "1483125390", + "1483119282", + "1", + "8", + "0", + "-1", + "26", + "6082", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988550", + "988550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119289", + "1483125374", + "1483125401", + "1483119289", + "1", + "8", + "0", + "-1", + "27", + "6085", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988558", + "988558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119308", + "1483125402", + "1483125431", + "1483119308", + "1", + "8", + "0", + "-1", + "29", + "6094", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988568", + "988568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119338", + "1483125443", + "1483125472", + "1483119338", + "1", + "8", + "0", + "-1", + "29", + "6105", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988582", + "988582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119366", + "1483125473", + "1483125499", + "1483119366", + "1", + "8", + "0", + "-1", + "26", + "6107", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988586", + "988586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119366", + "1483125496", + "1483125524", + "1483119366", + "1", + "8", + "0", + "-1", + "28", + "6130", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988602", + "988602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119415", + "1483125536", + "1483125565", + "1483119415", + "1", + "8", + "0", + "-1", + "29", + "6121", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988608", + "988608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119438", + "1483125558", + "1483125584", + "1483119438", + "1", + "8", + "0", + "-1", + "26", + "6120", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988614", + "988614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119459", + "1483125569", + "1483125597", + "1483119459", + "1", + "8", + "0", + "-1", + "28", + "6110", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988616", + "988616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119462", + "1483125584", + "1483125610", + "1483119462", + "1", + "8", + "0", + "-1", + "26", + "6122", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988626", + "988626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119492", + "1483125600", + "1483125625", + "1483119492", + "1", + "8", + "0", + "-1", + "25", + "6108", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988628", + "988628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119500", + "1483125611", + "1483125631", + "1483119500", + "1", + "8", + "0", + "-1", + "20", + "6111", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988630", + "988630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119505", + "1483125616", + "1483125634", + "1483119505", + "1", + "8", + "0", + "-1", + "18", + "6111", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988632", + "988632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119506", + "1483125625", + "1483125650", + "1483119506", + "1", + "8", + "0", + "-1", + "25", + "6119", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988648", + "988648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119566", + "1483125670", + "1483125699", + "1483119566", + "1", + "8", + "0", + "-1", + "29", + "6104", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988656", + "988656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119594", + "1483125696", + "1483125717", + "1483119594", + "1", + "8", + "0", + "-1", + "21", + "6102", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988662", + "988662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119607", + "1483125708", + "1483125731", + "1483119607", + "1", + "8", + "0", + "-1", + "23", + "6101", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988664", + "988664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119608", + "1483125718", + "1483125747", + "1483119608", + "1", + "8", + "0", + "-1", + "29", + "6110", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988676", + "988676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119651", + "1483125763", + "1483125782", + "1483119651", + "1", + "8", + "0", + "-1", + "19", + "6112", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988678", + "988678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119664", + "1483125778", + "1483125795", + "1483119664", + "1", + "8", + "0", + "-1", + "17", + "6114", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988680", + "988680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119665", + "1483125781", + "1483125808", + "1483119665", + "1", + "8", + "0", + "-1", + "27", + "6116", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988686", + "988686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119710", + "1483125784", + "1483125802", + "1483119710", + "1", + "8", + "0", + "-1", + "18", + "6074", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988688", + "988688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119718", + "1483125796", + "1483125823", + "1483119718", + "1", + "8", + "0", + "-1", + "27", + "6078", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988690", + "988690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119725", + "1483125802", + "1483125822", + "1483119725", + "1", + "8", + "0", + "-1", + "20", + "6077", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988692", + "988692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119734", + "1483125804", + "1483125825", + "1483119734", + "1", + "8", + "0", + "-1", + "21", + "6070", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988700", + "988700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119796", + "1483125826", + "1483125850", + "1483119796", + "1", + "8", + "0", + "-1", + "24", + "6030", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988702", + "988702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119799", + "1483125828", + "1483125852", + "1483119799", + "1", + "8", + "0", + "-1", + "24", + "6029", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988712", + "988712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119865", + "1483125858", + "1483125886", + "1483119865", + "1", + "8", + "0", + "-1", + "28", + "5993", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988732", + "988732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119943", + "1483125919", + "1483125948", + "1483119943", + "1", + "8", + "0", + "-1", + "29", + "5976", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988734", + "988734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119956", + "1483125941", + "1483125969", + "1483119956", + "1", + "8", + "0", + "-1", + "28", + "5985", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988748", + "988748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120010", + "1483125989", + "1483126015", + "1483120010", + "1", + "8", + "0", + "-1", + "26", + "5979", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988768", + "988768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120079", + "1483126095", + "1483126119", + "1483120079", + "1", + "8", + "0", + "-1", + "24", + "6016", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988770", + "988770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120099", + "1483126106", + "1483126132", + "1483120099", + "1", + "8", + "0", + "-1", + "26", + "6007", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988772", + "988772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120102", + "1483126106", + "1483126135", + "1483120102", + "1", + "8", + "0", + "-1", + "29", + "6004", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988774", + "988774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120103", + "1483126113", + "1483126142", + "1483120103", + "1", + "8", + "0", + "-1", + "29", + "6010", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988784", + "988784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120136", + "1483126136", + "1483126154", + "1483120136", + "1", + "8", + "0", + "-1", + "18", + "6000", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988786", + "988786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120136", + "1483126143", + "1483126161", + "1483120136", + "1", + "8", + "0", + "-1", + "18", + "6007", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988790", + "988790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120157", + "1483126154", + "1483126174", + "1483120157", + "1", + "8", + "0", + "-1", + "20", + "5997", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988794", + "988794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120166", + "1483126162", + "1483126189", + "1483120166", + "1", + "8", + "0", + "-1", + "27", + "5996", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988806", + "988806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120210", + "1483126204", + "1483126225", + "1483120210", + "1", + "8", + "0", + "-1", + "21", + "5994", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988808", + "988808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120215", + "1483126216", + "1483126233", + "1483120215", + "1", + "8", + "0", + "-1", + "17", + "6001", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988812", + "988812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120230", + "1483126234", + "1483126256", + "1483120230", + "1", + "8", + "0", + "-1", + "22", + "6004", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988818", + "988818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120253", + "1483126248", + "1483126267", + "1483120253", + "1", + "8", + "0", + "-1", + "19", + "5995", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988830", + "988830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120306", + "1483126271", + "1483126291", + "1483120306", + "1", + "8", + "0", + "-1", + "20", + "5965", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988832", + "988832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120320", + "1483126292", + "1483126321", + "1483120320", + "1", + "8", + "0", + "-1", + "29", + "5972", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988838", + "988838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120331", + "1483126311", + "1483126338", + "1483120331", + "1", + "8", + "0", + "-1", + "27", + "5980", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988844", + "988844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120356", + "1483126322", + "1483126350", + "1483120356", + "1", + "8", + "0", + "-1", + "28", + "5966", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988848", + "988848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120361", + "1483126338", + "1483126362", + "1483120361", + "1", + "8", + "0", + "-1", + "24", + "5977", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988850", + "988850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120362", + "1483126344", + "1483126359", + "1483120362", + "1", + "8", + "0", + "-1", + "15", + "5982", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988860", + "988860", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120436", + "1483126371", + "1483126398", + "1483120436", + "1", + "8", + "0", + "-1", + "27", + "5935", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988868", + "988868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120454", + "1483126398", + "1483126415", + "1483120454", + "1", + "8", + "0", + "-1", + "17", + "5944", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988870", + "988870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120457", + "1483126416", + "1483126444", + "1483120457", + "1", + "8", + "0", + "-1", + "28", + "5959", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988876", + "988876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120490", + "1483126428", + "1483126457", + "1483120490", + "1", + "8", + "0", + "-1", + "29", + "5938", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988878", + "988878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120496", + "1483126429", + "1483126455", + "1483120496", + "1", + "8", + "0", + "-1", + "26", + "5933", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988882", + "988882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120497", + "1483126448", + "1483126474", + "1483120497", + "1", + "8", + "0", + "-1", + "26", + "5951", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988898", + "988898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120570", + "1483126502", + "1483126529", + "1483120570", + "1", + "8", + "0", + "-1", + "27", + "5932", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988902", + "988902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120592", + "1483126516", + "1483126540", + "1483120592", + "1", + "8", + "0", + "-1", + "24", + "5924", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988904", + "988904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120592", + "1483126517", + "1483126542", + "1483120592", + "1", + "8", + "0", + "-1", + "25", + "5925", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988906", + "988906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120593", + "1483126530", + "1483126549", + "1483120593", + "1", + "8", + "0", + "-1", + "19", + "5937", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988918", + "988918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120659", + "1483126556", + "1483126572", + "1483120659", + "1", + "8", + "0", + "-1", + "16", + "5897", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988922", + "988922", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120662", + "1483126572", + "1483126596", + "1483120662", + "1", + "8", + "0", + "-1", + "24", + "5910", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988954", + "988954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120764", + "1483126692", + "1483126717", + "1483120764", + "1", + "8", + "0", + "-1", + "25", + "5928", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988962", + "988962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120785", + "1483126718", + "1483126746", + "1483120785", + "1", + "8", + "0", + "-1", + "28", + "5933", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988964", + "988964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120797", + "1483126723", + "1483126750", + "1483120797", + "1", + "8", + "0", + "-1", + "27", + "5926", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988968", + "988968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120805", + "1483126741", + "1483126768", + "1483120805", + "1", + "8", + "0", + "-1", + "27", + "5936", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "988984", + "988984", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120858", + "1483126788", + "1483126817", + "1483120858", + "1", + "8", + "0", + "-1", + "29", + "5930", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989002", + "989002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120926", + "1483126852", + "1483126877", + "1483120926", + "1", + "8", + "0", + "-1", + "25", + "5926", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989004", + "989004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120934", + "1483126854", + "1483126879", + "1483120934", + "1", + "8", + "0", + "-1", + "25", + "5920", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989008", + "989008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120959", + "1483126877", + "1483126902", + "1483120959", + "1", + "8", + "0", + "-1", + "25", + "5918", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989010", + "989010", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120960", + "1483126880", + "1483126901", + "1483120960", + "1", + "8", + "0", + "-1", + "21", + "5920", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989022", + "989022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121000", + "1483126920", + "1483126945", + "1483121000", + "1", + "8", + "0", + "-1", + "25", + "5920", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989024", + "989024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121000", + "1483126922", + "1483126945", + "1483121000", + "1", + "8", + "0", + "-1", + "23", + "5922", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989060", + "989060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121142", + "1483127036", + "1483127065", + "1483121142", + "1", + "8", + "0", + "-1", + "29", + "5894", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989064", + "989064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121156", + "1483127042", + "1483127071", + "1483121156", + "1", + "8", + "0", + "-1", + "29", + "5886", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989068", + "989068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121174", + "1483127062", + "1483127086", + "1483121174", + "1", + "8", + "0", + "-1", + "24", + "5888", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989080", + "989080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121231", + "1483127089", + "1483127112", + "1483121231", + "1", + "8", + "0", + "-1", + "23", + "5858", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989102", + "989102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121318", + "1483127177", + "1483127204", + "1483121318", + "1", + "8", + "0", + "-1", + "27", + "5859", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989104", + "989104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121318", + "1483127200", + "1483127227", + "1483121318", + "1", + "8", + "0", + "-1", + "27", + "5882", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989106", + "989106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121323", + "1483127205", + "1483127227", + "1483121323", + "1", + "8", + "0", + "-1", + "22", + "5882", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989108", + "989108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121324", + "1483127207", + "1483127231", + "1483121324", + "1", + "8", + "0", + "-1", + "24", + "5883", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989112", + "989112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121343", + "1483127212", + "1483127228", + "1483121343", + "1", + "8", + "0", + "-1", + "16", + "5869", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989122", + "989122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121389", + "1483127246", + "1483127271", + "1483121389", + "1", + "8", + "0", + "-1", + "25", + "5857", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989142", + "989142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121467", + "1483127320", + "1483127339", + "1483121467", + "1", + "8", + "0", + "-1", + "19", + "5853", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989144", + "989144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121469", + "1483127321", + "1483127350", + "1483121469", + "1", + "8", + "0", + "-1", + "29", + "5852", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989146", + "989146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121470", + "1483127334", + "1483127357", + "1483121470", + "1", + "8", + "0", + "-1", + "23", + "5864", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989150", + "989150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121487", + "1483127339", + "1483127363", + "1483121487", + "1", + "8", + "0", + "-1", + "24", + "5852", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989182", + "989182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121584", + "1483127449", + "1483127478", + "1483121584", + "1", + "8", + "0", + "-1", + "29", + "5865", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989184", + "989184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121595", + "1483127455", + "1483127480", + "1483121595", + "1", + "8", + "0", + "-1", + "25", + "5860", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989190", + "989190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121608", + "1483127478", + "1483127497", + "1483121608", + "1", + "8", + "0", + "-1", + "19", + "5870", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989202", + "989202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121647", + "1483127501", + "1483127529", + "1483121647", + "1", + "8", + "0", + "-1", + "28", + "5854", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989204", + "989204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121651", + "1483127522", + "1483127549", + "1483121651", + "1", + "8", + "0", + "-1", + "27", + "5871", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989208", + "989208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121670", + "1483127530", + "1483127546", + "1483121670", + "1", + "8", + "0", + "-1", + "16", + "5860", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989258", + "989258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121789", + "1483127733", + "1483127761", + "1483121789", + "1", + "8", + "0", + "-1", + "28", + "5944", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989262", + "989262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121798", + "1483127743", + "1483127770", + "1483121798", + "1", + "8", + "0", + "-1", + "27", + "5945", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989266", + "989266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121811", + "1483127761", + "1483127786", + "1483121811", + "1", + "8", + "0", + "-1", + "25", + "5950", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989270", + "989270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121814", + "1483127766", + "1483127789", + "1483121814", + "1", + "8", + "0", + "-1", + "23", + "5952", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989272", + "989272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121814", + "1483127770", + "1483127790", + "1483121814", + "1", + "8", + "0", + "-1", + "20", + "5956", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989290", + "989290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121877", + "1483127847", + "1483127873", + "1483121877", + "1", + "8", + "0", + "-1", + "26", + "5970", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989296", + "989296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121888", + "1483127873", + "1483127899", + "1483121888", + "1", + "8", + "0", + "-1", + "26", + "5985", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989326", + "989326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122003", + "1483128027", + "1483128054", + "1483122003", + "1", + "8", + "0", + "-1", + "27", + "6024", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989328", + "989328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122006", + "1483128041", + "1483128065", + "1483122006", + "1", + "8", + "0", + "-1", + "24", + "6035", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989330", + "989330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122012", + "1483128055", + "1483128076", + "1483122012", + "1", + "8", + "0", + "-1", + "21", + "6043", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989340", + "989340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122052", + "1483128076", + "1483128097", + "1483122052", + "1", + "8", + "0", + "-1", + "21", + "6024", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989346", + "989346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122073", + "1483128099", + "1483128120", + "1483122073", + "1", + "8", + "0", + "-1", + "21", + "6026", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989352", + "989352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122095", + "1483128121", + "1483128148", + "1483122095", + "1", + "8", + "0", + "-1", + "27", + "6026", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989382", + "989382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122274", + "1483128228", + "1483128257", + "1483122274", + "1", + "8", + "0", + "-1", + "29", + "5954", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989452", + "989452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122579", + "1483128514", + "1483128534", + "1483122579", + "1", + "8", + "0", + "-1", + "20", + "5935", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989476", + "989476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122675", + "1483128591", + "1483128611", + "1483122675", + "1", + "8", + "0", + "-1", + "20", + "5916", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989482", + "989482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122702", + "1483128612", + "1483128631", + "1483122702", + "1", + "8", + "0", + "-1", + "19", + "5910", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989492", + "989492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122734", + "1483128647", + "1483128669", + "1483122734", + "1", + "8", + "0", + "-1", + "22", + "5913", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989498", + "989498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122750", + "1483128673", + "1483128697", + "1483122750", + "1", + "8", + "0", + "-1", + "24", + "5923", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989520", + "989520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122847", + "1483128737", + "1483128765", + "1483122847", + "1", + "8", + "0", + "-1", + "28", + "5890", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989534", + "989534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122867", + "1483128815", + "1483128842", + "1483122867", + "1", + "8", + "0", + "-1", + "27", + "5948", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989544", + "989544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122892", + "1483128854", + "1483128876", + "1483122892", + "1", + "8", + "0", + "-1", + "22", + "5962", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989546", + "989546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122902", + "1483128861", + "1483128887", + "1483122902", + "1", + "8", + "0", + "-1", + "26", + "5959", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989554", + "989554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122924", + "1483128877", + "1483128902", + "1483122924", + "1", + "8", + "0", + "-1", + "25", + "5953", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989562", + "989562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122942", + "1483128897", + "1483128922", + "1483122942", + "1", + "8", + "0", + "-1", + "25", + "5955", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989564", + "989564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122956", + "1483128903", + "1483128930", + "1483122956", + "1", + "8", + "0", + "-1", + "27", + "5947", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989600", + "989600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123051", + "1483129050", + "1483129078", + "1483123051", + "1", + "8", + "0", + "-1", + "28", + "5999", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989628", + "989628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123146", + "1483129147", + "1483129167", + "1483123146", + "1", + "8", + "0", + "-1", + "20", + "6001", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989650", + "989650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123202", + "1483129212", + "1483129240", + "1483123202", + "1", + "8", + "0", + "-1", + "28", + "6010", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989740", + "989740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123500", + "1483129633", + "1483129661", + "1483123500", + "1", + "8", + "0", + "-1", + "28", + "6133", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989744", + "989744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123515", + "1483129662", + "1483129690", + "1483123515", + "1", + "8", + "0", + "-1", + "28", + "6147", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989752", + "989752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123534", + "1483129694", + "1483129714", + "1483123534", + "1", + "8", + "0", + "-1", + "20", + "6160", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989754", + "989754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123544", + "1483129714", + "1483129736", + "1483123544", + "1", + "8", + "0", + "-1", + "22", + "6170", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989762", + "989762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123571", + "1483129727", + "1483129747", + "1483123571", + "1", + "8", + "0", + "-1", + "20", + "6156", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989796", + "989796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123661", + "1483129849", + "1483129878", + "1483123661", + "1", + "8", + "0", + "-1", + "29", + "6188", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989806", + "989806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123694", + "1483129882", + "1483129911", + "1483123694", + "1", + "8", + "0", + "-1", + "29", + "6188", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989808", + "989808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123700", + "1483129907", + "1483129931", + "1483123700", + "1", + "8", + "0", + "-1", + "24", + "6207", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989830", + "989830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123792", + "1483129998", + "1483130021", + "1483123792", + "1", + "8", + "0", + "-1", + "23", + "6206", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989854", + "989854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123886", + "1483130088", + "1483130114", + "1483123886", + "1", + "8", + "0", + "-1", + "26", + "6202", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989878", + "989878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123949", + "1483130207", + "1483130230", + "1483123949", + "1", + "8", + "0", + "-1", + "23", + "6258", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989884", + "989884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123960", + "1483130232", + "1483130258", + "1483123960", + "1", + "8", + "0", + "-1", + "26", + "6272", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989900", + "989900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124012", + "1483130273", + "1483130296", + "1483124012", + "1", + "8", + "0", + "-1", + "23", + "6261", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989908", + "989908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124050", + "1483130308", + "1483130332", + "1483124050", + "1", + "8", + "0", + "-1", + "24", + "6258", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989916", + "989916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124072", + "1483130332", + "1483130352", + "1483124072", + "1", + "8", + "0", + "-1", + "20", + "6260", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989918", + "989918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124079", + "1483130339", + "1483130355", + "1483124079", + "1", + "8", + "0", + "-1", + "16", + "6260", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989924", + "989924", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124093", + "1483130356", + "1483130383", + "1483124093", + "1", + "8", + "0", + "-1", + "27", + "6263", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989940", + "989940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124160", + "1483130402", + "1483130423", + "1483124160", + "1", + "8", + "0", + "-1", + "21", + "6242", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989946", + "989946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124171", + "1483130424", + "1483130452", + "1483124171", + "1", + "8", + "0", + "-1", + "28", + "6253", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989950", + "989950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124189", + "1483130436", + "1483130457", + "1483124189", + "1", + "8", + "0", + "-1", + "21", + "6247", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989954", + "989954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124196", + "1483130453", + "1483130475", + "1483124196", + "1", + "8", + "0", + "-1", + "22", + "6257", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989956", + "989956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124205", + "1483130457", + "1483130482", + "1483124205", + "1", + "8", + "0", + "-1", + "25", + "6252", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989958", + "989958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124227", + "1483130458", + "1483130476", + "1483124227", + "1", + "8", + "0", + "-1", + "18", + "6231", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989962", + "989962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124242", + "1483130461", + "1483130486", + "1483124242", + "1", + "8", + "0", + "-1", + "25", + "6219", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989970", + "989970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124306", + "1483130483", + "1483130505", + "1483124306", + "1", + "8", + "0", + "-1", + "22", + "6177", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989972", + "989972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124313", + "1483130487", + "1483130515", + "1483124313", + "1", + "8", + "0", + "-1", + "28", + "6174", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989974", + "989974", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124314", + "1483130495", + "1483130516", + "1483124314", + "1", + "8", + "0", + "-1", + "21", + "6181", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989976", + "989976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124315", + "1483130506", + "1483130526", + "1483124315", + "1", + "8", + "0", + "-1", + "20", + "6191", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989978", + "989978", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124318", + "1483130506", + "1483130532", + "1483124318", + "1", + "8", + "0", + "-1", + "26", + "6188", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "989980", + "989980", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124320", + "1483130507", + "1483130529", + "1483124320", + "1", + "8", + "0", + "-1", + "22", + "6187", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990008", + "990008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124425", + "1483130552", + "1483130581", + "1483124425", + "1", + "8", + "0", + "-1", + "29", + "6127", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990012", + "990012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124437", + "1483130564", + "1483130589", + "1483124437", + "1", + "8", + "0", + "-1", + "25", + "6127", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990034", + "990034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124514", + "1483130630", + "1483130653", + "1483124514", + "1", + "8", + "0", + "-1", + "23", + "6116", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990052", + "990052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124593", + "1483130685", + "1483130714", + "1483124593", + "1", + "8", + "0", + "-1", + "29", + "6092", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990070", + "990070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124655", + "1483130700", + "1483130721", + "1483124655", + "1", + "8", + "0", + "-1", + "21", + "6045", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990074", + "990074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124664", + "1483130714", + "1483130743", + "1483124664", + "1", + "8", + "0", + "-1", + "29", + "6050", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990076", + "990076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124670", + "1483130722", + "1483130746", + "1483124670", + "1", + "8", + "0", + "-1", + "24", + "6052", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990090", + "990090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124713", + "1483130773", + "1483130797", + "1483124713", + "1", + "8", + "0", + "-1", + "24", + "6060", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990098", + "990098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124727", + "1483130795", + "1483130820", + "1483124727", + "1", + "8", + "0", + "-1", + "25", + "6068", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990102", + "990102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124732", + "1483130808", + "1483130826", + "1483124732", + "1", + "8", + "0", + "-1", + "18", + "6076", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990112", + "990112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124775", + "1483130847", + "1483130873", + "1483124775", + "1", + "8", + "0", + "-1", + "26", + "6072", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990120", + "990120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124792", + "1483130864", + "1483130879", + "1483124792", + "1", + "8", + "0", + "-1", + "15", + "6072", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990126", + "990126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124821", + "1483130880", + "1483130901", + "1483124821", + "1", + "8", + "0", + "-1", + "21", + "6059", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990128", + "990128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124821", + "1483130882", + "1483130902", + "1483124821", + "1", + "8", + "0", + "-1", + "20", + "6061", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990130", + "990130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124822", + "1483130887", + "1483130904", + "1483124822", + "1", + "8", + "0", + "-1", + "17", + "6065", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990132", + "990132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124829", + "1483130901", + "1483130919", + "1483124829", + "1", + "8", + "0", + "-1", + "18", + "6072", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990134", + "990134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124833", + "1483130902", + "1483130922", + "1483124833", + "1", + "8", + "0", + "-1", + "20", + "6069", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990136", + "990136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124839", + "1483130902", + "1483130921", + "1483124839", + "1", + "8", + "0", + "-1", + "19", + "6063", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990140", + "990140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124862", + "1483130908", + "1483130931", + "1483124862", + "1", + "8", + "0", + "-1", + "23", + "6046", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990142", + "990142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124864", + "1483130920", + "1483130937", + "1483124864", + "1", + "8", + "0", + "-1", + "17", + "6056", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990144", + "990144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124865", + "1483130922", + "1483130935", + "1483124865", + "1", + "8", + "0", + "-1", + "13", + "6057", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990146", + "990146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124866", + "1483130923", + "1483130936", + "1483124866", + "1", + "8", + "0", + "-1", + "13", + "6057", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990148", + "990148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124877", + "1483130928", + "1483130947", + "1483124877", + "1", + "8", + "0", + "-1", + "19", + "6051", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990154", + "990154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124894", + "1483130936", + "1483130956", + "1483124894", + "1", + "8", + "0", + "-1", + "20", + "6042", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990156", + "990156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124894", + "1483130938", + "1483130964", + "1483124894", + "1", + "8", + "0", + "-1", + "26", + "6044", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990168", + "990168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124951", + "1483130983", + "1483131006", + "1483124951", + "1", + "8", + "0", + "-1", + "23", + "6032", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990174", + "990174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124962", + "1483130996", + "1483131024", + "1483124962", + "1", + "8", + "0", + "-1", + "28", + "6034", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990190", + "990190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124997", + "1483131034", + "1483131052", + "1483124997", + "1", + "8", + "0", + "-1", + "18", + "6037", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990192", + "990192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124997", + "1483131046", + "1483131070", + "1483124997", + "1", + "8", + "0", + "-1", + "24", + "6049", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990194", + "990194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125014", + "1483131053", + "1483131080", + "1483125014", + "1", + "8", + "0", + "-1", + "27", + "6039", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990196", + "990196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125019", + "1483131057", + "1483131078", + "1483125019", + "1", + "8", + "0", + "-1", + "21", + "6038", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990212", + "990212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125078", + "1483131106", + "1483131133", + "1483125078", + "1", + "8", + "0", + "-1", + "27", + "6028", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990218", + "990218", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125084", + "1483131123", + "1483131151", + "1483125084", + "1", + "8", + "0", + "-1", + "28", + "6039", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990224", + "990224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125123", + "1483131134", + "1483131158", + "1483125123", + "1", + "8", + "0", + "-1", + "24", + "6011", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990226", + "990226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125143", + "1483131148", + "1483131173", + "1483125143", + "1", + "8", + "0", + "-1", + "25", + "6005", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990228", + "990228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125148", + "1483131152", + "1483131177", + "1483125148", + "1", + "8", + "0", + "-1", + "25", + "6004", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990234", + "990234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125155", + "1483131169", + "1483131189", + "1483125155", + "1", + "8", + "0", + "-1", + "20", + "6014", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990254", + "990254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125240", + "1483131233", + "1483131259", + "1483125240", + "1", + "8", + "0", + "-1", + "26", + "5993", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990256", + "990256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125251", + "1483131249", + "1483131266", + "1483125251", + "1", + "8", + "0", + "-1", + "17", + "5998", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990260", + "990260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125259", + "1483131260", + "1483131288", + "1483125259", + "1", + "8", + "0", + "-1", + "28", + "6001", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990262", + "990262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125260", + "1483131263", + "1483131292", + "1483125260", + "1", + "8", + "0", + "-1", + "29", + "6003", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990264", + "990264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125266", + "1483131267", + "1483131285", + "1483125266", + "1", + "8", + "0", + "-1", + "18", + "6001", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990270", + "990270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125284", + "1483131286", + "1483131303", + "1483125284", + "1", + "8", + "0", + "-1", + "17", + "6002", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990272", + "990272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125290", + "1483131288", + "1483131304", + "1483125290", + "1", + "8", + "0", + "-1", + "16", + "5998", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990276", + "990276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125308", + "1483131293", + "1483131315", + "1483125308", + "1", + "8", + "0", + "-1", + "22", + "5985", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990278", + "990278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125315", + "1483131300", + "1483131328", + "1483125315", + "1", + "8", + "0", + "-1", + "28", + "5985", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990286", + "990286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125363", + "1483131304", + "1483131320", + "1483125363", + "1", + "8", + "0", + "-1", + "16", + "5941", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990288", + "990288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125372", + "1483131309", + "1483131328", + "1483125372", + "1", + "8", + "0", + "-1", + "19", + "5937", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990290", + "990290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125374", + "1483131316", + "1483131339", + "1483125374", + "1", + "8", + "0", + "-1", + "23", + "5942", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990292", + "990292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125389", + "1483131320", + "1483131349", + "1483125389", + "1", + "8", + "0", + "-1", + "29", + "5931", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990294", + "990294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125391", + "1483131328", + "1483131354", + "1483125391", + "1", + "8", + "0", + "-1", + "26", + "5937", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990296", + "990296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125392", + "1483131329", + "1483131356", + "1483125392", + "1", + "8", + "0", + "-1", + "27", + "5937", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990298", + "990298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125401", + "1483131331", + "1483131346", + "1483125401", + "1", + "8", + "0", + "-1", + "15", + "5930", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990302", + "990302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125426", + "1483131339", + "1483131366", + "1483125426", + "1", + "8", + "0", + "-1", + "27", + "5913", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990304", + "990304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125431", + "1483131346", + "1483131365", + "1483125431", + "1", + "8", + "0", + "-1", + "19", + "5915", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990308", + "990308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125443", + "1483131355", + "1483131378", + "1483125443", + "1", + "8", + "0", + "-1", + "23", + "5912", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990310", + "990310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125448", + "1483131357", + "1483131380", + "1483125448", + "1", + "8", + "0", + "-1", + "23", + "5909", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990314", + "990314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125463", + "1483131367", + "1483131396", + "1483125463", + "1", + "8", + "0", + "-1", + "29", + "5904", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990318", + "990318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125464", + "1483131379", + "1483131402", + "1483125464", + "1", + "8", + "0", + "-1", + "23", + "5915", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990320", + "990320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125473", + "1483131381", + "1483131404", + "1483125473", + "1", + "8", + "0", + "-1", + "23", + "5908", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990322", + "990322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125473", + "1483131391", + "1483131413", + "1483125473", + "1", + "8", + "0", + "-1", + "22", + "5918", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990326", + "990326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125495", + "1483131403", + "1483131423", + "1483125495", + "1", + "8", + "0", + "-1", + "20", + "5908", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990328", + "990328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125497", + "1483131404", + "1483131425", + "1483125497", + "1", + "8", + "0", + "-1", + "21", + "5907", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990330", + "990330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125499", + "1483131414", + "1483131431", + "1483125499", + "1", + "8", + "0", + "-1", + "17", + "5915", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990332", + "990332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125513", + "1483131422", + "1483131441", + "1483125513", + "1", + "8", + "0", + "-1", + "19", + "5909", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990334", + "990334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125517", + "1483131424", + "1483131439", + "1483125517", + "1", + "8", + "0", + "-1", + "15", + "5907", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990336", + "990336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125518", + "1483131425", + "1483131449", + "1483125518", + "1", + "8", + "0", + "-1", + "24", + "5907", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990340", + "990340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125535", + "1483131440", + "1483131468", + "1483125535", + "1", + "8", + "0", + "-1", + "28", + "5905", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990350", + "990350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125569", + "1483131468", + "1483131490", + "1483125569", + "1", + "8", + "0", + "-1", + "22", + "5899", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990352", + "990352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125584", + "1483131473", + "1483131498", + "1483125584", + "1", + "8", + "0", + "-1", + "25", + "5889", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990358", + "990358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125595", + "1483131490", + "1483131511", + "1483125595", + "1", + "8", + "0", + "-1", + "21", + "5895", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990362", + "990362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125599", + "1483131498", + "1483131523", + "1483125599", + "1", + "8", + "0", + "-1", + "25", + "5899", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990366", + "990366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125616", + "1483131512", + "1483131535", + "1483125616", + "1", + "8", + "0", + "-1", + "23", + "5896", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990370", + "990370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125631", + "1483131523", + "1483131541", + "1483125631", + "1", + "8", + "0", + "-1", + "18", + "5892", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990372", + "990372", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125632", + "1483131528", + "1483131551", + "1483125632", + "1", + "8", + "0", + "-1", + "23", + "5896", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990376", + "990376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125635", + "1483131538", + "1483131567", + "1483125635", + "1", + "8", + "0", + "-1", + "29", + "5903", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990378", + "990378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125650", + "1483131542", + "1483131562", + "1483125650", + "1", + "8", + "0", + "-1", + "20", + "5892", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990400", + "990400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125717", + "1483131640", + "1483131656", + "1483125717", + "1", + "8", + "0", + "-1", + "16", + "5923", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990404", + "990404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125732", + "1483131646", + "1483131665", + "1483125732", + "1", + "8", + "0", + "-1", + "19", + "5914", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990408", + "990408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125748", + "1483131657", + "1483131678", + "1483125748", + "1", + "8", + "0", + "-1", + "21", + "5909", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990412", + "990412", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125762", + "1483131666", + "1483131687", + "1483125762", + "1", + "8", + "0", + "-1", + "21", + "5904", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990414", + "990414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125777", + "1483131671", + "1483131695", + "1483125777", + "1", + "8", + "0", + "-1", + "24", + "5894", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990416", + "990416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125781", + "1483131676", + "1483131692", + "1483125781", + "1", + "8", + "0", + "-1", + "16", + "5895", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990418", + "990418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125782", + "1483131679", + "1483131706", + "1483125782", + "1", + "8", + "0", + "-1", + "27", + "5897", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990422", + "990422", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125784", + "1483131687", + "1483131702", + "1483125784", + "1", + "8", + "0", + "-1", + "15", + "5903", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990424", + "990424", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125795", + "1483131693", + "1483131719", + "1483125795", + "1", + "8", + "0", + "-1", + "26", + "5898", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990426", + "990426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125802", + "1483131695", + "1483131723", + "1483125802", + "1", + "8", + "0", + "-1", + "28", + "5893", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990452", + "990452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125864", + "1483131804", + "1483131832", + "1483125864", + "1", + "8", + "0", + "-1", + "28", + "5940", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990460", + "990460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125891", + "1483131832", + "1483131857", + "1483125891", + "1", + "8", + "0", + "-1", + "25", + "5941", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990464", + "990464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125898", + "1483131850", + "1483131877", + "1483125898", + "1", + "8", + "0", + "-1", + "27", + "5952", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990488", + "990488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125990", + "1483131915", + "1483131938", + "1483125990", + "1", + "8", + "0", + "-1", + "23", + "5925", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990500", + "990500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126075", + "1483131954", + "1483131977", + "1483126075", + "1", + "8", + "0", + "-1", + "23", + "5879", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990506", + "990506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126105", + "1483131977", + "1483132002", + "1483126105", + "1", + "8", + "0", + "-1", + "25", + "5872", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990508", + "990508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126106", + "1483131986", + "1483132006", + "1483126106", + "1", + "8", + "0", + "-1", + "20", + "5880", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990516", + "990516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126132", + "1483132004", + "1483132026", + "1483126132", + "1", + "8", + "0", + "-1", + "22", + "5872", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990518", + "990518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126133", + "1483132007", + "1483132027", + "1483126133", + "1", + "8", + "0", + "-1", + "20", + "5874", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990522", + "990522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126142", + "1483132022", + "1483132050", + "1483126142", + "1", + "8", + "0", + "-1", + "28", + "5880", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990526", + "990526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126154", + "1483132028", + "1483132057", + "1483126154", + "1", + "8", + "0", + "-1", + "29", + "5874", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990528", + "990528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126154", + "1483132028", + "1483132057", + "1483126154", + "1", + "8", + "0", + "-1", + "29", + "5874", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990542", + "990542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126204", + "1483132076", + "1483132103", + "1483126204", + "1", + "8", + "0", + "-1", + "27", + "5872", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990548", + "990548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126233", + "1483132100", + "1483132125", + "1483126233", + "1", + "8", + "0", + "-1", + "25", + "5867", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990552", + "990552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126237", + "1483132107", + "1483132135", + "1483126237", + "1", + "8", + "0", + "-1", + "28", + "5870", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990558", + "990558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126259", + "1483132126", + "1483132153", + "1483126259", + "1", + "8", + "0", + "-1", + "27", + "5867", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990570", + "990570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126298", + "1483132156", + "1483132184", + "1483126298", + "1", + "8", + "0", + "-1", + "28", + "5858", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990590", + "990590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126350", + "1483132249", + "1483132277", + "1483126350", + "1", + "8", + "0", + "-1", + "28", + "5899", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990592", + "990592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126359", + "1483132258", + "1483132278", + "1483126359", + "1", + "8", + "0", + "-1", + "20", + "5899", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990596", + "990596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126370", + "1483132277", + "1483132304", + "1483126370", + "1", + "8", + "0", + "-1", + "27", + "5907", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990612", + "990612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126427", + "1483132328", + "1483132349", + "1483126427", + "1", + "8", + "0", + "-1", + "21", + "5901", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990616", + "990616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126444", + "1483132350", + "1483132379", + "1483126444", + "1", + "8", + "0", + "-1", + "29", + "5906", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990618", + "990618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126448", + "1483132359", + "1483132377", + "1483126448", + "1", + "8", + "0", + "-1", + "18", + "5911", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990622", + "990622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126455", + "1483132378", + "1483132406", + "1483126455", + "1", + "8", + "0", + "-1", + "28", + "5923", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990624", + "990624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126457", + "1483132380", + "1483132401", + "1483126457", + "1", + "8", + "0", + "-1", + "21", + "5923", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990626", + "990626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126474", + "1483132386", + "1483132402", + "1483126474", + "1", + "8", + "0", + "-1", + "16", + "5912", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990630", + "990630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126482", + "1483132402", + "1483132420", + "1483126482", + "1", + "8", + "0", + "-1", + "18", + "5920", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990638", + "990638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126515", + "1483132435", + "1483132460", + "1483126515", + "1", + "8", + "0", + "-1", + "25", + "5920", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990648", + "990648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126545", + "1483132465", + "1483132484", + "1483126545", + "1", + "8", + "0", + "-1", + "19", + "5920", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990650", + "990650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126547", + "1483132466", + "1483132493", + "1483126547", + "1", + "8", + "0", + "-1", + "27", + "5919", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990658", + "990658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126572", + "1483132510", + "1483132528", + "1483126572", + "1", + "8", + "0", + "-1", + "18", + "5938", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990662", + "990662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126592", + "1483132519", + "1483132541", + "1483126592", + "1", + "8", + "0", + "-1", + "22", + "5927", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990666", + "990666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126596", + "1483132529", + "1483132545", + "1483126596", + "1", + "8", + "0", + "-1", + "16", + "5933", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990670", + "990670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126611", + "1483132542", + "1483132559", + "1483126611", + "1", + "8", + "0", + "-1", + "17", + "5931", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990676", + "990676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126633", + "1483132557", + "1483132576", + "1483126633", + "1", + "8", + "0", + "-1", + "19", + "5924", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990678", + "990678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126648", + "1483132560", + "1483132584", + "1483126648", + "1", + "8", + "0", + "-1", + "24", + "5912", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990680", + "990680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126653", + "1483132572", + "1483132589", + "1483126653", + "1", + "8", + "0", + "-1", + "17", + "5919", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990686", + "990686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126670", + "1483132585", + "1483132613", + "1483126670", + "1", + "8", + "0", + "-1", + "28", + "5915", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990688", + "990688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126677", + "1483132589", + "1483132618", + "1483126677", + "1", + "8", + "0", + "-1", + "29", + "5912", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990692", + "990692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126698", + "1483132606", + "1483132629", + "1483126698", + "1", + "8", + "0", + "-1", + "23", + "5908", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990694", + "990694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126702", + "1483132613", + "1483132641", + "1483126702", + "1", + "8", + "0", + "-1", + "28", + "5911", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990700", + "990700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126723", + "1483132624", + "1483132649", + "1483126723", + "1", + "8", + "0", + "-1", + "25", + "5901", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990702", + "990702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126741", + "1483132629", + "1483132642", + "1483126741", + "1", + "8", + "0", + "-1", + "13", + "5888", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990706", + "990706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126746", + "1483132641", + "1483132660", + "1483126746", + "1", + "8", + "0", + "-1", + "19", + "5895", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990708", + "990708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126750", + "1483132643", + "1483132661", + "1483126750", + "1", + "8", + "0", + "-1", + "18", + "5893", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990710", + "990710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126750", + "1483132643", + "1483132661", + "1483126750", + "1", + "8", + "0", + "-1", + "18", + "5893", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990712", + "990712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126767", + "1483132650", + "1483132678", + "1483126767", + "1", + "8", + "0", + "-1", + "28", + "5883", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990716", + "990716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126784", + "1483132662", + "1483132674", + "1483126784", + "1", + "8", + "0", + "-1", + "12", + "5878", + "96", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990718", + "990718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126786", + "1483132662", + "1483132676", + "1483126786", + "1", + "8", + "0", + "-1", + "14", + "5876", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990720", + "990720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126788", + "1483132675", + "1483132686", + "1483126788", + "1", + "8", + "0", + "-1", + "11", + "5887", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990722", + "990722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126800", + "1483132676", + "1483132691", + "1483126800", + "1", + "8", + "0", + "-1", + "15", + "5876", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990728", + "990728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126819", + "1483132686", + "1483132711", + "1483126819", + "1", + "8", + "0", + "-1", + "25", + "5867", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990738", + "990738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126851", + "1483132718", + "1483132745", + "1483126851", + "1", + "8", + "0", + "-1", + "27", + "5867", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990742", + "990742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126860", + "1483132727", + "1483132747", + "1483126860", + "1", + "8", + "0", + "-1", + "20", + "5867", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990744", + "990744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126877", + "1483132745", + "1483132773", + "1483126877", + "1", + "8", + "0", + "-1", + "28", + "5868", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990746", + "990746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126879", + "1483132748", + "1483132771", + "1483126879", + "1", + "8", + "0", + "-1", + "23", + "5869", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990754", + "990754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126901", + "1483132772", + "1483132797", + "1483126901", + "1", + "8", + "0", + "-1", + "25", + "5871", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990760", + "990760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126921", + "1483132794", + "1483132818", + "1483126921", + "1", + "8", + "0", + "-1", + "24", + "5873", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990764", + "990764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126939", + "1483132802", + "1483132824", + "1483126939", + "1", + "8", + "0", + "-1", + "22", + "5863", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990774", + "990774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126963", + "1483132824", + "1483132853", + "1483126963", + "1", + "8", + "0", + "-1", + "29", + "5861", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990792", + "990792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127026", + "1483132891", + "1483132917", + "1483127026", + "1", + "8", + "0", + "-1", + "26", + "5865", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990798", + "990798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127036", + "1483132919", + "1483132946", + "1483127036", + "1", + "8", + "0", + "-1", + "27", + "5883", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990804", + "990804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127062", + "1483132934", + "1483132960", + "1483127062", + "1", + "8", + "0", + "-1", + "26", + "5872", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990812", + "990812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127083", + "1483132955", + "1483132978", + "1483127083", + "1", + "8", + "0", + "-1", + "23", + "5872", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990816", + "990816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127089", + "1483132976", + "1483132999", + "1483127089", + "1", + "8", + "0", + "-1", + "23", + "5887", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990826", + "990826", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127142", + "1483132997", + "1483133017", + "1483127142", + "1", + "8", + "0", + "-1", + "20", + "5855", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990828", + "990828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127143", + "1483132999", + "1483133022", + "1483127143", + "1", + "8", + "0", + "-1", + "23", + "5856", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990836", + "990836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127176", + "1483133023", + "1483133040", + "1483127176", + "1", + "8", + "0", + "-1", + "17", + "5847", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990842", + "990842", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127204", + "1483133041", + "1483133058", + "1483127204", + "1", + "8", + "0", + "-1", + "17", + "5837", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990848", + "990848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127211", + "1483133051", + "1483133071", + "1483127211", + "1", + "8", + "0", + "-1", + "20", + "5840", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990856", + "990856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127231", + "1483133089", + "1483133108", + "1483127231", + "1", + "8", + "0", + "-1", + "19", + "5858", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990874", + "990874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127300", + "1483133160", + "1483133186", + "1483127300", + "1", + "8", + "0", + "-1", + "26", + "5860", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990878", + "990878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127320", + "1483133178", + "1483133207", + "1483127320", + "1", + "8", + "0", + "-1", + "29", + "5858", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990882", + "990882", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127334", + "1483133189", + "1483133218", + "1483127334", + "1", + "8", + "0", + "-1", + "29", + "5855", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990892", + "990892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127358", + "1483133208", + "1483133225", + "1483127358", + "1", + "8", + "0", + "-1", + "17", + "5850", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990898", + "990898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127373", + "1483133216", + "1483133232", + "1483127373", + "1", + "8", + "0", + "-1", + "16", + "5843", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990900", + "990900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127379", + "1483133218", + "1483133232", + "1483127379", + "1", + "8", + "0", + "-1", + "14", + "5839", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990902", + "990902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127383", + "1483133221", + "1483133235", + "1483127383", + "1", + "8", + "0", + "-1", + "14", + "5838", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990904", + "990904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127398", + "1483133226", + "1483133241", + "1483127398", + "1", + "8", + "0", + "-1", + "15", + "5828", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990906", + "990906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127401", + "1483133233", + "1483133261", + "1483127401", + "1", + "8", + "0", + "-1", + "28", + "5832", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990908", + "990908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127402", + "1483133233", + "1483133254", + "1483127402", + "1", + "8", + "0", + "-1", + "21", + "5831", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990914", + "990914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127425", + "1483133235", + "1483133260", + "1483127425", + "1", + "8", + "0", + "-1", + "25", + "5810", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990916", + "990916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127434", + "1483133239", + "1483133255", + "1483127434", + "1", + "8", + "0", + "-1", + "16", + "5805", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990918", + "990918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127449", + "1483133242", + "1483133263", + "1483127449", + "1", + "8", + "0", + "-1", + "21", + "5793", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990930", + "990930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127489", + "1483133264", + "1483133289", + "1483127489", + "1", + "8", + "0", + "-1", + "25", + "5775", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990934", + "990934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127497", + "1483133288", + "1483133307", + "1483127497", + "1", + "8", + "0", + "-1", + "19", + "5791", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990936", + "990936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127500", + "1483133290", + "1483133312", + "1483127500", + "1", + "8", + "0", + "-1", + "22", + "5790", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990940", + "990940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127521", + "1483133295", + "1483133308", + "1483127521", + "1", + "8", + "0", + "-1", + "13", + "5774", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990942", + "990942", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127527", + "1483133303", + "1483133324", + "1483127527", + "1", + "8", + "0", + "-1", + "21", + "5776", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990944", + "990944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127529", + "1483133308", + "1483133334", + "1483127529", + "1", + "8", + "0", + "-1", + "26", + "5779", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990946", + "990946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127532", + "1483133308", + "1483133332", + "1483127532", + "1", + "8", + "0", + "-1", + "24", + "5776", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990952", + "990952", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127546", + "1483133322", + "1483133345", + "1483127546", + "1", + "8", + "0", + "-1", + "23", + "5776", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990954", + "990954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127549", + "1483133324", + "1483133350", + "1483127549", + "1", + "8", + "0", + "-1", + "26", + "5775", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990956", + "990956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127587", + "1483133333", + "1483133353", + "1483127587", + "1", + "8", + "0", + "-1", + "20", + "5746", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990960", + "990960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127590", + "1483133346", + "1483133361", + "1483127590", + "1", + "8", + "0", + "-1", + "15", + "5756", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990968", + "990968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127645", + "1483133353", + "1483133378", + "1483127645", + "1", + "8", + "0", + "-1", + "25", + "5708", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990970", + "990970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127661", + "1483133360", + "1483133389", + "1483127661", + "1", + "8", + "0", + "-1", + "29", + "5699", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990972", + "990972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127663", + "1483133361", + "1483133382", + "1483127663", + "1", + "8", + "0", + "-1", + "21", + "5698", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990976", + "990976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127668", + "1483133373", + "1483133391", + "1483127668", + "1", + "8", + "0", + "-1", + "18", + "5705", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990986", + "990986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127713", + "1483133393", + "1483133421", + "1483127713", + "1", + "8", + "0", + "-1", + "28", + "5680", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990988", + "990988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127723", + "1483133406", + "1483133429", + "1483127723", + "1", + "8", + "0", + "-1", + "23", + "5683", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990990", + "990990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127725", + "1483133413", + "1483133432", + "1483127725", + "1", + "8", + "0", + "-1", + "19", + "5688", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "990996", + "990996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127742", + "1483133429", + "1483133454", + "1483127742", + "1", + "8", + "0", + "-1", + "25", + "5687", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991010", + "991010", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127782", + "1483133464", + "1483133480", + "1483127782", + "1", + "8", + "0", + "-1", + "16", + "5682", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991012", + "991012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127786", + "1483133468", + "1483133493", + "1483127786", + "1", + "8", + "0", + "-1", + "25", + "5682", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991014", + "991014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127789", + "1483133481", + "1483133508", + "1483127789", + "1", + "8", + "0", + "-1", + "27", + "5692", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991018", + "991018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127802", + "1483133494", + "1483133522", + "1483127802", + "1", + "8", + "0", + "-1", + "28", + "5692", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991020", + "991020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127816", + "1483133504", + "1483133524", + "1483127816", + "1", + "8", + "0", + "-1", + "20", + "5688", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991026", + "991026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127847", + "1483133516", + "1483133526", + "1483127847", + "1", + "8", + "0", + "-1", + "10", + "5669", + "80", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991028", + "991028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127853", + "1483133517", + "1483133532", + "1483127853", + "1", + "8", + "0", + "-1", + "15", + "5664", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991030", + "991030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127856", + "1483133520", + "1483133535", + "1483127856", + "1", + "8", + "0", + "-1", + "15", + "5664", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991032", + "991032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127873", + "1483133523", + "1483133545", + "1483127873", + "1", + "8", + "0", + "-1", + "22", + "5650", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991034", + "991034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127875", + "1483133524", + "1483133549", + "1483127875", + "1", + "8", + "0", + "-1", + "25", + "5649", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991036", + "991036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127893", + "1483133526", + "1483133547", + "1483127893", + "1", + "8", + "0", + "-1", + "21", + "5633", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991046", + "991046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127936", + "1483133546", + "1483133566", + "1483127936", + "1", + "8", + "0", + "-1", + "20", + "5610", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991048", + "991048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127940", + "1483133548", + "1483133562", + "1483127940", + "1", + "8", + "0", + "-1", + "14", + "5608", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991050", + "991050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127944", + "1483133549", + "1483133568", + "1483127944", + "1", + "8", + "0", + "-1", + "19", + "5605", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991062", + "991062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128027", + "1483133569", + "1483133587", + "1483128027", + "1", + "8", + "0", + "-1", + "18", + "5542", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991064", + "991064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128040", + "1483133587", + "1483133606", + "1483128040", + "1", + "8", + "0", + "-1", + "19", + "5547", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991072", + "991072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128065", + "1483133607", + "1483133623", + "1483128065", + "1", + "8", + "0", + "-1", + "16", + "5542", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991076", + "991076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128076", + "1483133627", + "1483133640", + "1483128076", + "1", + "8", + "0", + "-1", + "13", + "5551", + "104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991078", + "991078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128096", + "1483133637", + "1483133664", + "1483128096", + "1", + "8", + "0", + "-1", + "27", + "5541", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991080", + "991080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128097", + "1483133638", + "1483133662", + "1483128097", + "1", + "8", + "0", + "-1", + "24", + "5541", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991084", + "991084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128103", + "1483133641", + "1483133663", + "1483128103", + "1", + "8", + "0", + "-1", + "22", + "5538", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991098", + "991098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128142", + "1483133688", + "1483133715", + "1483128142", + "1", + "8", + "0", + "-1", + "27", + "5546", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991102", + "991102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128148", + "1483133696", + "1483133722", + "1483128148", + "1", + "8", + "0", + "-1", + "26", + "5548", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991104", + "991104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128176", + "1483133696", + "1483133720", + "1483128176", + "1", + "8", + "0", + "-1", + "24", + "5520", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991106", + "991106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128182", + "1483133699", + "1483133723", + "1483128182", + "1", + "8", + "0", + "-1", + "24", + "5517", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991114", + "991114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128220", + "1483133721", + "1483133739", + "1483128220", + "1", + "8", + "0", + "-1", + "18", + "5501", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991118", + "991118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128228", + "1483133723", + "1483133739", + "1483128228", + "1", + "8", + "0", + "-1", + "16", + "5495", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991132", + "991132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128298", + "1483133766", + "1483133784", + "1483128298", + "1", + "8", + "0", + "-1", + "18", + "5468", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991134", + "991134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128299", + "1483133784", + "1483133802", + "1483128299", + "1", + "8", + "0", + "-1", + "18", + "5485", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991136", + "991136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128310", + "1483133789", + "1483133817", + "1483128310", + "1", + "8", + "0", + "-1", + "28", + "5479", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991138", + "991138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128315", + "1483133790", + "1483133810", + "1483128315", + "1", + "8", + "0", + "-1", + "20", + "5475", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991140", + "991140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128324", + "1483133802", + "1483133823", + "1483128324", + "1", + "8", + "0", + "-1", + "21", + "5478", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991144", + "991144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128355", + "1483133809", + "1483133827", + "1483128355", + "1", + "8", + "0", + "-1", + "18", + "5454", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991146", + "991146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128367", + "1483133811", + "1483133827", + "1483128367", + "1", + "8", + "0", + "-1", + "16", + "5444", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991148", + "991148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128372", + "1483133811", + "1483133828", + "1483128372", + "1", + "8", + "0", + "-1", + "17", + "5439", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991152", + "991152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128384", + "1483133817", + "1483133843", + "1483128384", + "1", + "8", + "0", + "-1", + "26", + "5433", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991156", + "991156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128410", + "1483133824", + "1483133847", + "1483128410", + "1", + "8", + "0", + "-1", + "23", + "5414", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991158", + "991158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128412", + "1483133827", + "1483133852", + "1483128412", + "1", + "8", + "0", + "-1", + "25", + "5415", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991162", + "991162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128434", + "1483133829", + "1483133849", + "1483128434", + "1", + "8", + "0", + "-1", + "20", + "5395", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991178", + "991178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128481", + "1483133882", + "1483133906", + "1483128481", + "1", + "8", + "0", + "-1", + "24", + "5401", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991180", + "991180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128484", + "1483133886", + "1483133913", + "1483128484", + "1", + "8", + "0", + "-1", + "27", + "5402", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991206", + "991206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128572", + "1483133997", + "1483134024", + "1483128572", + "1", + "8", + "0", + "-1", + "27", + "5425", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991228", + "991228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128646", + "1483134091", + "1483134109", + "1483128646", + "1", + "8", + "0", + "-1", + "18", + "5445", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991234", + "991234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128672", + "1483134110", + "1483134130", + "1483128672", + "1", + "8", + "0", + "-1", + "20", + "5438", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991236", + "991236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128684", + "1483134125", + "1483134147", + "1483128684", + "1", + "8", + "0", + "-1", + "22", + "5441", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991240", + "991240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128691", + "1483134130", + "1483134157", + "1483128691", + "1", + "8", + "0", + "-1", + "27", + "5439", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991242", + "991242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128696", + "1483134131", + "1483134149", + "1483128696", + "1", + "8", + "0", + "-1", + "18", + "5435", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991248", + "991248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128715", + "1483134150", + "1483134167", + "1483128715", + "1", + "8", + "0", + "-1", + "17", + "5435", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991250", + "991250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128722", + "1483134157", + "1483134177", + "1483128722", + "1", + "8", + "0", + "-1", + "20", + "5435", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991252", + "991252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128727", + "1483134168", + "1483134182", + "1483128727", + "1", + "8", + "0", + "-1", + "14", + "5441", + "112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991254", + "991254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128728", + "1483134172", + "1483134191", + "1483128728", + "1", + "8", + "0", + "-1", + "19", + "5444", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991256", + "991256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128737", + "1483134177", + "1483134201", + "1483128737", + "1", + "8", + "0", + "-1", + "24", + "5440", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991284", + "991284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128865", + "1483134282", + "1483134303", + "1483128865", + "1", + "8", + "0", + "-1", + "21", + "5417", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991286", + "991286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128869", + "1483134304", + "1483134326", + "1483128869", + "1", + "8", + "0", + "-1", + "22", + "5435", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991288", + "991288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128871", + "1483134304", + "1483134326", + "1483128871", + "1", + "8", + "0", + "-1", + "22", + "5433", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991290", + "991290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128877", + "1483134309", + "1483134336", + "1483128877", + "1", + "8", + "0", + "-1", + "27", + "5432", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991294", + "991294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128884", + "1483134326", + "1483134352", + "1483128884", + "1", + "8", + "0", + "-1", + "26", + "5442", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991296", + "991296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128887", + "1483134327", + "1483134348", + "1483128887", + "1", + "8", + "0", + "-1", + "21", + "5440", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991298", + "991298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128896", + "1483134327", + "1483134345", + "1483128896", + "1", + "8", + "0", + "-1", + "18", + "5431", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991310", + "991310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128945", + "1483134349", + "1483134371", + "1483128945", + "1", + "8", + "0", + "-1", + "22", + "5404", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991312", + "991312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128945", + "1483134352", + "1483134370", + "1483128945", + "1", + "8", + "0", + "-1", + "18", + "5407", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991314", + "991314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128948", + "1483134363", + "1483134392", + "1483128948", + "1", + "8", + "0", + "-1", + "29", + "5415", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991330", + "991330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129036", + "1483134427", + "1483134448", + "1483129036", + "1", + "8", + "0", + "-1", + "21", + "5391", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991334", + "991334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129049", + "1483134442", + "1483134461", + "1483129049", + "1", + "8", + "0", + "-1", + "19", + "5393", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991340", + "991340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129052", + "1483134461", + "1483134480", + "1483129052", + "1", + "8", + "0", + "-1", + "19", + "5409", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991356", + "991356", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129116", + "1483134528", + "1483134553", + "1483129116", + "1", + "8", + "0", + "-1", + "25", + "5412", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991362", + "991362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129141", + "1483134554", + "1483134579", + "1483129141", + "1", + "8", + "0", + "-1", + "25", + "5413", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991375", + "991375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129168", + "1483134589", + "1483134612", + "1483129168", + "1", + "8", + "0", + "-1", + "23", + "5421", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991381", + "991381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129184", + "1483134605", + "1483134625", + "1483129184", + "1", + "8", + "0", + "-1", + "20", + "5421", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991383", + "991383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129194", + "1483134612", + "1483134641", + "1483129194", + "1", + "8", + "0", + "-1", + "29", + "5418", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991387", + "991387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129212", + "1483134626", + "1483134649", + "1483129212", + "1", + "8", + "0", + "-1", + "23", + "5414", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991391", + "991391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129233", + "1483134643", + "1483134671", + "1483129233", + "1", + "8", + "0", + "-1", + "28", + "5410", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991393", + "991393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129240", + "1483134649", + "1483134672", + "1483129240", + "1", + "8", + "0", + "-1", + "23", + "5409", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991395", + "991395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129240", + "1483134660", + "1483134686", + "1483129240", + "1", + "8", + "0", + "-1", + "26", + "5420", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991397", + "991397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129254", + "1483134670", + "1483134694", + "1483129254", + "1", + "8", + "0", + "-1", + "24", + "5416", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991417", + "991417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129333", + "1483134722", + "1483134737", + "1483129333", + "1", + "8", + "0", + "-1", + "15", + "5389", + "120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991421", + "991421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129360", + "1483134728", + "1483134752", + "1483129360", + "1", + "8", + "0", + "-1", + "24", + "5368", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991423", + "991423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129361", + "1483134737", + "1483134759", + "1483129361", + "1", + "8", + "0", + "-1", + "22", + "5376", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991427", + "991427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129413", + "1483134753", + "1483134779", + "1483129413", + "1", + "8", + "0", + "-1", + "26", + "5340", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991437", + "991437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129456", + "1483134783", + "1483134810", + "1483129456", + "1", + "8", + "0", + "-1", + "27", + "5327", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991447", + "991447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129501", + "1483134825", + "1483134847", + "1483129501", + "1", + "8", + "0", + "-1", + "22", + "5324", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991451", + "991451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129519", + "1483134848", + "1483134873", + "1483129519", + "1", + "8", + "0", + "-1", + "25", + "5329", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991486", + "991486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129686", + "1483134991", + "1483135017", + "1483129686", + "1", + "8", + "0", + "-1", + "26", + "5305", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991508", + "991508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129747", + "1483135096", + "1483135120", + "1483129747", + "1", + "8", + "0", + "-1", + "24", + "5349", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991524", + "991524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129778", + "1483135150", + "1483135176", + "1483129778", + "1", + "8", + "0", + "-1", + "26", + "5372", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991539", + "991539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129803", + "1483135198", + "1483135220", + "1483129803", + "1", + "8", + "0", + "-1", + "22", + "5395", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991541", + "991541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129804", + "1483135201", + "1483135230", + "1483129804", + "1", + "8", + "0", + "-1", + "29", + "5397", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991548", + "991548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129815", + "1483135220", + "1483135241", + "1483129815", + "1", + "8", + "0", + "-1", + "21", + "5405", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991550", + "991550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129829", + "1483135226", + "1483135248", + "1483129829", + "1", + "8", + "0", + "-1", + "22", + "5397", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991562", + "991562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129878", + "1483135252", + "1483135272", + "1483129878", + "1", + "8", + "0", + "-1", + "20", + "5374", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991586", + "991586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129979", + "1483135335", + "1483135355", + "1483129979", + "1", + "8", + "0", + "-1", + "20", + "5356", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991588", + "991588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129998", + "1483135347", + "1483135370", + "1483129998", + "1", + "8", + "0", + "-1", + "23", + "5349", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991590", + "991590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129999", + "1483135356", + "1483135382", + "1483129999", + "1", + "8", + "0", + "-1", + "26", + "5357", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991600", + "991600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130030", + "1483135383", + "1483135406", + "1483130030", + "1", + "8", + "0", + "-1", + "23", + "5353", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991614", + "991614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130103", + "1483135460", + "1483135487", + "1483130103", + "1", + "8", + "0", + "-1", + "27", + "5357", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991632", + "991632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130182", + "1483135514", + "1483135541", + "1483130182", + "1", + "8", + "0", + "-1", + "27", + "5332", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991646", + "991646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130234", + "1483135569", + "1483135593", + "1483130234", + "1", + "8", + "0", + "-1", + "24", + "5335", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991686", + "991686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130376", + "1483135769", + "1483135796", + "1483130376", + "1", + "8", + "0", + "-1", + "27", + "5393", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991694", + "991694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130385", + "1483135797", + "1483135824", + "1483130385", + "1", + "8", + "0", + "-1", + "27", + "5412", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991702", + "991702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130423", + "1483135823", + "1483135852", + "1483130423", + "1", + "8", + "0", + "-1", + "29", + "5400", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991710", + "991710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130450", + "1483135878", + "1483135901", + "1483130450", + "1", + "8", + "0", + "-1", + "23", + "5428", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991730", + "991730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130486", + "1483135932", + "1483135961", + "1483130486", + "1", + "8", + "0", + "-1", + "29", + "5446", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991740", + "991740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130515", + "1483135965", + "1483135988", + "1483130515", + "1", + "8", + "0", + "-1", + "23", + "5450", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991742", + "991742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130516", + "1483135978", + "1483136001", + "1483130516", + "1", + "8", + "0", + "-1", + "23", + "5462", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991744", + "991744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130526", + "1483135982", + "1483135999", + "1483130526", + "1", + "8", + "0", + "-1", + "17", + "5456", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991748", + "991748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130532", + "1483135987", + "1483136009", + "1483130532", + "1", + "8", + "0", + "-1", + "22", + "5455", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991750", + "991750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130552", + "1483135989", + "1483136007", + "1483130552", + "1", + "8", + "0", + "-1", + "18", + "5437", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991758", + "991758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130569", + "1483136010", + "1483136028", + "1483130569", + "1", + "8", + "0", + "-1", + "18", + "5441", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991760", + "991760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130577", + "1483136010", + "1483136027", + "1483130577", + "1", + "8", + "0", + "-1", + "17", + "5433", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991764", + "991764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130587", + "1483136028", + "1483136057", + "1483130587", + "1", + "8", + "0", + "-1", + "29", + "5441", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991767", + "991767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130589", + "1483136030", + "1483136056", + "1483130589", + "1", + "8", + "0", + "-1", + "26", + "5441", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991769", + "991769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130590", + "1483136045", + "1483136073", + "1483130590", + "1", + "8", + "0", + "-1", + "28", + "5455", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991771", + "991771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130590", + "1483136055", + "1483136079", + "1483130590", + "1", + "8", + "0", + "-1", + "24", + "5465", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991778", + "991778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130601", + "1483136062", + "1483136087", + "1483130601", + "1", + "8", + "0", + "-1", + "25", + "5461", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991790", + "991790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130619", + "1483136096", + "1483136113", + "1483130619", + "1", + "8", + "0", + "-1", + "17", + "5477", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991792", + "991792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130619", + "1483136113", + "1483136135", + "1483130619", + "1", + "8", + "0", + "-1", + "22", + "5494", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991794", + "991794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130621", + "1483136116", + "1483136136", + "1483130621", + "1", + "8", + "0", + "-1", + "20", + "5495", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991808", + "991808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130655", + "1483136159", + "1483136181", + "1483130655", + "1", + "8", + "0", + "-1", + "22", + "5504", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991812", + "991812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130662", + "1483136169", + "1483136194", + "1483130662", + "1", + "8", + "0", + "-1", + "25", + "5507", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991834", + "991834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130734", + "1483136247", + "1483136276", + "1483130734", + "1", + "8", + "0", + "-1", + "29", + "5513", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991846", + "991846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130795", + "1483136294", + "1483136321", + "1483130795", + "1", + "8", + "0", + "-1", + "27", + "5499", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991850", + "991850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130797", + "1483136301", + "1483136330", + "1483130797", + "1", + "8", + "0", + "-1", + "29", + "5504", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991852", + "991852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130808", + "1483136301", + "1483136326", + "1483130808", + "1", + "8", + "0", + "-1", + "25", + "5493", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991856", + "991856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130820", + "1483136316", + "1483136338", + "1483130820", + "1", + "8", + "0", + "-1", + "22", + "5496", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991886", + "991886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130902", + "1483136404", + "1483136421", + "1483130902", + "1", + "8", + "0", + "-1", + "17", + "5502", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991908", + "991908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130939", + "1483136489", + "1483136514", + "1483130939", + "1", + "8", + "0", + "-1", + "25", + "5550", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991914", + "991914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130964", + "1483136518", + "1483136537", + "1483130964", + "1", + "8", + "0", + "-1", + "19", + "5554", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "991936", + "991936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131034", + "1483136614", + "1483136642", + "1483131034", + "1", + "8", + "0", + "-1", + "28", + "5580", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992018", + "992018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131249", + "1483136993", + "1483137019", + "1483131249", + "1", + "8", + "0", + "-1", + "26", + "5744", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992040", + "992040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131304", + "1483137058", + "1483137082", + "1483131304", + "1", + "8", + "0", + "-1", + "24", + "5754", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992042", + "992042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131309", + "1483137077", + "1483137105", + "1483131309", + "1", + "8", + "0", + "-1", + "28", + "5768", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992050", + "992050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131329", + "1483137106", + "1483137135", + "1483131329", + "1", + "8", + "0", + "-1", + "29", + "5777", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992118", + "992118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131519", + "1483137388", + "1483137414", + "1483131519", + "1", + "8", + "0", + "-1", + "26", + "5869", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992146", + "992146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131614", + "1483137485", + "1483137505", + "1483131614", + "1", + "8", + "0", + "-1", + "20", + "5871", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992148", + "992148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131640", + "1483137487", + "1483137508", + "1483131640", + "1", + "8", + "0", + "-1", + "21", + "5847", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992154", + "992154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131646", + "1483137506", + "1483137531", + "1483131646", + "1", + "8", + "0", + "-1", + "25", + "5860", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992166", + "992166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131675", + "1483137582", + "1483137608", + "1483131675", + "1", + "8", + "0", + "-1", + "26", + "5907", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992168", + "992168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131678", + "1483137586", + "1483137608", + "1483131678", + "1", + "8", + "0", + "-1", + "22", + "5908", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992206", + "992206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131807", + "1483137696", + "1483137722", + "1483131807", + "1", + "8", + "0", + "-1", + "26", + "5889", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992210", + "992210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131832", + "1483137712", + "1483137741", + "1483131832", + "1", + "8", + "0", + "-1", + "29", + "5880", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992220", + "992220", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131873", + "1483137738", + "1483137766", + "1483131873", + "1", + "8", + "0", + "-1", + "28", + "5865", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992232", + "992232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131892", + "1483137789", + "1483137813", + "1483131892", + "1", + "8", + "0", + "-1", + "24", + "5897", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992234", + "992234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131903", + "1483137795", + "1483137821", + "1483131903", + "1", + "8", + "0", + "-1", + "26", + "5892", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992238", + "992238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131915", + "1483137808", + "1483137833", + "1483131915", + "1", + "8", + "0", + "-1", + "25", + "5893", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992242", + "992242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131929", + "1483137813", + "1483137838", + "1483131929", + "1", + "8", + "0", + "-1", + "25", + "5884", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992244", + "992244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131931", + "1483137822", + "1483137843", + "1483131931", + "1", + "8", + "0", + "-1", + "21", + "5891", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992250", + "992250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131954", + "1483137844", + "1483137872", + "1483131954", + "1", + "8", + "0", + "-1", + "28", + "5890", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992294", + "992294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132082", + "1483137980", + "1483138007", + "1483132082", + "1", + "8", + "0", + "-1", + "27", + "5898", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992298", + "992298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132099", + "1483138003", + "1483138029", + "1483132099", + "1", + "8", + "0", + "-1", + "26", + "5904", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992300", + "992300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132103", + "1483138007", + "1483138031", + "1483132103", + "1", + "8", + "0", + "-1", + "24", + "5904", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992358", + "992358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132311", + "1483138252", + "1483138273", + "1483132311", + "1", + "8", + "0", + "-1", + "21", + "5941", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992364", + "992364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132338", + "1483138285", + "1483138310", + "1483132338", + "1", + "8", + "0", + "-1", + "25", + "5947", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992374", + "992374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132379", + "1483138321", + "1483138349", + "1483132379", + "1", + "8", + "0", + "-1", + "28", + "5942", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992404", + "992404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132485", + "1483138421", + "1483138447", + "1483132485", + "1", + "8", + "0", + "-1", + "26", + "5936", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992410", + "992410", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132519", + "1483138448", + "1483138469", + "1483132519", + "1", + "8", + "0", + "-1", + "21", + "5929", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992414", + "992414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132528", + "1483138451", + "1483138474", + "1483132528", + "1", + "8", + "0", + "-1", + "23", + "5923", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992418", + "992418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132529", + "1483138474", + "1483138494", + "1483132529", + "1", + "8", + "0", + "-1", + "20", + "5945", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992424", + "992424", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132545", + "1483138494", + "1483138519", + "1483132545", + "1", + "8", + "0", + "-1", + "25", + "5949", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992426", + "992426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132557", + "1483138494", + "1483138515", + "1483132557", + "1", + "8", + "0", + "-1", + "21", + "5937", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992430", + "992430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132571", + "1483138499", + "1483138520", + "1483132571", + "1", + "8", + "0", + "-1", + "21", + "5928", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992436", + "992436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132584", + "1483138520", + "1483138538", + "1483132584", + "1", + "8", + "0", + "-1", + "18", + "5936", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992438", + "992438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132589", + "1483138521", + "1483138548", + "1483132589", + "1", + "8", + "0", + "-1", + "27", + "5932", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992440", + "992440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132589", + "1483138521", + "1483138548", + "1483132589", + "1", + "8", + "0", + "-1", + "27", + "5932", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992442", + "992442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132606", + "1483138535", + "1483138563", + "1483132606", + "1", + "8", + "0", + "-1", + "28", + "5929", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992448", + "992448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132618", + "1483138549", + "1483138576", + "1483132618", + "1", + "8", + "0", + "-1", + "27", + "5931", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992466", + "992466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132661", + "1483138625", + "1483138652", + "1483132661", + "1", + "8", + "0", + "-1", + "27", + "5964", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992472", + "992472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132676", + "1483138650", + "1483138674", + "1483132676", + "1", + "8", + "0", + "-1", + "24", + "5974", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992498", + "992498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132748", + "1483138727", + "1483138756", + "1483132748", + "1", + "8", + "0", + "-1", + "29", + "5979", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992520", + "992520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132810", + "1483138817", + "1483138846", + "1483132810", + "1", + "8", + "0", + "-1", + "29", + "6007", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992536", + "992536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132853", + "1483138880", + "1483138908", + "1483132853", + "1", + "8", + "0", + "-1", + "28", + "6027", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992538", + "992538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132884", + "1483138883", + "1483138906", + "1483132884", + "1", + "8", + "0", + "-1", + "23", + "5999", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992542", + "992542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132890", + "1483138891", + "1483138920", + "1483132890", + "1", + "8", + "0", + "-1", + "29", + "6001", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992609", + "992609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133091", + "1483139167", + "1483139191", + "1483133091", + "1", + "8", + "0", + "-1", + "24", + "6076", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992611", + "992611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133101", + "1483139189", + "1483139210", + "1483133101", + "1", + "8", + "0", + "-1", + "21", + "6088", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992615", + "992615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133110", + "1483139211", + "1483139238", + "1483133110", + "1", + "8", + "0", + "-1", + "27", + "6101", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992617", + "992617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133112", + "1483139224", + "1483139248", + "1483133112", + "1", + "8", + "0", + "-1", + "24", + "6112", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992629", + "992629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133177", + "1483139268", + "1483139293", + "1483133177", + "1", + "8", + "0", + "-1", + "25", + "6091", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992635", + "992635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133190", + "1483139293", + "1483139321", + "1483133190", + "1", + "8", + "0", + "-1", + "28", + "6103", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992638", + "992638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133201", + "1483139294", + "1483139319", + "1483133201", + "1", + "8", + "0", + "-1", + "25", + "6093", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992640", + "992640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133202", + "1483139300", + "1483139329", + "1483133202", + "1", + "8", + "0", + "-1", + "29", + "6098", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992654", + "992654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133220", + "1483139330", + "1483139359", + "1483133220", + "1", + "8", + "0", + "-1", + "29", + "6110", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992660", + "992660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133232", + "1483139342", + "1483139363", + "1483133232", + "1", + "8", + "0", + "-1", + "21", + "6110", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992662", + "992662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133233", + "1483139360", + "1483139382", + "1483133233", + "1", + "8", + "0", + "-1", + "22", + "6127", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992666", + "992666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133235", + "1483139364", + "1483139386", + "1483133235", + "1", + "8", + "0", + "-1", + "22", + "6129", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992706", + "992706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133324", + "1483139517", + "1483139536", + "1483133324", + "1", + "8", + "0", + "-1", + "19", + "6193", + "152", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992728", + "992728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133373", + "1483139579", + "1483139607", + "1483133373", + "1", + "8", + "0", + "-1", + "28", + "6206", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992730", + "992730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133378", + "1483139580", + "1483139603", + "1483133378", + "1", + "8", + "0", + "-1", + "23", + "6202", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992732", + "992732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133382", + "1483139591", + "1483139613", + "1483133382", + "1", + "8", + "0", + "-1", + "22", + "6209", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992754", + "992754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133435", + "1483139694", + "1483139716", + "1483133435", + "1", + "8", + "0", + "-1", + "22", + "6259", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992776", + "992776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133511", + "1483139775", + "1483139799", + "1483133511", + "1", + "8", + "0", + "-1", + "24", + "6264", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992780", + "992780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133517", + "1483139789", + "1483139806", + "1483133517", + "1", + "8", + "0", + "-1", + "17", + "6272", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992782", + "992782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133519", + "1483139790", + "1483139819", + "1483133519", + "1", + "8", + "0", + "-1", + "29", + "6271", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992784", + "992784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133522", + "1483139792", + "1483139812", + "1483133522", + "1", + "8", + "0", + "-1", + "20", + "6270", + "160", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992788", + "992788", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133525", + "1483139800", + "1483139823", + "1483133525", + "1", + "8", + "0", + "-1", + "23", + "6275", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992846", + "992846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133682", + "1483140057", + "1483140084", + "1483133682", + "1", + "8", + "0", + "-1", + "27", + "6375", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992874", + "992874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133732", + "1483140176", + "1483140202", + "1483133732", + "1", + "8", + "0", + "-1", + "26", + "6444", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992896", + "992896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133809", + "1483140316", + "1483140343", + "1483133809", + "1", + "8", + "0", + "-1", + "27", + "6507", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992904", + "992904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133817", + "1483140361", + "1483140385", + "1483133817", + "1", + "8", + "0", + "-1", + "24", + "6544", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992906", + "992906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133823", + "1483140365", + "1483140388", + "1483133823", + "1", + "8", + "0", + "-1", + "23", + "6542", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992908", + "992908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133824", + "1483140373", + "1483140397", + "1483133824", + "1", + "8", + "0", + "-1", + "24", + "6549", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "992932", + "992932", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133885", + "1483140461", + "1483140482", + "1483133885", + "1", + "8", + "0", + "-1", + "21", + "6576", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993004", + "993004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134167", + "1483140795", + "1483140819", + "1483134167", + "1", + "8", + "0", + "-1", + "24", + "6628", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993006", + "993006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134171", + "1483140796", + "1483140821", + "1483134171", + "1", + "8", + "0", + "-1", + "25", + "6625", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993008", + "993008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134177", + "1483140803", + "1483140825", + "1483134177", + "1", + "8", + "0", + "-1", + "22", + "6626", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993014", + "993014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134191", + "1483140821", + "1483140848", + "1483134191", + "1", + "8", + "0", + "-1", + "27", + "6630", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993038", + "993038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134303", + "1483140879", + "1483140908", + "1483134303", + "1", + "8", + "0", + "-1", + "29", + "6576", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993060", + "993060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134348", + "1483140943", + "1483140968", + "1483134348", + "1", + "8", + "0", + "-1", + "25", + "6595", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993070", + "993070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134371", + "1483140964", + "1483140981", + "1483134371", + "1", + "8", + "0", + "-1", + "17", + "6593", + "136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993088", + "993088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134443", + "1483141027", + "1483141049", + "1483134443", + "1", + "8", + "0", + "-1", + "22", + "6584", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993092", + "993092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134461", + "1483141047", + "1483141069", + "1483134461", + "1", + "8", + "0", + "-1", + "22", + "6586", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993094", + "993094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134477", + "1483141050", + "1483141072", + "1483134477", + "1", + "8", + "0", + "-1", + "22", + "6573", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993106", + "993106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134511", + "1483141065", + "1483141094", + "1483134511", + "1", + "8", + "0", + "-1", + "29", + "6554", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993108", + "993108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134528", + "1483141070", + "1483141098", + "1483134528", + "1", + "8", + "0", + "-1", + "28", + "6542", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993146", + "993146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134660", + "1483141200", + "1483141229", + "1483134660", + "1", + "8", + "0", + "-1", + "29", + "6540", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993190", + "993190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134787", + "1483141408", + "1483141433", + "1483134787", + "1", + "8", + "0", + "-1", + "25", + "6621", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993226", + "993226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134942", + "1483141537", + "1483141563", + "1483134942", + "1", + "8", + "0", + "-1", + "26", + "6595", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993228", + "993228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134954", + "1483141549", + "1483141570", + "1483134954", + "1", + "8", + "0", + "-1", + "21", + "6595", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993230", + "993230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134960", + "1483141555", + "1483141580", + "1483134960", + "1", + "8", + "0", + "-1", + "25", + "6595", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993242", + "993242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135017", + "1483141588", + "1483141613", + "1483135017", + "1", + "8", + "0", + "-1", + "25", + "6571", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993244", + "993244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135037", + "1483141609", + "1483141633", + "1483135037", + "1", + "8", + "0", + "-1", + "24", + "6572", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993252", + "993252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135060", + "1483141622", + "1483141651", + "1483135060", + "1", + "8", + "0", + "-1", + "29", + "6562", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993256", + "993256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135093", + "1483141631", + "1483141658", + "1483135093", + "1", + "8", + "0", + "-1", + "27", + "6538", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993260", + "993260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135105", + "1483141637", + "1483141660", + "1483135105", + "1", + "8", + "0", + "-1", + "23", + "6532", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993264", + "993264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135114", + "1483141652", + "1483141675", + "1483135114", + "1", + "8", + "0", + "-1", + "23", + "6538", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993268", + "993268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135134", + "1483141661", + "1483141689", + "1483135134", + "1", + "8", + "0", + "-1", + "28", + "6527", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993270", + "993270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135146", + "1483141671", + "1483141687", + "1483135146", + "1", + "8", + "0", + "-1", + "16", + "6525", + "128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993274", + "993274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135151", + "1483141676", + "1483141701", + "1483135151", + "1", + "8", + "0", + "-1", + "25", + "6525", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993276", + "993276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135154", + "1483141686", + "1483141704", + "1483135154", + "1", + "8", + "0", + "-1", + "18", + "6532", + "144", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993278", + "993278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135166", + "1483141688", + "1483141710", + "1483135166", + "1", + "8", + "0", + "-1", + "22", + "6522", + "176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993280", + "993280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135176", + "1483141690", + "1483141717", + "1483135176", + "1", + "8", + "0", + "-1", + "27", + "6514", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993324", + "993324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135304", + "1483141831", + "1483141860", + "1483135304", + "1", + "8", + "0", + "-1", + "29", + "6527", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993326", + "993326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135307", + "1483141837", + "1483141860", + "1483135307", + "1", + "8", + "0", + "-1", + "23", + "6530", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993336", + "993336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135355", + "1483141861", + "1483141886", + "1483135355", + "1", + "8", + "0", + "-1", + "25", + "6506", + "200", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993358", + "993358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135438", + "1483141933", + "1483141957", + "1483135438", + "1", + "8", + "0", + "-1", + "24", + "6495", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993378", + "993378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135514", + "1483142009", + "1483142035", + "1483135514", + "1", + "8", + "0", + "-1", + "26", + "6495", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993384", + "993384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135538", + "1483142036", + "1483142062", + "1483135538", + "1", + "8", + "0", + "-1", + "26", + "6498", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993406", + "993406", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135634", + "1483142132", + "1483142153", + "1483135634", + "1", + "8", + "0", + "-1", + "21", + "6498", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993408", + "993408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135658", + "1483142140", + "1483142151", + "1483135658", + "1", + "8", + "0", + "-1", + "11", + "6482", + "88", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993414", + "993414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135680", + "1483142154", + "1483142175", + "1483135680", + "1", + "8", + "0", + "-1", + "21", + "6474", + "168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993422", + "993422", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135714", + "1483142196", + "1483142224", + "1483135714", + "1", + "8", + "0", + "-1", + "28", + "6482", + "224", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993438", + "993438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135796", + "1483142270", + "1483142294", + "1483135796", + "1", + "8", + "0", + "-1", + "24", + "6474", + "192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993442", + "993442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135802", + "1483142288", + "1483142311", + "1483135802", + "1", + "8", + "0", + "-1", + "23", + "6486", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993456", + "993456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135877", + "1483142325", + "1483142348", + "1483135877", + "1", + "8", + "0", + "-1", + "23", + "6448", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993466", + "993466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135918", + "1483142349", + "1483142376", + "1483135918", + "1", + "8", + "0", + "-1", + "27", + "6431", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993468", + "993468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135919", + "1483142350", + "1483142377", + "1483135919", + "1", + "8", + "0", + "-1", + "27", + "6431", + "216", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993474", + "993474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135923", + "1483142368", + "1483142394", + "1483135923", + "1", + "8", + "0", + "-1", + "26", + "6445", + "208", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "993478", + "993478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135935", + "1483142378", + "1483142401", + "1483135935", + "1", + "8", + "0", + "-1", + "23", + "6443", + "184", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177155", + "177155", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116434", + "1483120090", + "1483120104", + "1483116434", + "1", + "8", + "0", + "-1", + "14", + "3656", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177158", + "177158", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116435", + "1483120105", + "1483120124", + "1483116435", + "1", + "8", + "0", + "-1", + "19", + "3670", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177162", + "177162", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116436", + "1483120125", + "1483120140", + "1483116436", + "1", + "8", + "0", + "-1", + "15", + "3689", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177166", + "177166", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116436", + "1483120140", + "1483120159", + "1483116436", + "1", + "8", + "0", + "-1", + "19", + "3704", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177170", + "177170", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116437", + "1483120159", + "1483120173", + "1483116437", + "1", + "8", + "0", + "-1", + "14", + "3722", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177173", + "177173", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116438", + "1483120173", + "1483120187", + "1483116438", + "1", + "8", + "0", + "-1", + "14", + "3735", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177177", + "177177", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116438", + "1483120187", + "1483120206", + "1483116438", + "1", + "8", + "0", + "-1", + "19", + "3749", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177181", + "177181", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116439", + "1483120206", + "1483120228", + "1483116439", + "1", + "8", + "0", + "-1", + "22", + "3767", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177185", + "177185", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116440", + "1483120228", + "1483120242", + "1483116440", + "1", + "8", + "0", + "-1", + "14", + "3788", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177191", + "177191", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116441", + "1483120243", + "1483120254", + "1483116441", + "1", + "8", + "0", + "-1", + "11", + "3802", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177193", + "177193", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116442", + "1483120254", + "1483120269", + "1483116442", + "1", + "8", + "0", + "-1", + "15", + "3812", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177195", + "177195", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116442", + "1483120269", + "1483120285", + "1483116442", + "1", + "8", + "0", + "-1", + "16", + "3827", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177198", + "177198", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116442", + "1483120285", + "1483120308", + "1483116442", + "1", + "8", + "0", + "-1", + "23", + "3843", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177202", + "177202", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116443", + "1483120309", + "1483120322", + "1483116443", + "1", + "8", + "0", + "-1", + "13", + "3866", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177206", + "177206", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116444", + "1483120322", + "1483120336", + "1483116444", + "1", + "8", + "0", + "-1", + "14", + "3878", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177209", + "177209", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116444", + "1483120336", + "1483120356", + "1483116444", + "1", + "8", + "0", + "-1", + "20", + "3892", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177213", + "177213", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116445", + "1483120356", + "1483120378", + "1483116445", + "1", + "8", + "0", + "-1", + "22", + "3911", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177217", + "177217", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116446", + "1483120378", + "1483120391", + "1483116446", + "1", + "8", + "0", + "-1", + "13", + "3932", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177221", + "177221", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116447", + "1483120392", + "1483120408", + "1483116447", + "1", + "8", + "0", + "-1", + "16", + "3945", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177224", + "177224", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116447", + "1483120408", + "1483120420", + "1483116447", + "1", + "8", + "0", + "-1", + "12", + "3961", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177228", + "177228", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116448", + "1483120420", + "1483120437", + "1483116448", + "1", + "8", + "0", + "-1", + "17", + "3972", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177232", + "177232", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116449", + "1483120438", + "1483120452", + "1483116449", + "1", + "8", + "0", + "-1", + "14", + "3989", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177236", + "177236", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116450", + "1483120453", + "1483120464", + "1483116450", + "1", + "8", + "0", + "-1", + "11", + "4003", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177239", + "177239", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116450", + "1483120464", + "1483120487", + "1483116450", + "1", + "8", + "0", + "-1", + "23", + "4014", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177247", + "177247", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116452", + "1483120524", + "1483120549", + "1483116452", + "1", + "8", + "0", + "-1", + "25", + "4072", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177251", + "177251", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116453", + "1483120549", + "1483120568", + "1483116453", + "1", + "8", + "0", + "-1", + "19", + "4096", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177254", + "177254", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116453", + "1483120568", + "1483120579", + "1483116453", + "1", + "8", + "0", + "-1", + "11", + "4115", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177259", + "177259", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116454", + "1483120580", + "1483120605", + "1483116454", + "1", + "8", + "0", + "-1", + "25", + "4126", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177263", + "177263", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116455", + "1483120606", + "1483120618", + "1483116455", + "1", + "8", + "0", + "-1", + "12", + "4151", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177267", + "177267", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116456", + "1483120618", + "1483120628", + "1483116456", + "1", + "8", + "0", + "-1", + "10", + "4162", + "80", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177271", + "177271", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116457", + "1483120629", + "1483120654", + "1483116457", + "1", + "8", + "0", + "-1", + "25", + "4172", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177283", + "177283", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116459", + "1483120724", + "1483120740", + "1483116459", + "1", + "8", + "0", + "-1", + "16", + "4265", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177288", + "177288", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116460", + "1483120740", + "1483120757", + "1483116460", + "1", + "8", + "0", + "-1", + "17", + "4280", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177291", + "177291", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116461", + "1483120758", + "1483120785", + "1483116461", + "1", + "8", + "0", + "-1", + "27", + "4297", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177295", + "177295", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116461", + "1483120785", + "1483120799", + "1483116461", + "1", + "8", + "0", + "-1", + "14", + "4324", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177299", + "177299", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116462", + "1483120800", + "1483120814", + "1483116462", + "1", + "8", + "0", + "-1", + "14", + "4338", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177311", + "177311", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116465", + "1483120893", + "1483120909", + "1483116465", + "1", + "8", + "0", + "-1", + "16", + "4428", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177317", + "177317", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116466", + "1483120941", + "1483120954", + "1483116466", + "1", + "8", + "0", + "-1", + "13", + "4475", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177321", + "177321", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116466", + "1483120954", + "1483120970", + "1483116466", + "1", + "8", + "0", + "-1", + "16", + "4488", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177325", + "177325", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116467", + "1483120970", + "1483120986", + "1483116467", + "1", + "8", + "0", + "-1", + "16", + "4503", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177328", + "177328", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116468", + "1483120986", + "1483121000", + "1483116468", + "1", + "8", + "0", + "-1", + "14", + "4518", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177332", + "177332", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116469", + "1483121000", + "1483121021", + "1483116469", + "1", + "8", + "0", + "-1", + "21", + "4531", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177340", + "177340", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116470", + "1483121077", + "1483121104", + "1483116470", + "1", + "8", + "0", + "-1", + "27", + "4607", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177343", + "177343", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116471", + "1483121104", + "1483121120", + "1483116471", + "1", + "8", + "0", + "-1", + "16", + "4633", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177348", + "177348", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116472", + "1483121120", + "1483121132", + "1483116472", + "1", + "8", + "0", + "-1", + "12", + "4648", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177352", + "177352", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116473", + "1483121133", + "1483121149", + "1483116473", + "1", + "8", + "0", + "-1", + "16", + "4660", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177356", + "177356", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116473", + "1483121149", + "1483121164", + "1483116473", + "1", + "8", + "0", + "-1", + "15", + "4676", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177359", + "177359", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116474", + "1483121164", + "1483121185", + "1483116474", + "1", + "8", + "0", + "-1", + "21", + "4690", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177363", + "177363", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116475", + "1483121185", + "1483121207", + "1483116475", + "1", + "8", + "0", + "-1", + "22", + "4710", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177368", + "177368", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116476", + "1483121208", + "1483121232", + "1483116476", + "1", + "8", + "0", + "-1", + "24", + "4732", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177372", + "177372", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116477", + "1483121233", + "1483121248", + "1483116477", + "1", + "8", + "0", + "-1", + "15", + "4756", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177375", + "177375", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116477", + "1483121248", + "1483121263", + "1483116477", + "1", + "8", + "0", + "-1", + "15", + "4771", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177379", + "177379", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116478", + "1483121263", + "1483121276", + "1483116478", + "1", + "8", + "0", + "-1", + "13", + "4785", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177383", + "177383", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116479", + "1483121276", + "1483121292", + "1483116479", + "1", + "8", + "0", + "-1", + "16", + "4797", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177387", + "177387", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116480", + "1483121292", + "1483121306", + "1483116480", + "1", + "8", + "0", + "-1", + "14", + "4812", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177391", + "177391", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116480", + "1483121306", + "1483121319", + "1483116480", + "1", + "8", + "0", + "-1", + "13", + "4826", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177394", + "177394", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116481", + "1483121319", + "1483121348", + "1483116481", + "1", + "8", + "0", + "-1", + "29", + "4838", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177402", + "177402", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116482", + "1483121389", + "1483121410", + "1483116482", + "1", + "8", + "0", + "-1", + "21", + "4907", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177410", + "177410", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116484", + "1483121446", + "1483121470", + "1483116484", + "1", + "8", + "0", + "-1", + "24", + "4962", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177414", + "177414", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116485", + "1483121470", + "1483121498", + "1483116485", + "1", + "8", + "0", + "-1", + "28", + "4985", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177423", + "177423", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116487", + "1483121537", + "1483121562", + "1483116487", + "1", + "8", + "0", + "-1", + "25", + "5050", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177438", + "177438", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116490", + "1483121778", + "1483121799", + "1483116490", + "1", + "8", + "0", + "-1", + "21", + "5288", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177442", + "177442", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116490", + "1483121799", + "1483121816", + "1483116490", + "1", + "8", + "0", + "-1", + "17", + "5309", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177446", + "177446", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116491", + "1483121817", + "1483121834", + "1483116491", + "1", + "8", + "0", + "-1", + "17", + "5326", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177449", + "177449", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116492", + "1483121834", + "1483121848", + "1483116492", + "1", + "8", + "0", + "-1", + "14", + "5342", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177453", + "177453", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116492", + "1483121849", + "1483121861", + "1483116492", + "1", + "8", + "0", + "-1", + "12", + "5357", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177457", + "177457", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116493", + "1483121862", + "1483121884", + "1483116493", + "1", + "8", + "0", + "-1", + "22", + "5369", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177461", + "177461", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116494", + "1483121885", + "1483121906", + "1483116494", + "1", + "8", + "0", + "-1", + "21", + "5391", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177464", + "177464", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116495", + "1483121907", + "1483121932", + "1483116495", + "1", + "8", + "0", + "-1", + "25", + "5412", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177468", + "177468", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116495", + "1483121932", + "1483121947", + "1483116495", + "1", + "8", + "0", + "-1", + "15", + "5437", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177472", + "177472", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116496", + "1483121948", + "1483121959", + "1483116496", + "1", + "8", + "0", + "-1", + "11", + "5452", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177476", + "177476", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116497", + "1483121959", + "1483121976", + "1483116497", + "1", + "8", + "0", + "-1", + "17", + "5462", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177479", + "177479", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116497", + "1483121976", + "1483121991", + "1483116497", + "1", + "8", + "0", + "-1", + "15", + "5479", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177483", + "177483", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116498", + "1483121991", + "1483122010", + "1483116498", + "1", + "8", + "0", + "-1", + "19", + "5493", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177487", + "177487", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116499", + "1483122010", + "1483122032", + "1483116499", + "1", + "8", + "0", + "-1", + "22", + "5511", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177498", + "177498", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116501", + "1483122114", + "1483122129", + "1483116501", + "1", + "8", + "0", + "-1", + "15", + "5613", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177502", + "177502", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116502", + "1483122130", + "1483122141", + "1483116502", + "1", + "8", + "0", + "-1", + "11", + "5628", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177506", + "177506", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116503", + "1483122142", + "1483122157", + "1483116503", + "1", + "8", + "0", + "-1", + "15", + "5639", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177509", + "177509", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116503", + "1483122158", + "1483122172", + "1483116503", + "1", + "8", + "0", + "-1", + "14", + "5655", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177513", + "177513", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116504", + "1483122173", + "1483122185", + "1483116504", + "1", + "8", + "0", + "-1", + "12", + "5669", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177517", + "177517", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116505", + "1483122185", + "1483122196", + "1483116505", + "1", + "8", + "0", + "-1", + "11", + "5680", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177527", + "177527", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116507", + "1483122261", + "1483122274", + "1483116507", + "1", + "8", + "0", + "-1", + "13", + "5754", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177530", + "177530", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116507", + "1483122274", + "1483122294", + "1483116507", + "1", + "8", + "0", + "-1", + "20", + "5767", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177535", + "177535", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116509", + "1483122294", + "1483122310", + "1483116509", + "1", + "8", + "0", + "-1", + "16", + "5785", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177537", + "177537", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116509", + "1483122310", + "1483122328", + "1483116509", + "1", + "8", + "0", + "-1", + "18", + "5801", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177540", + "177540", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116509", + "1483122329", + "1483122350", + "1483116509", + "1", + "8", + "0", + "-1", + "21", + "5820", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177545", + "177545", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116510", + "1483122351", + "1483122364", + "1483116510", + "1", + "8", + "0", + "-1", + "13", + "5841", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177548", + "177548", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116511", + "1483122365", + "1483122376", + "1483116511", + "1", + "8", + "0", + "-1", + "11", + "5854", + "88", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177552", + "177552", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116512", + "1483122377", + "1483122402", + "1483116512", + "1", + "8", + "0", + "-1", + "25", + "5865", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177556", + "177556", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116513", + "1483122402", + "1483122423", + "1483116513", + "1", + "8", + "0", + "-1", + "21", + "5889", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177560", + "177560", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116513", + "1483122424", + "1483122442", + "1483116513", + "1", + "8", + "0", + "-1", + "18", + "5911", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177563", + "177563", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116514", + "1483122442", + "1483122460", + "1483116514", + "1", + "8", + "0", + "-1", + "18", + "5928", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177567", + "177567", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116515", + "1483122460", + "1483122482", + "1483116515", + "1", + "8", + "0", + "-1", + "22", + "5945", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177571", + "177571", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116515", + "1483122482", + "1483122501", + "1483116515", + "1", + "8", + "0", + "-1", + "19", + "5967", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177575", + "177575", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116516", + "1483122502", + "1483122517", + "1483116516", + "1", + "8", + "0", + "-1", + "15", + "5986", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177578", + "177578", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116517", + "1483122517", + "1483122530", + "1483116517", + "1", + "8", + "0", + "-1", + "13", + "6000", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177582", + "177582", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116518", + "1483122530", + "1483122552", + "1483116518", + "1", + "8", + "0", + "-1", + "22", + "6012", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177586", + "177586", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116518", + "1483122553", + "1483122578", + "1483116518", + "1", + "8", + "0", + "-1", + "25", + "6035", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177590", + "177590", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116519", + "1483122578", + "1483122598", + "1483116519", + "1", + "8", + "0", + "-1", + "20", + "6059", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177597", + "177597", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116521", + "1483122636", + "1483122651", + "1483116521", + "1", + "8", + "0", + "-1", + "15", + "6115", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177607", + "177607", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116523", + "1483122688", + "1483122710", + "1483116523", + "1", + "8", + "0", + "-1", + "22", + "6165", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177611", + "177611", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116523", + "1483122740", + "1483122762", + "1483116523", + "1", + "8", + "0", + "-1", + "22", + "6217", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177623", + "177623", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116526", + "1483122839", + "1483122857", + "1483116526", + "1", + "8", + "0", + "-1", + "18", + "6313", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177627", + "177627", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116526", + "1483122857", + "1483122876", + "1483116526", + "1", + "8", + "0", + "-1", + "19", + "6331", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177630", + "177630", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116527", + "1483122876", + "1483122896", + "1483116527", + "1", + "8", + "0", + "-1", + "20", + "6349", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177634", + "177634", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116528", + "1483122897", + "1483122924", + "1483116528", + "1", + "8", + "0", + "-1", + "27", + "6369", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177638", + "177638", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116529", + "1483122924", + "1483122943", + "1483116529", + "1", + "8", + "0", + "-1", + "19", + "6395", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177642", + "177642", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116529", + "1483122943", + "1483122961", + "1483116529", + "1", + "8", + "0", + "-1", + "18", + "6414", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177645", + "177645", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116530", + "1483122961", + "1483122987", + "1483116530", + "1", + "8", + "0", + "-1", + "26", + "6431", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177654", + "177654", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116532", + "1483123035", + "1483123054", + "1483116532", + "1", + "8", + "0", + "-1", + "19", + "6503", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177658", + "177658", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116533", + "1483123054", + "1483123071", + "1483116533", + "1", + "8", + "0", + "-1", + "17", + "6521", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177662", + "177662", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116533", + "1483123071", + "1483123091", + "1483116533", + "1", + "8", + "0", + "-1", + "20", + "6538", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177665", + "177665", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116534", + "1483123092", + "1483123113", + "1483116534", + "1", + "8", + "0", + "-1", + "21", + "6558", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177669", + "177669", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116535", + "1483123114", + "1483123131", + "1483116535", + "1", + "8", + "0", + "-1", + "17", + "6579", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177673", + "177673", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116536", + "1483123131", + "1483123149", + "1483116536", + "1", + "8", + "0", + "-1", + "18", + "6595", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177677", + "177677", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116536", + "1483123149", + "1483123173", + "1483116536", + "1", + "8", + "0", + "-1", + "24", + "6613", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177717", + "177717", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116545", + "1483123619", + "1483123643", + "1483116545", + "1", + "8", + "0", + "-1", + "24", + "7074", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177721", + "177721", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116546", + "1483123644", + "1483123670", + "1483116546", + "1", + "8", + "0", + "-1", + "26", + "7098", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177725", + "177725", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116546", + "1483123670", + "1483123697", + "1483116546", + "1", + "8", + "0", + "-1", + "27", + "7124", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177729", + "177729", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116547", + "1483123697", + "1483123724", + "1483116547", + "1", + "8", + "0", + "-1", + "27", + "7150", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177732", + "177732", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116548", + "1483123725", + "1483123747", + "1483116548", + "1", + "8", + "0", + "-1", + "22", + "7177", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177752", + "177752", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116552", + "1483123887", + "1483123906", + "1483116552", + "1", + "8", + "0", + "-1", + "19", + "7335", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177778", + "177778", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116557", + "1483124137", + "1483124158", + "1483116557", + "1", + "8", + "0", + "-1", + "21", + "7580", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177783", + "177783", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116558", + "1483124159", + "1483124175", + "1483116558", + "1", + "8", + "0", + "-1", + "16", + "7601", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177786", + "177786", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116558", + "1483124175", + "1483124196", + "1483116558", + "1", + "8", + "0", + "-1", + "21", + "7617", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177790", + "177790", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116559", + "1483124196", + "1483124220", + "1483116559", + "1", + "8", + "0", + "-1", + "24", + "7637", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177798", + "177798", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116561", + "1483124254", + "1483124281", + "1483116561", + "1", + "8", + "0", + "-1", + "27", + "7693", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177801", + "177801", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116561", + "1483124281", + "1483124307", + "1483116561", + "1", + "8", + "0", + "-1", + "26", + "7720", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177805", + "177805", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116562", + "1483124308", + "1483124335", + "1483116562", + "1", + "8", + "0", + "-1", + "27", + "7746", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177813", + "177813", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116564", + "1483124368", + "1483124388", + "1483116564", + "1", + "8", + "0", + "-1", + "20", + "7804", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177820", + "177820", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116565", + "1483124424", + "1483124444", + "1483116565", + "1", + "8", + "0", + "-1", + "20", + "7859", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177824", + "177824", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116566", + "1483124444", + "1483124460", + "1483116566", + "1", + "8", + "0", + "-1", + "16", + "7878", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177828", + "177828", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116567", + "1483124460", + "1483124484", + "1483116567", + "1", + "8", + "0", + "-1", + "24", + "7893", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177835", + "177835", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116568", + "1483124530", + "1483124554", + "1483116568", + "1", + "8", + "0", + "-1", + "24", + "7962", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177839", + "177839", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116569", + "1483124554", + "1483124578", + "1483116569", + "1", + "8", + "0", + "-1", + "24", + "7985", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177844", + "177844", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116570", + "1483124579", + "1483124600", + "1483116570", + "1", + "8", + "0", + "-1", + "21", + "8009", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177855", + "177855", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116572", + "1483124672", + "1483124688", + "1483116572", + "1", + "8", + "0", + "-1", + "16", + "8100", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177859", + "177859", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116573", + "1483124688", + "1483124706", + "1483116573", + "1", + "8", + "0", + "-1", + "18", + "8115", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177866", + "177866", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116574", + "1483124746", + "1483124773", + "1483116574", + "1", + "8", + "0", + "-1", + "27", + "8172", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177870", + "177870", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116575", + "1483124773", + "1483124793", + "1483116575", + "1", + "8", + "0", + "-1", + "20", + "8198", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177874", + "177874", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116576", + "1483124793", + "1483124816", + "1483116576", + "1", + "8", + "0", + "-1", + "23", + "8217", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177885", + "177885", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116578", + "1483124888", + "1483124910", + "1483116578", + "1", + "8", + "0", + "-1", + "22", + "8310", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177887", + "177887", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116578", + "1483124910", + "1483124930", + "1483116578", + "1", + "8", + "0", + "-1", + "20", + "8332", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177891", + "177891", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116579", + "1483124931", + "1483124949", + "1483116579", + "1", + "8", + "0", + "-1", + "18", + "8352", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177895", + "177895", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116580", + "1483124950", + "1483124979", + "1483116580", + "1", + "8", + "0", + "-1", + "29", + "8370", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177898", + "177898", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116580", + "1483124979", + "1483125004", + "1483116580", + "1", + "8", + "0", + "-1", + "25", + "8399", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177902", + "177902", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116581", + "1483125005", + "1483125024", + "1483116581", + "1", + "8", + "0", + "-1", + "19", + "8424", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177906", + "177906", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116582", + "1483125024", + "1483125052", + "1483116582", + "1", + "8", + "0", + "-1", + "28", + "8442", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177910", + "177910", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116583", + "1483125052", + "1483125075", + "1483116583", + "1", + "8", + "0", + "-1", + "23", + "8469", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177917", + "177917", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116584", + "1483125108", + "1483125129", + "1483116584", + "1", + "8", + "0", + "-1", + "21", + "8524", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177921", + "177921", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116585", + "1483125129", + "1483125149", + "1483116585", + "1", + "8", + "0", + "-1", + "20", + "8544", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177932", + "177932", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116587", + "1483125212", + "1483125239", + "1483116587", + "1", + "8", + "0", + "-1", + "27", + "8625", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177940", + "177940", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116589", + "1483125270", + "1483125289", + "1483116589", + "1", + "8", + "0", + "-1", + "19", + "8681", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177944", + "177944", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116589", + "1483125290", + "1483125309", + "1483116589", + "1", + "8", + "0", + "-1", + "19", + "8701", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177947", + "177947", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116590", + "1483125309", + "1483125330", + "1483116590", + "1", + "8", + "0", + "-1", + "21", + "8719", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177951", + "177951", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116591", + "1483125330", + "1483125344", + "1483116591", + "1", + "8", + "0", + "-1", + "14", + "8739", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177955", + "177955", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116592", + "1483125344", + "1483125371", + "1483116592", + "1", + "8", + "0", + "-1", + "27", + "8752", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177960", + "177960", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116593", + "1483125372", + "1483125395", + "1483116593", + "1", + "8", + "0", + "-1", + "23", + "8779", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177964", + "177964", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116593", + "1483125395", + "1483125412", + "1483116593", + "1", + "8", + "0", + "-1", + "17", + "8802", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177966", + "177966", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116594", + "1483125412", + "1483125428", + "1483116594", + "1", + "8", + "0", + "-1", + "16", + "8818", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177970", + "177970", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116595", + "1483125428", + "1483125450", + "1483116595", + "1", + "8", + "0", + "-1", + "22", + "8833", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177974", + "177974", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116595", + "1483125450", + "1483125467", + "1483116595", + "1", + "8", + "0", + "-1", + "17", + "8855", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177978", + "177978", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116596", + "1483125467", + "1483125493", + "1483116596", + "1", + "8", + "0", + "-1", + "26", + "8871", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177982", + "177982", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116597", + "1483125494", + "1483125511", + "1483116597", + "1", + "8", + "0", + "-1", + "17", + "8897", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177985", + "177985", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116598", + "1483125512", + "1483125525", + "1483116598", + "1", + "8", + "0", + "-1", + "13", + "8914", + "104", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177989", + "177989", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116598", + "1483125525", + "1483125549", + "1483116598", + "1", + "8", + "0", + "-1", + "24", + "8927", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177995", + "177995", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116600", + "1483125549", + "1483125572", + "1483116600", + "1", + "8", + "0", + "-1", + "23", + "8949", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "177999", + "177999", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116601", + "1483125572", + "1483125591", + "1483116601", + "1", + "8", + "0", + "-1", + "19", + "8971", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178002", + "178002", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116601", + "1483125592", + "1483125609", + "1483116601", + "1", + "8", + "0", + "-1", + "17", + "8991", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178015", + "178015", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116604", + "1483125680", + "1483125708", + "1483116604", + "1", + "8", + "0", + "-1", + "28", + "9076", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178027", + "178027", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116606", + "1483125786", + "1483125804", + "1483116606", + "1", + "8", + "0", + "-1", + "18", + "9180", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178031", + "178031", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116607", + "1483125804", + "1483125822", + "1483116607", + "1", + "8", + "0", + "-1", + "18", + "9197", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178038", + "178038", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116609", + "1483125860", + "1483125887", + "1483116609", + "1", + "8", + "0", + "-1", + "27", + "9251", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178042", + "178042", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116609", + "1483125887", + "1483125906", + "1483116609", + "1", + "8", + "0", + "-1", + "19", + "9278", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178046", + "178046", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116610", + "1483125906", + "1483125922", + "1483116610", + "1", + "8", + "0", + "-1", + "16", + "9296", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178053", + "178053", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116611", + "1483125955", + "1483125984", + "1483116611", + "1", + "8", + "0", + "-1", + "29", + "9344", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178057", + "178057", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116612", + "1483125985", + "1483126004", + "1483116612", + "1", + "8", + "0", + "-1", + "19", + "9373", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178059", + "178059", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116613", + "1483126005", + "1483126025", + "1483116613", + "1", + "8", + "0", + "-1", + "20", + "9392", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178067", + "178067", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116614", + "1483126059", + "1483126087", + "1483116614", + "1", + "8", + "0", + "-1", + "28", + "9445", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178070", + "178070", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116615", + "1483126087", + "1483126109", + "1483116615", + "1", + "8", + "0", + "-1", + "22", + "9472", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178074", + "178074", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116615", + "1483126109", + "1483126127", + "1483116615", + "1", + "8", + "0", + "-1", + "18", + "9494", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178078", + "178078", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116616", + "1483126128", + "1483126151", + "1483116616", + "1", + "8", + "0", + "-1", + "23", + "9512", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178085", + "178085", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116618", + "1483126197", + "1483126224", + "1483116618", + "1", + "8", + "0", + "-1", + "27", + "9579", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178089", + "178089", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116618", + "1483126224", + "1483126248", + "1483116618", + "1", + "8", + "0", + "-1", + "24", + "9606", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178093", + "178093", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116619", + "1483126249", + "1483126267", + "1483116619", + "1", + "8", + "0", + "-1", + "18", + "9630", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178097", + "178097", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116620", + "1483126268", + "1483126287", + "1483116620", + "1", + "8", + "0", + "-1", + "19", + "9648", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178105", + "178105", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116622", + "1483126323", + "1483126340", + "1483116622", + "1", + "8", + "0", + "-1", + "17", + "9701", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178109", + "178109", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116622", + "1483126341", + "1483126360", + "1483116622", + "1", + "8", + "0", + "-1", + "19", + "9719", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178120", + "178120", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116625", + "1483126450", + "1483126475", + "1483116625", + "1", + "8", + "0", + "-1", + "25", + "9825", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178137", + "178137", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116628", + "1483126586", + "1483126607", + "1483116628", + "1", + "8", + "0", + "-1", + "21", + "9958", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178152", + "178152", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116631", + "1483126828", + "1483126849", + "1483116631", + "1", + "8", + "0", + "-1", + "21", + "10197", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178156", + "178156", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116632", + "1483126849", + "1483126876", + "1483116632", + "1", + "8", + "0", + "-1", + "27", + "10217", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178160", + "178160", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116633", + "1483126877", + "1483126895", + "1483116633", + "1", + "8", + "0", + "-1", + "18", + "10244", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178164", + "178164", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116633", + "1483126895", + "1483126912", + "1483116633", + "1", + "8", + "0", + "-1", + "17", + "10262", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178168", + "178168", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116634", + "1483126912", + "1483126928", + "1483116634", + "1", + "8", + "0", + "-1", + "16", + "10278", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178171", + "178171", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116635", + "1483126928", + "1483126952", + "1483116635", + "1", + "8", + "0", + "-1", + "24", + "10293", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178175", + "178175", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116636", + "1483126952", + "1483126980", + "1483116636", + "1", + "8", + "0", + "-1", + "28", + "10316", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178181", + "178181", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116637", + "1483127012", + "1483127036", + "1483116637", + "1", + "8", + "0", + "-1", + "24", + "10375", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178185", + "178185", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116638", + "1483127036", + "1483127052", + "1483116638", + "1", + "8", + "0", + "-1", + "16", + "10398", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178188", + "178188", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116638", + "1483127052", + "1483127074", + "1483116638", + "1", + "8", + "0", + "-1", + "22", + "10414", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178192", + "178192", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116639", + "1483127075", + "1483127100", + "1483116639", + "1", + "8", + "0", + "-1", + "25", + "10436", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178196", + "178196", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116640", + "1483127100", + "1483127124", + "1483116640", + "1", + "8", + "0", + "-1", + "24", + "10460", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178200", + "178200", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116641", + "1483127124", + "1483127138", + "1483116641", + "1", + "8", + "0", + "-1", + "14", + "10483", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178203", + "178203", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116641", + "1483127138", + "1483127154", + "1483116641", + "1", + "8", + "0", + "-1", + "16", + "10497", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178215", + "178215", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116644", + "1483127228", + "1483127245", + "1483116644", + "1", + "8", + "0", + "-1", + "17", + "10584", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178218", + "178218", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116644", + "1483127245", + "1483127262", + "1483116644", + "1", + "8", + "0", + "-1", + "17", + "10601", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178222", + "178222", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116645", + "1483127262", + "1483127279", + "1483116645", + "1", + "8", + "0", + "-1", + "17", + "10617", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178226", + "178226", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116646", + "1483127279", + "1483127304", + "1483116646", + "1", + "8", + "0", + "-1", + "25", + "10633", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178230", + "178230", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116647", + "1483127304", + "1483127321", + "1483116647", + "1", + "8", + "0", + "-1", + "17", + "10657", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178233", + "178233", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116647", + "1483127322", + "1483127334", + "1483116647", + "1", + "8", + "0", + "-1", + "12", + "10675", + "96", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178238", + "178238", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116648", + "1483127335", + "1483127357", + "1483116648", + "1", + "8", + "0", + "-1", + "22", + "10687", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178242", + "178242", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116649", + "1483127357", + "1483127383", + "1483116649", + "1", + "8", + "0", + "-1", + "26", + "10708", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178247", + "178247", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116650", + "1483127384", + "1483127401", + "1483116650", + "1", + "8", + "0", + "-1", + "17", + "10734", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178251", + "178251", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116651", + "1483127401", + "1483127425", + "1483116651", + "1", + "8", + "0", + "-1", + "24", + "10750", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178254", + "178254", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116652", + "1483127425", + "1483127446", + "1483116652", + "1", + "8", + "0", + "-1", + "21", + "10773", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178259", + "178259", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116653", + "1483127446", + "1483127464", + "1483116653", + "1", + "8", + "0", + "-1", + "18", + "10793", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178263", + "178263", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116653", + "1483127464", + "1483127478", + "1483116653", + "1", + "8", + "0", + "-1", + "14", + "10811", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178280", + "178280", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116657", + "1483127630", + "1483127658", + "1483116657", + "1", + "8", + "0", + "-1", + "28", + "10973", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178282", + "178282", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116657", + "1483127658", + "1483127675", + "1483116657", + "1", + "8", + "0", + "-1", + "17", + "11001", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178288", + "178288", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116658", + "1483127708", + "1483127731", + "1483116658", + "1", + "8", + "0", + "-1", + "23", + "11050", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178292", + "178292", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116659", + "1483127732", + "1483127748", + "1483116659", + "1", + "8", + "0", + "-1", + "16", + "11073", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178296", + "178296", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116660", + "1483127748", + "1483127765", + "1483116660", + "1", + "8", + "0", + "-1", + "17", + "11088", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178305", + "178305", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116662", + "1483127817", + "1483127841", + "1483116662", + "1", + "8", + "0", + "-1", + "24", + "11155", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178316", + "178316", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116664", + "1483127918", + "1483127939", + "1483116664", + "1", + "8", + "0", + "-1", + "21", + "11254", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178321", + "178321", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116665", + "1483127940", + "1483127960", + "1483116665", + "1", + "8", + "0", + "-1", + "20", + "11275", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178324", + "178324", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116666", + "1483127960", + "1483127977", + "1483116666", + "1", + "8", + "0", + "-1", + "17", + "11294", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178339", + "178339", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116669", + "1483128127", + "1483128154", + "1483116669", + "1", + "8", + "0", + "-1", + "27", + "11458", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178348", + "178348", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116671", + "1483128195", + "1483128224", + "1483116671", + "1", + "8", + "0", + "-1", + "29", + "11524", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178352", + "178352", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116671", + "1483128225", + "1483128248", + "1483116671", + "1", + "8", + "0", + "-1", + "23", + "11554", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178355", + "178355", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116672", + "1483128248", + "1483128276", + "1483116672", + "1", + "8", + "0", + "-1", + "28", + "11576", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178371", + "178371", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116675", + "1483128443", + "1483128470", + "1483116675", + "1", + "8", + "0", + "-1", + "27", + "11768", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178374", + "178374", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116676", + "1483128470", + "1483128491", + "1483116676", + "1", + "8", + "0", + "-1", + "21", + "11794", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178447", + "178447", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116691", + "1483129542", + "1483129569", + "1483116691", + "1", + "8", + "0", + "-1", + "27", + "12851", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178451", + "178451", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116691", + "1483129569", + "1483129596", + "1483116691", + "1", + "8", + "0", + "-1", + "27", + "12878", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178473", + "178473", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116696", + "1483129811", + "1483129840", + "1483116696", + "1", + "8", + "0", + "-1", + "29", + "13115", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178481", + "178481", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116697", + "1483129886", + "1483129912", + "1483116697", + "1", + "8", + "0", + "-1", + "26", + "13189", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178494", + "178494", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116700", + "1483130046", + "1483130074", + "1483116700", + "1", + "8", + "0", + "-1", + "28", + "13346", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178502", + "178502", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116701", + "1483130204", + "1483130230", + "1483116701", + "1", + "8", + "0", + "-1", + "26", + "13503", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178508", + "178508", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116702", + "1483130310", + "1483130339", + "1483116702", + "1", + "8", + "0", + "-1", + "29", + "13608", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178512", + "178512", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116702", + "1483130373", + "1483130399", + "1483116702", + "1", + "8", + "0", + "-1", + "26", + "13671", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178514", + "178514", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116702", + "1483130399", + "1483130425", + "1483116702", + "1", + "8", + "0", + "-1", + "26", + "13697", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178519", + "178519", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116703", + "1483130459", + "1483130484", + "1483116703", + "1", + "8", + "0", + "-1", + "25", + "13756", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178527", + "178527", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116704", + "1483130590", + "1483130618", + "1483116704", + "1", + "8", + "0", + "-1", + "28", + "13886", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178540", + "178540", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116706", + "1483130886", + "1483130912", + "1483116706", + "1", + "8", + "0", + "-1", + "26", + "14180", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178546", + "178546", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116707", + "1483130979", + "1483130995", + "1483116707", + "1", + "8", + "0", + "-1", + "16", + "14272", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178548", + "178548", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116707", + "1483130995", + "1483131017", + "1483116707", + "1", + "8", + "0", + "-1", + "22", + "14288", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178550", + "178550", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116708", + "1483131017", + "1483131040", + "1483116708", + "1", + "8", + "0", + "-1", + "23", + "14309", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178558", + "178558", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116709", + "1483131150", + "1483131169", + "1483116709", + "1", + "8", + "0", + "-1", + "19", + "14441", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178560", + "178560", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116709", + "1483131169", + "1483131188", + "1483116709", + "1", + "8", + "0", + "-1", + "19", + "14460", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178562", + "178562", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116709", + "1483131189", + "1483131210", + "1483116709", + "1", + "8", + "0", + "-1", + "21", + "14480", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178564", + "178564", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116710", + "1483131210", + "1483131226", + "1483116710", + "1", + "8", + "0", + "-1", + "16", + "14500", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178566", + "178566", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116710", + "1483131226", + "1483131245", + "1483116710", + "1", + "8", + "0", + "-1", + "19", + "14516", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178570", + "178570", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116711", + "1483131278", + "1483131300", + "1483116711", + "1", + "8", + "0", + "-1", + "22", + "14567", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178583", + "178583", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116713", + "1483131503", + "1483131532", + "1483116713", + "1", + "8", + "0", + "-1", + "29", + "14790", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178589", + "178589", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116714", + "1483131601", + "1483131616", + "1483116714", + "1", + "8", + "0", + "-1", + "15", + "14887", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178591", + "178591", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116714", + "1483131616", + "1483131635", + "1483116714", + "1", + "8", + "0", + "-1", + "19", + "14902", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178603", + "178603", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116715", + "1483131821", + "1483131846", + "1483116715", + "1", + "8", + "0", + "-1", + "25", + "15106", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178607", + "178607", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116716", + "1483131880", + "1483131897", + "1483116716", + "1", + "8", + "0", + "-1", + "17", + "15164", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178609", + "178609", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116716", + "1483131898", + "1483131918", + "1483116716", + "1", + "8", + "0", + "-1", + "20", + "15182", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178611", + "178611", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116717", + "1483131919", + "1483131937", + "1483116717", + "1", + "8", + "0", + "-1", + "18", + "15202", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178613", + "178613", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116717", + "1483131937", + "1483131963", + "1483116717", + "1", + "8", + "0", + "-1", + "26", + "15220", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178627", + "178627", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116719", + "1483132265", + "1483132289", + "1483116719", + "1", + "8", + "0", + "-1", + "24", + "15546", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178633", + "178633", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116720", + "1483132361", + "1483132387", + "1483116720", + "1", + "8", + "0", + "-1", + "26", + "15641", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178635", + "178635", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116720", + "1483132388", + "1483132411", + "1483116720", + "1", + "8", + "0", + "-1", + "23", + "15668", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178637", + "178637", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116720", + "1483132411", + "1483132436", + "1483116720", + "1", + "8", + "0", + "-1", + "25", + "15691", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178639", + "178639", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116720", + "1483132436", + "1483132464", + "1483116720", + "1", + "8", + "0", + "-1", + "28", + "15716", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178645", + "178645", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116721", + "1483132531", + "1483132551", + "1483116721", + "1", + "8", + "0", + "-1", + "20", + "15810", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178647", + "178647", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116722", + "1483132552", + "1483132578", + "1483116722", + "1", + "8", + "0", + "-1", + "26", + "15830", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178650", + "178650", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116722", + "1483132579", + "1483132596", + "1483116722", + "1", + "8", + "0", + "-1", + "17", + "15857", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178652", + "178652", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116722", + "1483132596", + "1483132614", + "1483116722", + "1", + "8", + "0", + "-1", + "18", + "15874", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178654", + "178654", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116723", + "1483132614", + "1483132635", + "1483116723", + "1", + "8", + "0", + "-1", + "21", + "15891", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178658", + "178658", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116723", + "1483132669", + "1483132693", + "1483116723", + "1", + "8", + "0", + "-1", + "24", + "15946", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178666", + "178666", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116724", + "1483132871", + "1483132896", + "1483116724", + "1", + "8", + "0", + "-1", + "25", + "16147", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178671", + "178671", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116725", + "1483132944", + "1483132966", + "1483116725", + "1", + "8", + "0", + "-1", + "22", + "16219", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178673", + "178673", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116725", + "1483132966", + "1483132993", + "1483116725", + "1", + "8", + "0", + "-1", + "27", + "16241", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178678", + "178678", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116726", + "1483133029", + "1483133049", + "1483116726", + "1", + "8", + "0", + "-1", + "20", + "16303", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178680", + "178680", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116726", + "1483133049", + "1483133077", + "1483116726", + "1", + "8", + "0", + "-1", + "28", + "16323", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178682", + "178682", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116727", + "1483133077", + "1483133099", + "1483116727", + "1", + "8", + "0", + "-1", + "22", + "16350", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178686", + "178686", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116727", + "1483133137", + "1483133159", + "1483116727", + "1", + "8", + "0", + "-1", + "22", + "16410", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178688", + "178688", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116728", + "1483133159", + "1483133178", + "1483116728", + "1", + "8", + "0", + "-1", + "19", + "16431", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178690", + "178690", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116728", + "1483133179", + "1483133199", + "1483116728", + "1", + "8", + "0", + "-1", + "20", + "16451", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178692", + "178692", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116728", + "1483133199", + "1483133222", + "1483116728", + "1", + "8", + "0", + "-1", + "23", + "16471", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178694", + "178694", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116728", + "1483133222", + "1483133243", + "1483116728", + "1", + "8", + "0", + "-1", + "21", + "16494", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178696", + "178696", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116729", + "1483133243", + "1483133260", + "1483116729", + "1", + "8", + "0", + "-1", + "17", + "16514", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178698", + "178698", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116729", + "1483133260", + "1483133280", + "1483116729", + "1", + "8", + "0", + "-1", + "20", + "16531", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178703", + "178703", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116730", + "1483133313", + "1483133339", + "1483116730", + "1", + "8", + "0", + "-1", + "26", + "16583", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178711", + "178711", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116731", + "1483133489", + "1483133515", + "1483116731", + "1", + "8", + "0", + "-1", + "26", + "16758", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178715", + "178715", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116731", + "1483133545", + "1483133567", + "1483116731", + "1", + "8", + "0", + "-1", + "22", + "16814", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178717", + "178717", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116732", + "1483133567", + "1483133590", + "1483116732", + "1", + "8", + "0", + "-1", + "23", + "16835", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178719", + "178719", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116732", + "1483133590", + "1483133608", + "1483116732", + "1", + "8", + "0", + "-1", + "18", + "16858", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178721", + "178721", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116732", + "1483133608", + "1483133631", + "1483116732", + "1", + "8", + "0", + "-1", + "23", + "16876", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178723", + "178723", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116732", + "1483133631", + "1483133659", + "1483116732", + "1", + "8", + "0", + "-1", + "28", + "16899", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178725", + "178725", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116733", + "1483133660", + "1483133686", + "1483116733", + "1", + "8", + "0", + "-1", + "26", + "16927", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178727", + "178727", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116733", + "1483133687", + "1483133708", + "1483116733", + "1", + "8", + "0", + "-1", + "21", + "16954", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178729", + "178729", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116733", + "1483133709", + "1483133727", + "1483116733", + "1", + "8", + "0", + "-1", + "18", + "16976", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178731", + "178731", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116734", + "1483133727", + "1483133753", + "1483116734", + "1", + "8", + "0", + "-1", + "26", + "16993", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178733", + "178733", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116734", + "1483133753", + "1483133775", + "1483116734", + "1", + "8", + "0", + "-1", + "22", + "17019", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178737", + "178737", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116734", + "1483133809", + "1483133825", + "1483116734", + "1", + "8", + "0", + "-1", + "16", + "17075", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178739", + "178739", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116735", + "1483133826", + "1483133842", + "1483116735", + "1", + "8", + "0", + "-1", + "16", + "17091", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178741", + "178741", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116735", + "1483133842", + "1483133859", + "1483116735", + "1", + "8", + "0", + "-1", + "17", + "17107", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178743", + "178743", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116735", + "1483133860", + "1483133880", + "1483116735", + "1", + "8", + "0", + "-1", + "20", + "17125", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178745", + "178745", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116735", + "1483133880", + "1483133908", + "1483116736", + "1", + "8", + "0", + "-1", + "28", + "17145", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178755", + "178755", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116737", + "1483134100", + "1483134125", + "1483116737", + "1", + "8", + "0", + "-1", + "25", + "17363", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178761", + "178761", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116738", + "1483134206", + "1483134229", + "1483116738", + "1", + "8", + "0", + "-1", + "23", + "17468", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178764", + "178764", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116738", + "1483134229", + "1483134246", + "1483116738", + "1", + "8", + "0", + "-1", + "17", + "17491", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178766", + "178766", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116739", + "1483134246", + "1483134264", + "1483116739", + "1", + "8", + "0", + "-1", + "18", + "17507", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178768", + "178768", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116739", + "1483134264", + "1483134282", + "1483116739", + "1", + "8", + "0", + "-1", + "18", + "17525", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178770", + "178770", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116739", + "1483134283", + "1483134303", + "1483116739", + "1", + "8", + "0", + "-1", + "20", + "17544", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178772", + "178772", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116739", + "1483134304", + "1483134332", + "1483116739", + "1", + "8", + "0", + "-1", + "28", + "17565", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178774", + "178774", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116740", + "1483134332", + "1483134351", + "1483116740", + "1", + "8", + "0", + "-1", + "19", + "17592", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178776", + "178776", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116740", + "1483134352", + "1483134376", + "1483116740", + "1", + "8", + "0", + "-1", + "24", + "17612", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178780", + "178780", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116741", + "1483134409", + "1483134436", + "1483116741", + "1", + "8", + "0", + "-1", + "27", + "17668", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178782", + "178782", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116741", + "1483134437", + "1483134453", + "1483116741", + "1", + "8", + "0", + "-1", + "16", + "17696", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178784", + "178784", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116741", + "1483134453", + "1483134469", + "1483116741", + "1", + "8", + "0", + "-1", + "16", + "17712", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178786", + "178786", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116741", + "1483134470", + "1483134484", + "1483116741", + "1", + "8", + "0", + "-1", + "14", + "17729", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178788", + "178788", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116742", + "1483134484", + "1483134505", + "1483116742", + "1", + "8", + "0", + "-1", + "21", + "17742", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178790", + "178790", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116742", + "1483134506", + "1483134527", + "1483116742", + "1", + "8", + "0", + "-1", + "21", + "17764", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178792", + "178792", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116742", + "1483134527", + "1483134545", + "1483116742", + "1", + "8", + "0", + "-1", + "18", + "17785", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178796", + "178796", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116743", + "1483134577", + "1483134601", + "1483116743", + "1", + "8", + "0", + "-1", + "24", + "17834", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178800", + "178800", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116743", + "1483134678", + "1483134702", + "1483116743", + "1", + "8", + "0", + "-1", + "24", + "17935", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178802", + "178802", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116743", + "1483134703", + "1483134731", + "1483116743", + "1", + "8", + "0", + "-1", + "28", + "17960", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6111113", + "6111113", + "Robertson", + "UTC", + "", + "Warbler, Golden-winged", + "Screwdriver", + "curry", + "1483126547", + "1483140171", + "1483140196", + "1483126547", + "2", + "24", + "0", + "-1", + "25", + "13624", + "600", + "0", + "0:0", + "COMPLETED", + "24", + "60000Mn", + "64800", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Economics" + ], + [ + "178806", + "178806", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116744", + "1483134769", + "1483134796", + "1483116744", + "1", + "8", + "0", + "-1", + "27", + "18025", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178808", + "178808", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116744", + "1483134797", + "1483134821", + "1483116744", + "1", + "8", + "0", + "-1", + "24", + "18053", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178810", + "178810", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116745", + "1483134821", + "1483134847", + "1483116745", + "1", + "8", + "0", + "-1", + "26", + "18076", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178812", + "178812", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116745", + "1483134848", + "1483134873", + "1483116745", + "1", + "8", + "0", + "-1", + "25", + "18103", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178816", + "178816", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116746", + "1483134874", + "1483134895", + "1483116746", + "1", + "8", + "0", + "-1", + "21", + "18128", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178818", + "178818", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116746", + "1483134896", + "1483134920", + "1483116746", + "1", + "8", + "0", + "-1", + "24", + "18150", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178822", + "178822", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116746", + "1483134956", + "1483134977", + "1483116746", + "1", + "8", + "0", + "-1", + "21", + "18210", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178824", + "178824", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116747", + "1483134978", + "1483134998", + "1483116747", + "1", + "8", + "0", + "-1", + "20", + "18231", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178826", + "178826", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116747", + "1483134999", + "1483135018", + "1483116747", + "1", + "8", + "0", + "-1", + "19", + "18252", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178828", + "178828", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116747", + "1483135018", + "1483135037", + "1483116747", + "1", + "8", + "0", + "-1", + "19", + "18271", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178830", + "178830", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116748", + "1483135038", + "1483135054", + "1483116748", + "1", + "8", + "0", + "-1", + "16", + "18290", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178834", + "178834", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116748", + "1483135087", + "1483135105", + "1483116748", + "1", + "8", + "0", + "-1", + "18", + "18339", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178836", + "178836", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116748", + "1483135105", + "1483135128", + "1483116748", + "1", + "8", + "0", + "-1", + "23", + "18357", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178850", + "178850", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116750", + "1483135425", + "1483135450", + "1483116750", + "1", + "8", + "0", + "-1", + "25", + "18675", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178852", + "178852", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116751", + "1483135451", + "1483135475", + "1483116751", + "1", + "8", + "0", + "-1", + "24", + "18700", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178854", + "178854", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116751", + "1483135476", + "1483135505", + "1483116751", + "1", + "8", + "0", + "-1", + "29", + "18725", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178858", + "178858", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116751", + "1483135544", + "1483135569", + "1483116751", + "1", + "8", + "0", + "-1", + "25", + "18793", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178860", + "178860", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116752", + "1483135570", + "1483135590", + "1483116752", + "1", + "8", + "0", + "-1", + "20", + "18818", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178862", + "178862", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116752", + "1483135591", + "1483135615", + "1483116752", + "1", + "8", + "0", + "-1", + "24", + "18839", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178866", + "178866", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116752", + "1483135651", + "1483135679", + "1483116752", + "1", + "8", + "0", + "-1", + "28", + "18899", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178868", + "178868", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116753", + "1483135679", + "1483135706", + "1483116753", + "1", + "8", + "0", + "-1", + "27", + "18926", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178870", + "178870", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116753", + "1483135706", + "1483135734", + "1483116753", + "1", + "8", + "0", + "-1", + "28", + "18953", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178872", + "178872", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116753", + "1483135734", + "1483135754", + "1483116753", + "1", + "8", + "0", + "-1", + "20", + "18981", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178874", + "178874", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116753", + "1483135755", + "1483135772", + "1483116753", + "1", + "8", + "0", + "-1", + "17", + "19002", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178876", + "178876", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116754", + "1483135772", + "1483135790", + "1483116754", + "1", + "8", + "0", + "-1", + "18", + "19018", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178880", + "178880", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116754", + "1483135824", + "1483135847", + "1483116754", + "1", + "8", + "0", + "-1", + "23", + "19070", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178882", + "178882", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116755", + "1483135847", + "1483135870", + "1483116755", + "1", + "8", + "0", + "-1", + "23", + "19092", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178896", + "178896", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116756", + "1483136198", + "1483136223", + "1483116756", + "1", + "8", + "0", + "-1", + "25", + "19442", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178898", + "178898", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116757", + "1483136224", + "1483136250", + "1483116757", + "1", + "8", + "0", + "-1", + "26", + "19467", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178900", + "178900", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116757", + "1483136250", + "1483136276", + "1483116757", + "1", + "8", + "0", + "-1", + "26", + "19493", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178902", + "178902", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116757", + "1483136277", + "1483136298", + "1483116757", + "1", + "8", + "0", + "-1", + "21", + "19520", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178904", + "178904", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116758", + "1483136298", + "1483136320", + "1483116758", + "1", + "8", + "0", + "-1", + "22", + "19540", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178906", + "178906", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116758", + "1483136321", + "1483136345", + "1483116758", + "1", + "8", + "0", + "-1", + "24", + "19563", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178908", + "178908", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116758", + "1483136346", + "1483136374", + "1483116758", + "1", + "8", + "0", + "-1", + "28", + "19588", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178910", + "178910", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116758", + "1483136375", + "1483136401", + "1483116758", + "1", + "8", + "0", + "-1", + "26", + "19617", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178912", + "178912", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116759", + "1483136402", + "1483136431", + "1483116759", + "1", + "8", + "0", + "-1", + "29", + "19643", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178914", + "178914", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116759", + "1483136431", + "1483136454", + "1483116759", + "1", + "8", + "0", + "-1", + "23", + "19672", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178918", + "178918", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116759", + "1483136487", + "1483136513", + "1483116759", + "1", + "8", + "0", + "-1", + "26", + "19728", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178920", + "178920", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116760", + "1483136513", + "1483136530", + "1483116760", + "1", + "8", + "0", + "-1", + "17", + "19753", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178922", + "178922", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116760", + "1483136531", + "1483136550", + "1483116760", + "1", + "8", + "0", + "-1", + "19", + "19771", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178924", + "178924", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116760", + "1483136550", + "1483136570", + "1483116760", + "1", + "8", + "0", + "-1", + "20", + "19790", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178928", + "178928", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116761", + "1483136605", + "1483136631", + "1483116761", + "1", + "8", + "0", + "-1", + "26", + "19844", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178930", + "178930", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116761", + "1483136631", + "1483136657", + "1483116761", + "1", + "8", + "0", + "-1", + "26", + "19870", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178949", + "178949", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116764", + "1483136999", + "1483137023", + "1483116764", + "1", + "8", + "0", + "-1", + "24", + "20235", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178951", + "178951", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116764", + "1483137023", + "1483137044", + "1483116764", + "1", + "8", + "0", + "-1", + "21", + "20259", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178953", + "178953", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116764", + "1483137044", + "1483137069", + "1483116764", + "1", + "8", + "0", + "-1", + "25", + "20280", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178955", + "178955", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116765", + "1483137070", + "1483137091", + "1483116765", + "1", + "8", + "0", + "-1", + "21", + "20305", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178957", + "178957", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116765", + "1483137092", + "1483137112", + "1483116765", + "1", + "8", + "0", + "-1", + "20", + "20327", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178959", + "178959", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116765", + "1483137113", + "1483137136", + "1483116765", + "1", + "8", + "0", + "-1", + "23", + "20348", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178963", + "178963", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116766", + "1483137176", + "1483137199", + "1483116766", + "1", + "8", + "0", + "-1", + "23", + "20410", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178965", + "178965", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116766", + "1483137199", + "1483137228", + "1483116766", + "1", + "8", + "0", + "-1", + "29", + "20433", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178967", + "178967", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116766", + "1483137228", + "1483137250", + "1483116766", + "1", + "8", + "0", + "-1", + "22", + "20462", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178969", + "178969", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116766", + "1483137250", + "1483137275", + "1483116766", + "1", + "8", + "0", + "-1", + "25", + "20484", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178971", + "178971", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116767", + "1483137275", + "1483137295", + "1483116767", + "1", + "8", + "0", + "-1", + "20", + "20508", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178982", + "178982", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116768", + "1483137509", + "1483137537", + "1483116768", + "1", + "8", + "0", + "-1", + "28", + "20741", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "178988", + "178988", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116769", + "1483137616", + "1483137642", + "1483116769", + "1", + "8", + "0", + "-1", + "26", + "20847", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179004", + "179004", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116771", + "1483137927", + "1483137947", + "1483116771", + "1", + "8", + "0", + "-1", + "20", + "21156", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179012", + "179012", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116772", + "1483138069", + "1483138087", + "1483116772", + "1", + "8", + "0", + "-1", + "18", + "21297", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179030", + "179030", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116775", + "1483138574", + "1483138595", + "1483116775", + "1", + "8", + "0", + "-1", + "21", + "21799", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179032", + "179032", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116775", + "1483138596", + "1483138613", + "1483116775", + "1", + "8", + "0", + "-1", + "17", + "21821", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179036", + "179036", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116776", + "1483138648", + "1483138666", + "1483116776", + "1", + "8", + "0", + "-1", + "18", + "21872", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179038", + "179038", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116776", + "1483138666", + "1483138687", + "1483116776", + "1", + "8", + "0", + "-1", + "21", + "21890", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179040", + "179040", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116777", + "1483138688", + "1483138716", + "1483116777", + "1", + "8", + "0", + "-1", + "28", + "21911", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179042", + "179042", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116777", + "1483138717", + "1483138745", + "1483116777", + "1", + "8", + "0", + "-1", + "28", + "21940", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179044", + "179044", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116777", + "1483138745", + "1483138765", + "1483116777", + "1", + "8", + "0", + "-1", + "20", + "21968", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179046", + "179046", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116777", + "1483138766", + "1483138787", + "1483116777", + "1", + "8", + "0", + "-1", + "21", + "21989", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179048", + "179048", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116778", + "1483138788", + "1483138807", + "1483116778", + "1", + "8", + "0", + "-1", + "19", + "22010", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179052", + "179052", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116778", + "1483138839", + "1483138859", + "1483116778", + "1", + "8", + "0", + "-1", + "20", + "22061", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179054", + "179054", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116778", + "1483138860", + "1483138876", + "1483116778", + "1", + "8", + "0", + "-1", + "16", + "22082", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179056", + "179056", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116779", + "1483138877", + "1483138893", + "1483116779", + "1", + "8", + "0", + "-1", + "16", + "22098", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179058", + "179058", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116779", + "1483138893", + "1483138909", + "1483116779", + "1", + "8", + "0", + "-1", + "16", + "22114", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179064", + "179064", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116780", + "1483138956", + "1483138979", + "1483116780", + "1", + "8", + "0", + "-1", + "23", + "22176", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179070", + "179070", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116781", + "1483139111", + "1483139139", + "1483116781", + "1", + "8", + "0", + "-1", + "28", + "22330", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179076", + "179076", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116782", + "1483139208", + "1483139228", + "1483116782", + "1", + "8", + "0", + "-1", + "20", + "22426", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179078", + "179078", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116782", + "1483139229", + "1483139255", + "1483116782", + "1", + "8", + "0", + "-1", + "26", + "22447", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179080", + "179080", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116782", + "1483139255", + "1483139278", + "1483116782", + "1", + "8", + "0", + "-1", + "23", + "22473", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179082", + "179082", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116782", + "1483139278", + "1483139295", + "1483116782", + "1", + "8", + "0", + "-1", + "17", + "22496", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179084", + "179084", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116783", + "1483139295", + "1483139322", + "1483116783", + "1", + "8", + "0", + "-1", + "27", + "22512", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179086", + "179086", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116783", + "1483139322", + "1483139345", + "1483116783", + "1", + "8", + "0", + "-1", + "23", + "22539", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179088", + "179088", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116783", + "1483139345", + "1483139371", + "1483116783", + "1", + "8", + "0", + "-1", + "26", + "22562", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179090", + "179090", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116784", + "1483139371", + "1483139390", + "1483116784", + "1", + "8", + "0", + "-1", + "19", + "22587", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179092", + "179092", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116784", + "1483139391", + "1483139413", + "1483116784", + "1", + "8", + "0", + "-1", + "22", + "22607", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179094", + "179094", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116784", + "1483139414", + "1483139442", + "1483116784", + "1", + "8", + "0", + "-1", + "28", + "22630", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179096", + "179096", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116784", + "1483139442", + "1483139459", + "1483116784", + "1", + "8", + "0", + "-1", + "17", + "22658", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179098", + "179098", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116785", + "1483139460", + "1483139481", + "1483116785", + "1", + "8", + "0", + "-1", + "21", + "22675", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179100", + "179100", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116785", + "1483139481", + "1483139495", + "1483116785", + "1", + "8", + "0", + "-1", + "14", + "22696", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179102", + "179102", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116785", + "1483139496", + "1483139523", + "1483116785", + "1", + "8", + "0", + "-1", + "27", + "22711", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179104", + "179104", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116786", + "1483139523", + "1483139538", + "1483116786", + "1", + "8", + "0", + "-1", + "15", + "22737", + "120", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179109", + "179109", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116786", + "1483139578", + "1483139604", + "1483116786", + "1", + "8", + "0", + "-1", + "26", + "22792", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179117", + "179117", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116787", + "1483139773", + "1483139798", + "1483116787", + "1", + "8", + "0", + "-1", + "25", + "22986", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179119", + "179119", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116788", + "1483139798", + "1483139822", + "1483116788", + "1", + "8", + "0", + "-1", + "24", + "23010", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179121", + "179121", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116788", + "1483139823", + "1483139844", + "1483116788", + "1", + "8", + "0", + "-1", + "21", + "23035", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179123", + "179123", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116788", + "1483139844", + "1483139867", + "1483116788", + "1", + "8", + "0", + "-1", + "23", + "23056", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179125", + "179125", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116788", + "1483139868", + "1483139889", + "1483116788", + "1", + "8", + "0", + "-1", + "21", + "23080", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179127", + "179127", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116789", + "1483139889", + "1483139907", + "1483116789", + "1", + "8", + "0", + "-1", + "18", + "23100", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179130", + "179130", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116789", + "1483139907", + "1483139932", + "1483116789", + "1", + "8", + "0", + "-1", + "25", + "23118", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179132", + "179132", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116790", + "1483139932", + "1483139953", + "1483116790", + "1", + "8", + "0", + "-1", + "21", + "23142", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179134", + "179134", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116790", + "1483139953", + "1483139974", + "1483116790", + "1", + "8", + "0", + "-1", + "21", + "23163", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179136", + "179136", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116790", + "1483139975", + "1483140000", + "1483116790", + "1", + "8", + "0", + "-1", + "25", + "23185", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179138", + "179138", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116790", + "1483140000", + "1483140017", + "1483116790", + "1", + "8", + "0", + "-1", + "17", + "23210", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179140", + "179140", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116791", + "1483140018", + "1483140034", + "1483116791", + "1", + "8", + "0", + "-1", + "16", + "23227", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179142", + "179142", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116791", + "1483140035", + "1483140057", + "1483116791", + "1", + "8", + "0", + "-1", + "22", + "23244", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179144", + "179144", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116791", + "1483140058", + "1483140074", + "1483116791", + "1", + "8", + "0", + "-1", + "16", + "23267", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179147", + "179147", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116792", + "1483140074", + "1483140097", + "1483116792", + "1", + "8", + "0", + "-1", + "23", + "23282", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179149", + "179149", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116792", + "1483140097", + "1483140121", + "1483116792", + "1", + "8", + "0", + "-1", + "24", + "23305", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179151", + "179151", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116792", + "1483140122", + "1483140147", + "1483116792", + "1", + "8", + "0", + "-1", + "25", + "23330", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179158", + "179158", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116793", + "1483140265", + "1483140288", + "1483116793", + "1", + "8", + "0", + "-1", + "23", + "23472", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179160", + "179160", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116794", + "1483140289", + "1483140318", + "1483116794", + "1", + "8", + "0", + "-1", + "29", + "23495", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179162", + "179162", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116794", + "1483140318", + "1483140341", + "1483116794", + "1", + "8", + "0", + "-1", + "23", + "23524", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179164", + "179164", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116794", + "1483140341", + "1483140361", + "1483116794", + "1", + "8", + "0", + "-1", + "20", + "23547", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179166", + "179166", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116794", + "1483140361", + "1483140382", + "1483116794", + "1", + "8", + "0", + "-1", + "21", + "23567", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179168", + "179168", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116795", + "1483140382", + "1483140411", + "1483116795", + "1", + "8", + "0", + "-1", + "29", + "23587", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179170", + "179170", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116795", + "1483140411", + "1483140437", + "1483116795", + "1", + "8", + "0", + "-1", + "26", + "23616", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179172", + "179172", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116795", + "1483140437", + "1483140463", + "1483116795", + "1", + "8", + "0", + "-1", + "26", + "23642", + "208", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179174", + "179174", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116796", + "1483140463", + "1483140485", + "1483116796", + "1", + "8", + "0", + "-1", + "22", + "23667", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179176", + "179176", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116796", + "1483140486", + "1483140510", + "1483116796", + "1", + "8", + "0", + "-1", + "24", + "23690", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179178", + "179178", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116796", + "1483140511", + "1483140539", + "1483116796", + "1", + "8", + "0", + "-1", + "28", + "23715", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179180", + "179180", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116796", + "1483140539", + "1483140564", + "1483116796", + "1", + "8", + "0", + "-1", + "25", + "23743", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179184", + "179184", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116797", + "1483140594", + "1483140621", + "1483116797", + "1", + "8", + "0", + "-1", + "27", + "23797", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179186", + "179186", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116797", + "1483140621", + "1483140637", + "1483116797", + "1", + "8", + "0", + "-1", + "16", + "23824", + "128", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179188", + "179188", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116798", + "1483140637", + "1483140651", + "1483116798", + "1", + "8", + "0", + "-1", + "14", + "23839", + "112", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179190", + "179190", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116798", + "1483140652", + "1483140674", + "1483116798", + "1", + "8", + "0", + "-1", + "22", + "23854", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179192", + "179192", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116798", + "1483140674", + "1483140698", + "1483116798", + "1", + "8", + "0", + "-1", + "24", + "23876", + "192", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179194", + "179194", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116798", + "1483140698", + "1483140723", + "1483116798", + "1", + "8", + "0", + "-1", + "25", + "23900", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179204", + "179204", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116800", + "1483140910", + "1483140935", + "1483116800", + "1", + "8", + "0", + "-1", + "25", + "24110", + "200", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179208", + "179208", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116800", + "1483140978", + "1483140999", + "1483116800", + "1", + "8", + "0", + "-1", + "21", + "24178", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179213", + "179213", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116801", + "1483141031", + "1483141052", + "1483116801", + "1", + "8", + "0", + "-1", + "21", + "24230", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179215", + "179215", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116801", + "1483141052", + "1483141070", + "1483116801", + "1", + "8", + "0", + "-1", + "18", + "24251", + "144", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179217", + "179217", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116802", + "1483141071", + "1483141092", + "1483116802", + "1", + "8", + "0", + "-1", + "21", + "24269", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179219", + "179219", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116802", + "1483141092", + "1483141115", + "1483116802", + "1", + "8", + "0", + "-1", + "23", + "24290", + "184", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179221", + "179221", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116802", + "1483141116", + "1483141136", + "1483116802", + "1", + "8", + "0", + "-1", + "20", + "24314", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179225", + "179225", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116803", + "1483141172", + "1483141193", + "1483116803", + "1", + "8", + "0", + "-1", + "21", + "24369", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179227", + "179227", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116803", + "1483141193", + "1483141212", + "1483116803", + "1", + "8", + "0", + "-1", + "19", + "24390", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179229", + "179229", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116803", + "1483141213", + "1483141230", + "1483116803", + "1", + "8", + "0", + "-1", + "17", + "24410", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179231", + "179231", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116804", + "1483141231", + "1483141253", + "1483116804", + "1", + "8", + "0", + "-1", + "22", + "24427", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179233", + "179233", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116804", + "1483141253", + "1483141272", + "1483116804", + "1", + "8", + "0", + "-1", + "19", + "24449", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179235", + "179235", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116804", + "1483141273", + "1483141290", + "1483116804", + "1", + "8", + "0", + "-1", + "17", + "24469", + "136", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179241", + "179241", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116805", + "1483141334", + "1483141356", + "1483116805", + "1", + "8", + "0", + "-1", + "22", + "24529", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179245", + "179245", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116806", + "1483141434", + "1483141462", + "1483116806", + "1", + "8", + "0", + "-1", + "28", + "24628", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179247", + "179247", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116806", + "1483141463", + "1483141491", + "1483116806", + "1", + "8", + "0", + "-1", + "28", + "24657", + "224", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179251", + "179251", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116807", + "1483141528", + "1483141555", + "1483116807", + "1", + "8", + "0", + "-1", + "27", + "24721", + "216", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179257", + "179257", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116807", + "1483141629", + "1483141651", + "1483116807", + "1", + "8", + "0", + "-1", + "22", + "24822", + "176", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179259", + "179259", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116808", + "1483141651", + "1483141670", + "1483116808", + "1", + "8", + "0", + "-1", + "19", + "24843", + "152", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179261", + "179261", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116808", + "1483141670", + "1483141690", + "1483116808", + "1", + "8", + "0", + "-1", + "20", + "24862", + "160", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179277", + "179277", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116810", + "1483141973", + "1483141994", + "1483116810", + "1", + "8", + "0", + "-1", + "21", + "25163", + "168", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "179279", + "179279", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116811", + "1483141994", + "1483142023", + "1483116811", + "1", + "8", + "0", + "-1", + "29", + "25183", + "232", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "1003521", + "1003521", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483046136", + "1483081449", + "1483081454", + "1483046136", + "1", + "24", + "0", + "-1", + "5", + "35313", + "120", + "0", + "29:0", + "FAILED", + "24", + "62.50Gn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "6106586", + "6106586", + "Robertson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "curry", + "1483004941", + "1483116904", + "1483116933", + "1483004941", + "1", + "8", + "0", + "-1", + "29", + "111963", + "232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "108000", + "white", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6100150", + "6100150", + "Robertson", + "UTC", + "", + "Bunting, Yellow-browed", + "Screwdriver", + "curry", + "1482698330", + "1483078060", + "1483078062", + "1482698330", + "1", + "16", + "0", + "-1", + "2", + "379730", + "32", + "0", + "1:0", + "FAILED", + "16", + "2147486448Mn", + "259200", + "white", + "Geosciences", + "Polar Programs", + "Polar Aeronomy and Astrophysics" + ], + [ + "968115", + "968115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055846", + "1483055846", + "1483056007", + "1483055846", + "1", + "8", + "0", + "-1", + "161", + "0", + "1288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968143", + "968143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055966", + "1483055966", + "1483056024", + "1483055966", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968161", + "968161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056024", + "1483056024", + "1483056106", + "1483056024", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968163", + "968163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056024", + "1483056024", + "1483056071", + "1483056024", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968167", + "968167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056052", + "1483056052", + "1483056123", + "1483056052", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968179", + "968179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056078", + "1483056078", + "1483056120", + "1483056078", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968181", + "968181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056090", + "1483056090", + "1483056144", + "1483056090", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968183", + "968183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056099", + "1483056099", + "1483056132", + "1483056099", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968185", + "968185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056106", + "1483056106", + "1483056138", + "1483056106", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968187", + "968187", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056109", + "1483056109", + "1483056141", + "1483056109", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968189", + "968189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056121", + "1483056121", + "1483056161", + "1483056121", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968191", + "968191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056124", + "1483056124", + "1483056154", + "1483056124", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968201", + "968201", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056145", + "1483056145", + "1483056207", + "1483056145", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968203", + "968203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056155", + "1483056155", + "1483056226", + "1483056155", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968205", + "968205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056159", + "1483056159", + "1483056227", + "1483056159", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968207", + "968207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056162", + "1483056162", + "1483056304", + "1483056162", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968210", + "968210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056162", + "1483056162", + "1483056232", + "1483056162", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968232", + "968232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056255", + "1483056255", + "1483056286", + "1483056255", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968252", + "968252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056305", + "1483056305", + "1483056446", + "1483056305", + "1", + "8", + "0", + "-1", + "141", + "0", + "1128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968262", + "968262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056332", + "1483056332", + "1483056366", + "1483056332", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968272", + "968272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056380", + "1483056380", + "1483056434", + "1483056380", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968274", + "968274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056386", + "1483056386", + "1483056440", + "1483056386", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968276", + "968276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056391", + "1483056391", + "1483056430", + "1483056391", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968278", + "968278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056400", + "1483056400", + "1483056432", + "1483056400", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968292", + "968292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056447", + "1483056447", + "1483056504", + "1483056447", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968296", + "968296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056459", + "1483056459", + "1483056511", + "1483056459", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968298", + "968298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056459", + "1483056459", + "1483056555", + "1483056459", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968300", + "968300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056462", + "1483056462", + "1483056503", + "1483056462", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968302", + "968302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056468", + "1483056468", + "1483056541", + "1483056468", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968308", + "968308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056504", + "1483056504", + "1483056555", + "1483056504", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968328", + "968328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056556", + "1483056556", + "1483056590", + "1483056556", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968383", + "968383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056733", + "1483056733", + "1483056789", + "1483056733", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968389", + "968389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056753", + "1483056753", + "1483056832", + "1483056753", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968407", + "968407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056816", + "1483056816", + "1483056850", + "1483056816", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968409", + "968409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056820", + "1483056820", + "1483056866", + "1483056820", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968437", + "968437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056878", + "1483056878", + "1483056913", + "1483056878", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968463", + "968463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056936", + "1483056936", + "1483056967", + "1483056936", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968500", + "968500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057081", + "1483057081", + "1483057138", + "1483057081", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968504", + "968504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057084", + "1483057084", + "1483057120", + "1483057084", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968508", + "968508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057116", + "1483057116", + "1483057153", + "1483057116", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968522", + "968522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057151", + "1483057151", + "1483057205", + "1483057151", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968524", + "968524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057154", + "1483057154", + "1483057225", + "1483057154", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968526", + "968526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057157", + "1483057157", + "1483057298", + "1483057157", + "1", + "8", + "0", + "-1", + "141", + "0", + "1128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968530", + "968530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057166", + "1483057166", + "1483057242", + "1483057166", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968532", + "968532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057171", + "1483057171", + "1483057221", + "1483057171", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968534", + "968534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057186", + "1483057186", + "1483057218", + "1483057186", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968538", + "968538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057219", + "1483057219", + "1483057250", + "1483057219", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968546", + "968546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057243", + "1483057243", + "1483057297", + "1483057243", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968548", + "968548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057251", + "1483057251", + "1483057302", + "1483057251", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968550", + "968550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057252", + "1483057252", + "1483057285", + "1483057252", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968552", + "968552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057252", + "1483057252", + "1483057283", + "1483057252", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968554", + "968554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057258", + "1483057258", + "1483057296", + "1483057258", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968580", + "968580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057346", + "1483057346", + "1483057399", + "1483057346", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968596", + "968596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057389", + "1483057389", + "1483057434", + "1483057389", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968600", + "968600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057400", + "1483057400", + "1483057457", + "1483057400", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968610", + "968610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057438", + "1483057438", + "1483057476", + "1483057438", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968612", + "968612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057439", + "1483057439", + "1483057504", + "1483057439", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968618", + "968618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057458", + "1483057458", + "1483057597", + "1483057458", + "1", + "8", + "0", + "-1", + "139", + "0", + "1112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968626", + "968626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057513", + "1483057513", + "1483057546", + "1483057513", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968630", + "968630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057516", + "1483057516", + "1483057560", + "1483057516", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968632", + "968632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057547", + "1483057547", + "1483057587", + "1483057547", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968634", + "968634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057555", + "1483057555", + "1483057596", + "1483057555", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968638", + "968638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057561", + "1483057561", + "1483057629", + "1483057561", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968640", + "968640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057576", + "1483057576", + "1483057630", + "1483057576", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968642", + "968642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057581", + "1483057581", + "1483057617", + "1483057581", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968644", + "968644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057588", + "1483057588", + "1483057647", + "1483057588", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968648", + "968648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057597", + "1483057597", + "1483057657", + "1483057597", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968652", + "968652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057618", + "1483057618", + "1483057667", + "1483057618", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968654", + "968654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057630", + "1483057630", + "1483057682", + "1483057630", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968694", + "968694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057788", + "1483057788", + "1483057828", + "1483057788", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968700", + "968700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057805", + "1483057805", + "1483057846", + "1483057805", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968704", + "968704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057822", + "1483057822", + "1483057856", + "1483057822", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968706", + "968706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057823", + "1483057823", + "1483057874", + "1483057823", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968716", + "968716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057847", + "1483057847", + "1483057915", + "1483057847", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968730", + "968730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057904", + "1483057904", + "1483057951", + "1483057904", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968756", + "968756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057945", + "1483057945", + "1483058056", + "1483057945", + "1", + "8", + "0", + "-1", + "111", + "0", + "888", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968796", + "968796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058057", + "1483058057", + "1483058093", + "1483058057", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968798", + "968798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058058", + "1483058058", + "1483058093", + "1483058058", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968800", + "968800", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058065", + "1483058065", + "1483058096", + "1483058065", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968823", + "968823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058135", + "1483058135", + "1483058169", + "1483058135", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968827", + "968827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058145", + "1483058145", + "1483058177", + "1483058145", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968843", + "968843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058198", + "1483058198", + "1483058261", + "1483058198", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968847", + "968847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058209", + "1483058209", + "1483058333", + "1483058209", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968857", + "968857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058262", + "1483058262", + "1483058307", + "1483058262", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968868", + "968868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058289", + "1483058289", + "1483058322", + "1483058289", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968888", + "968888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058347", + "1483058347", + "1483058385", + "1483058347", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968890", + "968890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058358", + "1483058358", + "1483058397", + "1483058358", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968896", + "968896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058364", + "1483058364", + "1483058431", + "1483058364", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968898", + "968898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058386", + "1483058386", + "1483058450", + "1483058386", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968900", + "968900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058386", + "1483058386", + "1483058418", + "1483058386", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968928", + "968928", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058504", + "1483058504", + "1483058557", + "1483058504", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968934", + "968934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058517", + "1483058517", + "1483058564", + "1483058517", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968954", + "968954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058579", + "1483058579", + "1483058612", + "1483058579", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968956", + "968956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058608", + "1483058608", + "1483058667", + "1483058608", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968958", + "968958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058613", + "1483058613", + "1483058688", + "1483058613", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968960", + "968960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058623", + "1483058623", + "1483058685", + "1483058623", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968962", + "968962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058630", + "1483058630", + "1483058690", + "1483058630", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968968", + "968968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058642", + "1483058642", + "1483058679", + "1483058642", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968974", + "968974", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058668", + "1483058668", + "1483058730", + "1483058668", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968990", + "968990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058731", + "1483058731", + "1483058826", + "1483058731", + "1", + "8", + "0", + "-1", + "95", + "0", + "760", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968992", + "968992", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058770", + "1483058770", + "1483058837", + "1483058770", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968996", + "968996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058779", + "1483058779", + "1483058847", + "1483058779", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968998", + "968998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058783", + "1483058783", + "1483058831", + "1483058783", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969018", + "969018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058861", + "1483058861", + "1483058892", + "1483058861", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969020", + "969020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058888", + "1483058888", + "1483058947", + "1483058888", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969030", + "969030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058911", + "1483058911", + "1483059071", + "1483058911", + "1", + "8", + "0", + "-1", + "160", + "0", + "1280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969038", + "969038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058948", + "1483058948", + "1483059084", + "1483058948", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969056", + "969056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059085", + "1483059085", + "1483059223", + "1483059085", + "1", + "8", + "0", + "-1", + "138", + "0", + "1104", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969060", + "969060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059101", + "1483059101", + "1483059174", + "1483059101", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969062", + "969062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059107", + "1483059107", + "1483059238", + "1483059107", + "1", + "8", + "0", + "-1", + "131", + "0", + "1048", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969068", + "969068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059175", + "1483059175", + "1483059253", + "1483059175", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969072", + "969072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059212", + "1483059212", + "1483059377", + "1483059212", + "1", + "8", + "0", + "-1", + "165", + "0", + "1320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969074", + "969074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059224", + "1483059224", + "1483059384", + "1483059224", + "1", + "8", + "0", + "-1", + "160", + "0", + "1280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969076", + "969076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059227", + "1483059227", + "1483059482", + "1483059227", + "1", + "8", + "0", + "-1", + "255", + "0", + "2040", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969080", + "969080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059236", + "1483059236", + "1483059343", + "1483059236", + "1", + "8", + "0", + "-1", + "107", + "0", + "856", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969084", + "969084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059254", + "1483059254", + "1483059292", + "1483059254", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969088", + "969088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059343", + "1483059343", + "1483059395", + "1483059343", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969120", + "969120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059483", + "1483059483", + "1483059539", + "1483059483", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969124", + "969124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059495", + "1483059495", + "1483059566", + "1483059495", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969126", + "969126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059498", + "1483059498", + "1483059563", + "1483059498", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969128", + "969128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059501", + "1483059501", + "1483059597", + "1483059501", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969138", + "969138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059567", + "1483059567", + "1483059603", + "1483059567", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969146", + "969146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059607", + "1483059607", + "1483059685", + "1483059607", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969148", + "969148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059613", + "1483059613", + "1483059649", + "1483059613", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969150", + "969150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059633", + "1483059633", + "1483059704", + "1483059633", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969152", + "969152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059638", + "1483059638", + "1483059677", + "1483059638", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969154", + "969154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059650", + "1483059650", + "1483059706", + "1483059650", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969158", + "969158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059677", + "1483059677", + "1483059717", + "1483059677", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969160", + "969160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059677", + "1483059677", + "1483059725", + "1483059677", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969174", + "969174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059718", + "1483059718", + "1483059816", + "1483059718", + "1", + "8", + "0", + "-1", + "98", + "0", + "784", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969194", + "969194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059827", + "1483059827", + "1483059901", + "1483059827", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969198", + "969198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059854", + "1483059854", + "1483059894", + "1483059854", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969204", + "969204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059882", + "1483059882", + "1483059917", + "1483059882", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969214", + "969214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059895", + "1483059895", + "1483060060", + "1483059895", + "1", + "8", + "0", + "-1", + "165", + "0", + "1320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969216", + "969216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059895", + "1483059895", + "1483059957", + "1483059895", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969222", + "969222", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059918", + "1483059918", + "1483059965", + "1483059918", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969224", + "969224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059958", + "1483059958", + "1483059999", + "1483059958", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969226", + "969226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059966", + "1483059966", + "1483059998", + "1483059966", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969232", + "969232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059999", + "1483059999", + "1483060044", + "1483059999", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969241", + "969241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060015", + "1483060015", + "1483060066", + "1483060015", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969251", + "969251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060060", + "1483060060", + "1483060106", + "1483060060", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969257", + "969257", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060072", + "1483060072", + "1483060121", + "1483060072", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969269", + "969269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060106", + "1483060106", + "1483060136", + "1483060106", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969283", + "969283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060162", + "1483060162", + "1483060217", + "1483060162", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969285", + "969285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060172", + "1483060172", + "1483060222", + "1483060172", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969287", + "969287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060173", + "1483060173", + "1483060226", + "1483060173", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969289", + "969289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060176", + "1483060176", + "1483060214", + "1483060176", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969307", + "969307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060226", + "1483060226", + "1483060291", + "1483060226", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969311", + "969311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060249", + "1483060249", + "1483060316", + "1483060249", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969313", + "969313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060282", + "1483060282", + "1483060331", + "1483060282", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969317", + "969317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060292", + "1483060292", + "1483060338", + "1483060292", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969319", + "969319", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060297", + "1483060297", + "1483060332", + "1483060297", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969333", + "969333", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060352", + "1483060352", + "1483060395", + "1483060352", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969335", + "969335", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060365", + "1483060365", + "1483060407", + "1483060365", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969349", + "969349", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060396", + "1483060396", + "1483060469", + "1483060396", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969351", + "969351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060397", + "1483060397", + "1483060546", + "1483060397", + "1", + "8", + "0", + "-1", + "149", + "0", + "1192", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969353", + "969353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060408", + "1483060408", + "1483060448", + "1483060408", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969355", + "969355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060420", + "1483060420", + "1483060457", + "1483060420", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969361", + "969361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060449", + "1483060449", + "1483060488", + "1483060449", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969376", + "969376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060489", + "1483060489", + "1483060542", + "1483060489", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969390", + "969390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060547", + "1483060547", + "1483060584", + "1483060547", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969394", + "969394", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060552", + "1483060552", + "1483060619", + "1483060552", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969402", + "969402", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060595", + "1483060595", + "1483060637", + "1483060595", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969419", + "969419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060664", + "1483060664", + "1483060708", + "1483060664", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969421", + "969421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060665", + "1483060665", + "1483060703", + "1483060665", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969435", + "969435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060704", + "1483060704", + "1483060736", + "1483060704", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969439", + "969439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060709", + "1483060709", + "1483060740", + "1483060709", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969445", + "969445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060730", + "1483060730", + "1483060802", + "1483060730", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969453", + "969453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060741", + "1483060741", + "1483060775", + "1483060741", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969459", + "969459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060764", + "1483060764", + "1483060801", + "1483060764", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969465", + "969465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060785", + "1483060785", + "1483060828", + "1483060785", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969469", + "969469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060802", + "1483060802", + "1483060838", + "1483060802", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969477", + "969477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060829", + "1483060829", + "1483060862", + "1483060829", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969483", + "969483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060838", + "1483060838", + "1483060877", + "1483060838", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969487", + "969487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060850", + "1483060850", + "1483060923", + "1483060850", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969505", + "969505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060905", + "1483060905", + "1483060953", + "1483060905", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969523", + "969523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060962", + "1483060962", + "1483060997", + "1483060962", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969527", + "969527", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060975", + "1483060975", + "1483061013", + "1483060975", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969529", + "969529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060979", + "1483060979", + "1483061052", + "1483060979", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969531", + "969531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060981", + "1483060981", + "1483061058", + "1483060981", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969539", + "969539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061012", + "1483061012", + "1483061092", + "1483061012", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969555", + "969555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061081", + "1483061081", + "1483061120", + "1483061081", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969559", + "969559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061086", + "1483061086", + "1483061120", + "1483061086", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969563", + "969563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061103", + "1483061103", + "1483061140", + "1483061103", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969567", + "969567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061121", + "1483061121", + "1483061152", + "1483061121", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969569", + "969569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061130", + "1483061130", + "1483061161", + "1483061130", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969571", + "969571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061138", + "1483061138", + "1483061175", + "1483061138", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969573", + "969573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061141", + "1483061141", + "1483061177", + "1483061141", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969579", + "969579", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061158", + "1483061158", + "1483061312", + "1483061158", + "1", + "8", + "0", + "-1", + "154", + "0", + "1232", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969581", + "969581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061162", + "1483061162", + "1483061221", + "1483061162", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969587", + "969587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061176", + "1483061176", + "1483061208", + "1483061176", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969593", + "969593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061209", + "1483061209", + "1483061258", + "1483061209", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969597", + "969597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061221", + "1483061221", + "1483061270", + "1483061221", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969611", + "969611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061259", + "1483061259", + "1483061290", + "1483061259", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969628", + "969628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061313", + "1483061313", + "1483061396", + "1483061313", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969632", + "969632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061319", + "1483061319", + "1483061358", + "1483061319", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969648", + "969648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061397", + "1483061397", + "1483061432", + "1483061397", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969650", + "969650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061401", + "1483061401", + "1483061437", + "1483061401", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969660", + "969660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061433", + "1483061433", + "1483061484", + "1483061433", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969668", + "969668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061448", + "1483061448", + "1483061491", + "1483061448", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969672", + "969672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061464", + "1483061464", + "1483061511", + "1483061464", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969674", + "969674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061469", + "1483061469", + "1483061508", + "1483061469", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969678", + "969678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061485", + "1483061485", + "1483061547", + "1483061485", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969680", + "969680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061492", + "1483061492", + "1483061567", + "1483061492", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969682", + "969682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061509", + "1483061509", + "1483061547", + "1483061509", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969686", + "969686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061525", + "1483061525", + "1483061585", + "1483061525", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969688", + "969688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061529", + "1483061529", + "1483061593", + "1483061529", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969692", + "969692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061548", + "1483061548", + "1483061601", + "1483061548", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969694", + "969694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061548", + "1483061548", + "1483061585", + "1483061548", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969696", + "969696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061551", + "1483061551", + "1483061614", + "1483061551", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969698", + "969698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061568", + "1483061568", + "1483061615", + "1483061568", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969704", + "969704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061586", + "1483061586", + "1483061650", + "1483061586", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969710", + "969710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061601", + "1483061601", + "1483061697", + "1483061601", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969753", + "969753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061760", + "1483061760", + "1483061792", + "1483061760", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969755", + "969755", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061761", + "1483061761", + "1483061824", + "1483061761", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969757", + "969757", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061767", + "1483061767", + "1483061812", + "1483061767", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969761", + "969761", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061780", + "1483061780", + "1483061920", + "1483061780", + "1", + "8", + "0", + "-1", + "140", + "0", + "1120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969765", + "969765", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061793", + "1483061793", + "1483061833", + "1483061793", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969785", + "969785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061857", + "1483061857", + "1483061894", + "1483061857", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969789", + "969789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061880", + "1483061880", + "1483061920", + "1483061880", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969806", + "969806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061921", + "1483061921", + "1483062035", + "1483061921", + "1", + "8", + "0", + "-1", + "114", + "0", + "912", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969808", + "969808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061921", + "1483061921", + "1483061973", + "1483061921", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969812", + "969812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061954", + "1483061954", + "1483062016", + "1483061954", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969832", + "969832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062011", + "1483062011", + "1483062041", + "1483062011", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969834", + "969834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062017", + "1483062017", + "1483062049", + "1483062017", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969844", + "969844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062042", + "1483062042", + "1483062078", + "1483062042", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969846", + "969846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062049", + "1483062049", + "1483062106", + "1483062049", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969848", + "969848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062050", + "1483062050", + "1483062102", + "1483062050", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969850", + "969850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062057", + "1483062057", + "1483062101", + "1483062057", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969852", + "969852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062060", + "1483062060", + "1483062157", + "1483062060", + "1", + "8", + "0", + "-1", + "97", + "0", + "776", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969858", + "969858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062079", + "1483062079", + "1483062119", + "1483062079", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969872", + "969872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062132", + "1483062132", + "1483062172", + "1483062132", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969874", + "969874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062136", + "1483062136", + "1483062185", + "1483062136", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969888", + "969888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062186", + "1483062186", + "1483062222", + "1483062186", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969890", + "969890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062194", + "1483062194", + "1483062228", + "1483062194", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969894", + "969894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062199", + "1483062199", + "1483062246", + "1483062199", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969896", + "969896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062202", + "1483062202", + "1483062238", + "1483062202", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969900", + "969900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062223", + "1483062223", + "1483062262", + "1483062223", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969902", + "969902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062227", + "1483062227", + "1483062265", + "1483062227", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969908", + "969908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062247", + "1483062247", + "1483062278", + "1483062247", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969920", + "969920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062278", + "1483062278", + "1483062329", + "1483062278", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969940", + "969940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062329", + "1483062329", + "1483062388", + "1483062329", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969944", + "969944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062342", + "1483062342", + "1483062440", + "1483062342", + "1", + "8", + "0", + "-1", + "98", + "0", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969946", + "969946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062343", + "1483062343", + "1483062384", + "1483062343", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969960", + "969960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062403", + "1483062403", + "1483062442", + "1483062403", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969966", + "969966", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062427", + "1483062427", + "1483062498", + "1483062427", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969968", + "969968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062436", + "1483062436", + "1483062496", + "1483062436", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969970", + "969970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062441", + "1483062441", + "1483062475", + "1483062441", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969995", + "969995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062508", + "1483062508", + "1483062559", + "1483062508", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970005", + "970005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062567", + "1483062567", + "1483062607", + "1483062567", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970011", + "970011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062583", + "1483062583", + "1483062641", + "1483062583", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970013", + "970013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062604", + "1483062604", + "1483062655", + "1483062604", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970019", + "970019", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062634", + "1483062634", + "1483062678", + "1483062634", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970021", + "970021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062640", + "1483062640", + "1483062674", + "1483062640", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970027", + "970027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062649", + "1483062649", + "1483062708", + "1483062649", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970029", + "970029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062655", + "1483062655", + "1483062697", + "1483062655", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970031", + "970031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062675", + "1483062675", + "1483062767", + "1483062675", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970035", + "970035", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062678", + "1483062678", + "1483062849", + "1483062678", + "1", + "8", + "0", + "-1", + "171", + "0", + "1368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970072", + "970072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062821", + "1483062821", + "1483062868", + "1483062821", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970090", + "970090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062895", + "1483062895", + "1483063035", + "1483062895", + "1", + "8", + "0", + "-1", + "140", + "0", + "1120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970096", + "970096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062955", + "1483062955", + "1483063090", + "1483062955", + "1", + "8", + "0", + "-1", + "135", + "0", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970108", + "970108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063052", + "1483063052", + "1483063194", + "1483063052", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970112", + "970112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063091", + "1483063091", + "1483063193", + "1483063091", + "1", + "8", + "0", + "-1", + "102", + "0", + "816", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970114", + "970114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063094", + "1483063094", + "1483063213", + "1483063094", + "1", + "8", + "0", + "-1", + "119", + "0", + "952", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970120", + "970120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063168", + "1483063168", + "1483063273", + "1483063168", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970126", + "970126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063194", + "1483063194", + "1483063465", + "1483063194", + "1", + "8", + "0", + "-1", + "271", + "0", + "2168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970128", + "970128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063195", + "1483063195", + "1483063307", + "1483063195", + "1", + "8", + "0", + "-1", + "112", + "0", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970137", + "970137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063274", + "1483063274", + "1483063321", + "1483063274", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970143", + "970143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063322", + "1483063322", + "1483063370", + "1483063322", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970145", + "970145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063354", + "1483063354", + "1483063386", + "1483063354", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970147", + "970147", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063357", + "1483063357", + "1483063407", + "1483063357", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970151", + "970151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063360", + "1483063360", + "1483063417", + "1483063360", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970153", + "970153", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063371", + "1483063371", + "1483063424", + "1483063371", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970155", + "970155", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063387", + "1483063387", + "1483063440", + "1483063387", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970159", + "970159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063411", + "1483063411", + "1483063457", + "1483063411", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970165", + "970165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063425", + "1483063425", + "1483063469", + "1483063425", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970169", + "970169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063458", + "1483063458", + "1483063524", + "1483063458", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970173", + "970173", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063466", + "1483063466", + "1483063612", + "1483063466", + "1", + "8", + "0", + "-1", + "146", + "0", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970175", + "970175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063469", + "1483063469", + "1483063557", + "1483063469", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970179", + "970179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063503", + "1483063503", + "1483063576", + "1483063503", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970181", + "970181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063524", + "1483063524", + "1483063574", + "1483063524", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970183", + "970183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063547", + "1483063547", + "1483063586", + "1483063547", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970187", + "970187", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063558", + "1483063558", + "1483063600", + "1483063558", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970191", + "970191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063574", + "1483063574", + "1483063626", + "1483063574", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970225", + "970225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063701", + "1483063701", + "1483063808", + "1483063701", + "1", + "8", + "0", + "-1", + "107", + "0", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970229", + "970229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063710", + "1483063710", + "1483063777", + "1483063710", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970241", + "970241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063766", + "1483063766", + "1483063823", + "1483063766", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970245", + "970245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063798", + "1483063798", + "1483063854", + "1483063798", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970247", + "970247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063809", + "1483063809", + "1483063886", + "1483063809", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970251", + "970251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063816", + "1483063816", + "1483063871", + "1483063816", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970255", + "970255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063824", + "1483063824", + "1483063867", + "1483063824", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970269", + "970269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063868", + "1483063868", + "1483063972", + "1483063868", + "1", + "8", + "0", + "-1", + "104", + "0", + "832", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970271", + "970271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063872", + "1483063872", + "1483063934", + "1483063872", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970273", + "970273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063887", + "1483063887", + "1483063919", + "1483063887", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970275", + "970275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063918", + "1483063918", + "1483063957", + "1483063918", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970279", + "970279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063935", + "1483063935", + "1483063969", + "1483063935", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970291", + "970291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063972", + "1483063972", + "1483064003", + "1483063972", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970315", + "970315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064040", + "1483064040", + "1483064100", + "1483064040", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970317", + "970317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064057", + "1483064057", + "1483064092", + "1483064057", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970319", + "970319", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064057", + "1483064057", + "1483064090", + "1483064057", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970333", + "970333", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064111", + "1483064111", + "1483064150", + "1483064111", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970335", + "970335", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064115", + "1483064115", + "1483064146", + "1483064115", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970352", + "970352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064161", + "1483064161", + "1483064212", + "1483064161", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970356", + "970356", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064173", + "1483064173", + "1483064305", + "1483064173", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970362", + "970362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064182", + "1483064182", + "1483064219", + "1483064182", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970364", + "970364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064199", + "1483064199", + "1483064241", + "1483064199", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970366", + "970366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064211", + "1483064211", + "1483064257", + "1483064211", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970370", + "970370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064220", + "1483064220", + "1483064267", + "1483064220", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970376", + "970376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064248", + "1483064248", + "1483064297", + "1483064248", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970378", + "970378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064258", + "1483064258", + "1483064309", + "1483064258", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970380", + "970380", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064262", + "1483064262", + "1483064298", + "1483064262", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970384", + "970384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064268", + "1483064268", + "1483064314", + "1483064268", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970398", + "970398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064319", + "1483064319", + "1483064360", + "1483064319", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970400", + "970400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064320", + "1483064320", + "1483064371", + "1483064320", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970414", + "970414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064368", + "1483064368", + "1483064405", + "1483064368", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970426", + "970426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064406", + "1483064406", + "1483064457", + "1483064406", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970428", + "970428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064407", + "1483064407", + "1483064440", + "1483064407", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970430", + "970430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064418", + "1483064418", + "1483064456", + "1483064418", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970442", + "970442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064457", + "1483064457", + "1483064498", + "1483064457", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970444", + "970444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064458", + "1483064458", + "1483064510", + "1483064458", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970450", + "970450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064468", + "1483064468", + "1483064505", + "1483064468", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970454", + "970454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064478", + "1483064478", + "1483064510", + "1483064478", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970468", + "970468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064529", + "1483064529", + "1483064561", + "1483064529", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970474", + "970474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064541", + "1483064541", + "1483064574", + "1483064541", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970476", + "970476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064549", + "1483064549", + "1483064583", + "1483064549", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970534", + "970534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064692", + "1483064692", + "1483064724", + "1483064692", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970544", + "970544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064725", + "1483064725", + "1483064755", + "1483064725", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970546", + "970546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064732", + "1483064732", + "1483064773", + "1483064732", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970550", + "970550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064747", + "1483064747", + "1483064784", + "1483064747", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970560", + "970560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064780", + "1483064780", + "1483064810", + "1483064780", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970562", + "970562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064785", + "1483064785", + "1483064838", + "1483064785", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970570", + "970570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064811", + "1483064811", + "1483064841", + "1483064811", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970576", + "970576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064830", + "1483064830", + "1483064865", + "1483064830", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970586", + "970586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064854", + "1483064854", + "1483064900", + "1483064854", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970594", + "970594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064890", + "1483064890", + "1483064924", + "1483064890", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970597", + "970597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064890", + "1483064890", + "1483064941", + "1483064890", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970599", + "970599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064901", + "1483064901", + "1483064939", + "1483064901", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970603", + "970603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064918", + "1483064918", + "1483064965", + "1483064918", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970607", + "970607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064924", + "1483064924", + "1483064967", + "1483064924", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970611", + "970611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064931", + "1483064931", + "1483064964", + "1483064931", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970624", + "970624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064966", + "1483064966", + "1483065010", + "1483064966", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970630", + "970630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064978", + "1483064978", + "1483065018", + "1483064978", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970640", + "970640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065027", + "1483065027", + "1483065070", + "1483065027", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970644", + "970644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065044", + "1483065044", + "1483065080", + "1483065044", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970669", + "970669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065103", + "1483065103", + "1483065143", + "1483065103", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970675", + "970675", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065114", + "1483065114", + "1483065152", + "1483065114", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970698", + "970698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065190", + "1483065190", + "1483065226", + "1483065190", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970718", + "970718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065247", + "1483065247", + "1483065382", + "1483065247", + "1", + "8", + "0", + "-1", + "135", + "0", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970720", + "970720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065250", + "1483065250", + "1483065297", + "1483065250", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970722", + "970722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065253", + "1483065253", + "1483065296", + "1483065253", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970724", + "970724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065280", + "1483065280", + "1483065313", + "1483065280", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970726", + "970726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065286", + "1483065286", + "1483065351", + "1483065286", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970728", + "970728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065297", + "1483065297", + "1483065362", + "1483065297", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970730", + "970730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065297", + "1483065297", + "1483065362", + "1483065297", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970734", + "970734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065314", + "1483065314", + "1483065371", + "1483065314", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970738", + "970738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065352", + "1483065352", + "1483065422", + "1483065352", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970770", + "970770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065488", + "1483065488", + "1483065576", + "1483065488", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970786", + "970786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065577", + "1483065577", + "1483065623", + "1483065577", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970790", + "970790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065588", + "1483065588", + "1483065619", + "1483065588", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970800", + "970800", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065624", + "1483065624", + "1483065654", + "1483065624", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970806", + "970806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065633", + "1483065633", + "1483065694", + "1483065633", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970808", + "970808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065640", + "1483065640", + "1483065680", + "1483065640", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970812", + "970812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065651", + "1483065651", + "1483065705", + "1483065651", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970823", + "970823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065681", + "1483065681", + "1483065715", + "1483065681", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970831", + "970831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065705", + "1483065705", + "1483065742", + "1483065705", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970835", + "970835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065716", + "1483065716", + "1483065754", + "1483065716", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970837", + "970837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065716", + "1483065716", + "1483065755", + "1483065716", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970848", + "970848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065746", + "1483065746", + "1483065795", + "1483065746", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970852", + "970852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065755", + "1483065755", + "1483065805", + "1483065755", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970878", + "970878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065835", + "1483065835", + "1483065877", + "1483065835", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970898", + "970898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065888", + "1483065888", + "1483065926", + "1483065888", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970908", + "970908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065927", + "1483065927", + "1483065958", + "1483065927", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970924", + "970924", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065970", + "1483065970", + "1483066013", + "1483065970", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970928", + "970928", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065979", + "1483065979", + "1483066015", + "1483065979", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970948", + "970948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066030", + "1483066030", + "1483066069", + "1483066030", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970950", + "970950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066035", + "1483066035", + "1483066080", + "1483066035", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970952", + "970952", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066050", + "1483066050", + "1483066080", + "1483066050", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970956", + "970956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066053", + "1483066053", + "1483066095", + "1483066053", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970985", + "970985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066130", + "1483066130", + "1483066178", + "1483066130", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970998", + "970998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066154", + "1483066154", + "1483066193", + "1483066154", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971002", + "971002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066178", + "1483066178", + "1483066209", + "1483066178", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971014", + "971014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066215", + "1483066215", + "1483066262", + "1483066215", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971018", + "971018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066221", + "1483066221", + "1483066261", + "1483066221", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971040", + "971040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066291", + "1483066291", + "1483066334", + "1483066291", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971042", + "971042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066292", + "1483066292", + "1483066334", + "1483066292", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971044", + "971044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066302", + "1483066302", + "1483066349", + "1483066302", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971046", + "971046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066330", + "1483066330", + "1483066373", + "1483066330", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971052", + "971052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066335", + "1483066335", + "1483066392", + "1483066335", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971058", + "971058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066350", + "1483066350", + "1483066392", + "1483066350", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971072", + "971072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066397", + "1483066397", + "1483066432", + "1483066397", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971076", + "971076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066412", + "1483066412", + "1483066470", + "1483066412", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971080", + "971080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066420", + "1483066420", + "1483066465", + "1483066420", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971086", + "971086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066435", + "1483066435", + "1483066495", + "1483066435", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971118", + "971118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066577", + "1483066577", + "1483066614", + "1483066577", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971124", + "971124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066584", + "1483066584", + "1483066662", + "1483066584", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971128", + "971128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066604", + "1483066604", + "1483066698", + "1483066604", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971138", + "971138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066650", + "1483066650", + "1483066782", + "1483066650", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971140", + "971140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066653", + "1483066653", + "1483066784", + "1483066653", + "1", + "8", + "0", + "-1", + "131", + "0", + "1048", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971146", + "971146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066693", + "1483066693", + "1483066787", + "1483066693", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971154", + "971154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066782", + "1483066782", + "1483066889", + "1483066782", + "1", + "8", + "0", + "-1", + "107", + "0", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971156", + "971156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066785", + "1483066785", + "1483066873", + "1483066785", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971160", + "971160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066787", + "1483066787", + "1483066859", + "1483066787", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971166", + "971166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066837", + "1483066837", + "1483066953", + "1483066837", + "1", + "8", + "0", + "-1", + "116", + "0", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971175", + "971175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066859", + "1483066859", + "1483067036", + "1483066859", + "1", + "8", + "0", + "-1", + "177", + "0", + "1416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971177", + "971177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066865", + "1483066865", + "1483067036", + "1483066865", + "1", + "8", + "0", + "-1", + "171", + "0", + "1368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971183", + "971183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066894", + "1483066894", + "1483066954", + "1483066894", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971192", + "971192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067064", + "1483067064", + "1483067138", + "1483067064", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971214", + "971214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067436", + "1483067436", + "1483067592", + "1483067436", + "1", + "8", + "0", + "-1", + "156", + "0", + "1248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971219", + "971219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067494", + "1483067494", + "1483067559", + "1483067494", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971221", + "971221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067507", + "1483067507", + "1483067572", + "1483067507", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971239", + "971239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067635", + "1483067635", + "1483067709", + "1483067635", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971256", + "971256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067680", + "1483067680", + "1483067809", + "1483067680", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971268", + "971268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067697", + "1483067697", + "1483067753", + "1483067697", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971270", + "971270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067697", + "1483067697", + "1483067764", + "1483067697", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971284", + "971284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067710", + "1483067710", + "1483067741", + "1483067710", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971288", + "971288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067742", + "1483067742", + "1483067776", + "1483067742", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971294", + "971294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067761", + "1483067761", + "1483067833", + "1483067761", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971300", + "971300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067777", + "1483067777", + "1483067921", + "1483067777", + "1", + "8", + "0", + "-1", + "144", + "0", + "1152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971302", + "971302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067804", + "1483067804", + "1483067864", + "1483067804", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971306", + "971306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067810", + "1483067810", + "1483067854", + "1483067810", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971345", + "971345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067924", + "1483067924", + "1483068044", + "1483067924", + "1", + "8", + "0", + "-1", + "120", + "0", + "960", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971349", + "971349", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067938", + "1483067938", + "1483067992", + "1483067938", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971353", + "971353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067954", + "1483067954", + "1483067986", + "1483067954", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971379", + "971379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068016", + "1483068016", + "1483068050", + "1483068016", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971387", + "971387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068039", + "1483068039", + "1483068070", + "1483068039", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971391", + "971391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068045", + "1483068045", + "1483068077", + "1483068045", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971395", + "971395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068061", + "1483068061", + "1483068118", + "1483068061", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971397", + "971397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068067", + "1483068067", + "1483068098", + "1483068067", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971429", + "971429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068137", + "1483068137", + "1483068176", + "1483068137", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971432", + "971432", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068137", + "1483068137", + "1483068171", + "1483068137", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971436", + "971436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068153", + "1483068153", + "1483068193", + "1483068153", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971438", + "971438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068157", + "1483068157", + "1483068198", + "1483068157", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971448", + "971448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068185", + "1483068185", + "1483068221", + "1483068185", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971514", + "971514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068360", + "1483068360", + "1483068398", + "1483068360", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971545", + "971545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068438", + "1483068438", + "1483068468", + "1483068438", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971549", + "971549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068444", + "1483068444", + "1483068478", + "1483068444", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971551", + "971551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068447", + "1483068447", + "1483068493", + "1483068447", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971553", + "971553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068456", + "1483068456", + "1483068488", + "1483068456", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971559", + "971559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068473", + "1483068473", + "1483068510", + "1483068473", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971561", + "971561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068479", + "1483068479", + "1483068519", + "1483068479", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971563", + "971563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068484", + "1483068484", + "1483068516", + "1483068484", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971577", + "971577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068516", + "1483068516", + "1483068643", + "1483068516", + "1", + "8", + "0", + "-1", + "127", + "0", + "1016", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971579", + "971579", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068519", + "1483068519", + "1483068559", + "1483068519", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971589", + "971589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068560", + "1483068560", + "1483068595", + "1483068560", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971603", + "971603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068600", + "1483068600", + "1483068644", + "1483068600", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971620", + "971620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068660", + "1483068660", + "1483068705", + "1483068660", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971622", + "971622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068665", + "1483068665", + "1483068703", + "1483068665", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971634", + "971634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068704", + "1483068704", + "1483068752", + "1483068704", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971638", + "971638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068719", + "1483068719", + "1483068845", + "1483068719", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971644", + "971644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068730", + "1483068730", + "1483068791", + "1483068730", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971656", + "971656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068770", + "1483068770", + "1483068806", + "1483068770", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971668", + "971668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068792", + "1483068792", + "1483068825", + "1483068792", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971670", + "971670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068802", + "1483068802", + "1483068867", + "1483068802", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971672", + "971672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068807", + "1483068807", + "1483068869", + "1483068807", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971684", + "971684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068846", + "1483068846", + "1483068890", + "1483068846", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971686", + "971686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068855", + "1483068855", + "1483068898", + "1483068855", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971688", + "971688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068867", + "1483068867", + "1483068930", + "1483068867", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971690", + "971690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068867", + "1483068867", + "1483068953", + "1483068867", + "1", + "8", + "0", + "-1", + "86", + "0", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971692", + "971692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068870", + "1483068870", + "1483069040", + "1483068870", + "1", + "8", + "0", + "-1", + "170", + "0", + "1360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971694", + "971694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068877", + "1483068877", + "1483068973", + "1483068877", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971714", + "971714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068979", + "1483068979", + "1483069020", + "1483068979", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971720", + "971720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069000", + "1483069000", + "1483069038", + "1483069000", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971743", + "971743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069065", + "1483069065", + "1483069119", + "1483069065", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971759", + "971759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069117", + "1483069117", + "1483069149", + "1483069117", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971763", + "971763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069120", + "1483069120", + "1483069164", + "1483069120", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971777", + "971777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069163", + "1483069163", + "1483069194", + "1483069163", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971787", + "971787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069192", + "1483069192", + "1483069224", + "1483069192", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971793", + "971793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069209", + "1483069209", + "1483069249", + "1483069209", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971795", + "971795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069221", + "1483069221", + "1483069261", + "1483069221", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971801", + "971801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069250", + "1483069250", + "1483069293", + "1483069250", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971805", + "971805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069261", + "1483069261", + "1483069366", + "1483069261", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971811", + "971811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069294", + "1483069294", + "1483069365", + "1483069294", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971815", + "971815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069311", + "1483069311", + "1483069388", + "1483069311", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971823", + "971823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069366", + "1483069366", + "1483069446", + "1483069366", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971833", + "971833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069431", + "1483069431", + "1483069510", + "1483069431", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971835", + "971835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069444", + "1483069444", + "1483069683", + "1483069444", + "1", + "8", + "0", + "-1", + "239", + "0", + "1912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971837", + "971837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069447", + "1483069447", + "1483069575", + "1483069447", + "1", + "8", + "0", + "-1", + "128", + "0", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971839", + "971839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069462", + "1483069462", + "1483069614", + "1483069462", + "1", + "8", + "0", + "-1", + "152", + "0", + "1216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971843", + "971843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069485", + "1483069485", + "1483069540", + "1483069485", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971847", + "971847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069525", + "1483069525", + "1483069589", + "1483069525", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971873", + "971873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069614", + "1483069614", + "1483069658", + "1483069614", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971887", + "971887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069652", + "1483069652", + "1483069682", + "1483069652", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971889", + "971889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069655", + "1483069655", + "1483069687", + "1483069655", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971891", + "971891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069659", + "1483069659", + "1483069689", + "1483069659", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971899", + "971899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069684", + "1483069684", + "1483069715", + "1483069684", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971987", + "971987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069856", + "1483069856", + "1483069894", + "1483069856", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971989", + "971989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069859", + "1483069859", + "1483069903", + "1483069859", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972027", + "972027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069950", + "1483069950", + "1483069984", + "1483069950", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972031", + "972031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069959", + "1483069959", + "1483070036", + "1483069959", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972034", + "972034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069959", + "1483069959", + "1483069990", + "1483069959", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972058", + "972058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070007", + "1483070007", + "1483070039", + "1483070007", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972082", + "972082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070053", + "1483070053", + "1483070087", + "1483070053", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972122", + "972122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070129", + "1483070129", + "1483070235", + "1483070129", + "1", + "8", + "0", + "-1", + "106", + "0", + "848", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972136", + "972136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070160", + "1483070160", + "1483070191", + "1483070160", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972150", + "972150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070192", + "1483070192", + "1483070233", + "1483070192", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972162", + "972162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070222", + "1483070222", + "1483070260", + "1483070222", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972166", + "972166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070228", + "1483070228", + "1483070259", + "1483070228", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972213", + "972213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070338", + "1483070338", + "1483070401", + "1483070338", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972259", + "972259", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070438", + "1483070438", + "1483070506", + "1483070438", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972273", + "972273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070483", + "1483070483", + "1483070514", + "1483070483", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972317", + "972317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070587", + "1483070587", + "1483070620", + "1483070587", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972326", + "972326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070610", + "1483070610", + "1483070672", + "1483070610", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972344", + "972344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070673", + "1483070673", + "1483070748", + "1483070673", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972395", + "972395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070822", + "1483070822", + "1483070942", + "1483070822", + "1", + "8", + "0", + "-1", + "120", + "0", + "960", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972399", + "972399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070826", + "1483070826", + "1483070878", + "1483070826", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972483", + "972483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071022", + "1483071022", + "1483071056", + "1483071022", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972487", + "972487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071024", + "1483071024", + "1483071114", + "1483071024", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972555", + "972555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071179", + "1483071179", + "1483071217", + "1483071179", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972576", + "972576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071214", + "1483071214", + "1483071254", + "1483071214", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972580", + "972580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071217", + "1483071217", + "1483071248", + "1483071217", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972587", + "972587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071224", + "1483071224", + "1483071265", + "1483071224", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972589", + "972589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071249", + "1483071249", + "1483071285", + "1483071249", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972591", + "972591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071255", + "1483071255", + "1483071305", + "1483071255", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972603", + "972603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071298", + "1483071298", + "1483071329", + "1483071298", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972617", + "972617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071330", + "1483071330", + "1483071362", + "1483071330", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972621", + "972621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071339", + "1483071339", + "1483071406", + "1483071339", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972625", + "972625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071363", + "1483071363", + "1483071420", + "1483071363", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972637", + "972637", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071419", + "1483071419", + "1483071478", + "1483071419", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972671", + "972671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071503", + "1483071503", + "1483071562", + "1483071503", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972675", + "972675", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071506", + "1483071506", + "1483071560", + "1483071506", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972693", + "972693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071561", + "1483071561", + "1483071593", + "1483071561", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972697", + "972697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071566", + "1483071566", + "1483071611", + "1483071566", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972718", + "972718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071617", + "1483071617", + "1483071697", + "1483071617", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972728", + "972728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071660", + "1483071660", + "1483071736", + "1483071660", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972736", + "972736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071696", + "1483071696", + "1483071766", + "1483071696", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972740", + "972740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071710", + "1483071710", + "1483071834", + "1483071710", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972742", + "972742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071723", + "1483071723", + "1483071837", + "1483071723", + "1", + "8", + "0", + "-1", + "114", + "0", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972746", + "972746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071765", + "1483071765", + "1483071841", + "1483071765", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972750", + "972750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071771", + "1483071771", + "1483071837", + "1483071771", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972752", + "972752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071808", + "1483071808", + "1483071890", + "1483071808", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972758", + "972758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071838", + "1483071838", + "1483071914", + "1483071838", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972769", + "972769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071891", + "1483071891", + "1483071933", + "1483071891", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972771", + "972771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071915", + "1483071915", + "1483071956", + "1483071915", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972773", + "972773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071918", + "1483071918", + "1483071969", + "1483071918", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972777", + "972777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071934", + "1483071934", + "1483071967", + "1483071934", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972783", + "972783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071957", + "1483071957", + "1483072001", + "1483071957", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972789", + "972789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071968", + "1483071968", + "1483072008", + "1483071968", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972795", + "972795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071986", + "1483071986", + "1483072020", + "1483071986", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972797", + "972797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071991", + "1483071991", + "1483072033", + "1483071991", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972799", + "972799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072002", + "1483072002", + "1483072061", + "1483072002", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972802", + "972802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072002", + "1483072002", + "1483072071", + "1483072002", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972804", + "972804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072009", + "1483072009", + "1483072133", + "1483072009", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972834", + "972834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072134", + "1483072134", + "1483072184", + "1483072134", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972838", + "972838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072140", + "1483072140", + "1483072190", + "1483072140", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972851", + "972851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072174", + "1483072174", + "1483072223", + "1483072174", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972862", + "972862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072221", + "1483072221", + "1483072256", + "1483072221", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972874", + "972874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072257", + "1483072257", + "1483072320", + "1483072257", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972876", + "972876", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072260", + "1483072260", + "1483072321", + "1483072260", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972880", + "972880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072278", + "1483072278", + "1483072308", + "1483072278", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972888", + "972888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072309", + "1483072309", + "1483072350", + "1483072309", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972896", + "972896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072321", + "1483072321", + "1483072367", + "1483072321", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972900", + "972900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072351", + "1483072351", + "1483072408", + "1483072351", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972904", + "972904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072354", + "1483072354", + "1483072396", + "1483072354", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972906", + "972906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072368", + "1483072368", + "1483072404", + "1483072368", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972908", + "972908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072377", + "1483072377", + "1483072415", + "1483072377", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972914", + "972914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072405", + "1483072405", + "1483072456", + "1483072405", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972920", + "972920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072415", + "1483072415", + "1483072462", + "1483072415", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972926", + "972926", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072449", + "1483072449", + "1483072482", + "1483072449", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972932", + "972932", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072457", + "1483072457", + "1483072499", + "1483072457", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972938", + "972938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072472", + "1483072472", + "1483072513", + "1483072472", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972946", + "972946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072500", + "1483072500", + "1483072568", + "1483072500", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972961", + "972961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072549", + "1483072549", + "1483072597", + "1483072549", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972965", + "972965", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072554", + "1483072554", + "1483072587", + "1483072554", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972969", + "972969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072569", + "1483072569", + "1483072602", + "1483072569", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972975", + "972975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072588", + "1483072588", + "1483072628", + "1483072588", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972981", + "972981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072597", + "1483072597", + "1483072641", + "1483072597", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972985", + "972985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072603", + "1483072603", + "1483072735", + "1483072603", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972987", + "972987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072606", + "1483072606", + "1483072641", + "1483072606", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972989", + "972989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072609", + "1483072609", + "1483072678", + "1483072609", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972993", + "972993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072629", + "1483072629", + "1483072667", + "1483072629", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972998", + "972998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072642", + "1483072642", + "1483072677", + "1483072642", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973008", + "973008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072681", + "1483072681", + "1483072715", + "1483072681", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973020", + "973020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072721", + "1483072721", + "1483072762", + "1483072721", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973022", + "973022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072727", + "1483072727", + "1483072766", + "1483072727", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973030", + "973030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072737", + "1483072737", + "1483072870", + "1483072737", + "1", + "8", + "0", + "-1", + "133", + "0", + "1064", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973060", + "973060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072871", + "1483072871", + "1483072902", + "1483072871", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973066", + "973066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072894", + "1483072894", + "1483072934", + "1483072894", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973082", + "973082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072935", + "1483072935", + "1483073001", + "1483072935", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973088", + "973088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072956", + "1483072956", + "1483072995", + "1483072956", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973104", + "973104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073012", + "1483073012", + "1483073057", + "1483073012", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973115", + "973115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073051", + "1483073051", + "1483073091", + "1483073051", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973117", + "973117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073058", + "1483073058", + "1483073114", + "1483073058", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973123", + "973123", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073070", + "1483073070", + "1483073107", + "1483073070", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973156", + "973156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073163", + "1483073163", + "1483073196", + "1483073163", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973162", + "973162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073167", + "1483073167", + "1483073211", + "1483073167", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973174", + "973174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073212", + "1483073212", + "1483073257", + "1483073212", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973180", + "973180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073234", + "1483073234", + "1483073269", + "1483073234", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973182", + "973182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073248", + "1483073248", + "1483073279", + "1483073248", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973186", + "973186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073257", + "1483073257", + "1483073312", + "1483073257", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973194", + "973194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073280", + "1483073280", + "1483073314", + "1483073280", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973208", + "973208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073318", + "1483073318", + "1483073362", + "1483073318", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973216", + "973216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073341", + "1483073341", + "1483073415", + "1483073341", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973218", + "973218", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073358", + "1483073358", + "1483073405", + "1483073358", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973226", + "973226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073393", + "1483073393", + "1483073428", + "1483073393", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973236", + "973236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073416", + "1483073416", + "1483073471", + "1483073416", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973238", + "973238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073422", + "1483073422", + "1483073456", + "1483073422", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973240", + "973240", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073429", + "1483073429", + "1483073469", + "1483073429", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973244", + "973244", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073450", + "1483073450", + "1483073480", + "1483073450", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973248", + "973248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073465", + "1483073465", + "1483073509", + "1483073465", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973256", + "973256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073481", + "1483073481", + "1483073526", + "1483073481", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973258", + "973258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073481", + "1483073481", + "1483073618", + "1483073481", + "1", + "8", + "0", + "-1", + "137", + "0", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973260", + "973260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073493", + "1483073493", + "1483073542", + "1483073493", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973262", + "973262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073509", + "1483073509", + "1483073584", + "1483073509", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973290", + "973290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073624", + "1483073624", + "1483073660", + "1483073624", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973298", + "973298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073641", + "1483073641", + "1483073674", + "1483073641", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973311", + "973311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073675", + "1483073675", + "1483073707", + "1483073675", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973325", + "973325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073727", + "1483073727", + "1483073770", + "1483073727", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973327", + "973327", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073731", + "1483073731", + "1483073773", + "1483073731", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973329", + "973329", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073731", + "1483073731", + "1483073776", + "1483073731", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973353", + "973353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073800", + "1483073800", + "1483073837", + "1483073800", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973355", + "973355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073800", + "1483073800", + "1483073848", + "1483073800", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973359", + "973359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073808", + "1483073808", + "1483073842", + "1483073808", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973361", + "973361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073824", + "1483073824", + "1483073876", + "1483073824", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973363", + "973363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073838", + "1483073838", + "1483073890", + "1483073838", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973365", + "973365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073843", + "1483073843", + "1483073901", + "1483073843", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973367", + "973367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073848", + "1483073848", + "1483073878", + "1483073848", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973383", + "973383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073919", + "1483073919", + "1483073973", + "1483073919", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973392", + "973392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073957", + "1483073957", + "1483074049", + "1483073957", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973400", + "973400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073985", + "1483073985", + "1483074039", + "1483073985", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973408", + "973408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074040", + "1483074040", + "1483074070", + "1483074040", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973410", + "973410", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074046", + "1483074046", + "1483074081", + "1483074046", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973420", + "973420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074082", + "1483074082", + "1483074114", + "1483074082", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973426", + "973426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074109", + "1483074109", + "1483074150", + "1483074109", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973434", + "973434", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074132", + "1483074132", + "1483074174", + "1483074132", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973438", + "973438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074139", + "1483074139", + "1483074188", + "1483074139", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973440", + "973440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074151", + "1483074151", + "1483074280", + "1483074151", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973442", + "973442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074157", + "1483074157", + "1483074195", + "1483074157", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973446", + "973446", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074171", + "1483074171", + "1483074236", + "1483074171", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973450", + "973450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074189", + "1483074189", + "1483074230", + "1483074189", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973482", + "973482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074278", + "1483074278", + "1483074308", + "1483074278", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973526", + "973526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074382", + "1483074382", + "1483074417", + "1483074382", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973530", + "973530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074391", + "1483074391", + "1483074444", + "1483074391", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973534", + "973534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074409", + "1483074409", + "1483074440", + "1483074409", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973536", + "973536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074411", + "1483074411", + "1483074442", + "1483074411", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973553", + "973553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074455", + "1483074455", + "1483074493", + "1483074455", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973560", + "973560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074467", + "1483074467", + "1483074506", + "1483074467", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973580", + "973580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074507", + "1483074507", + "1483074568", + "1483074507", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973582", + "973582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074514", + "1483074514", + "1483074562", + "1483074514", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973586", + "973586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074543", + "1483074543", + "1483074573", + "1483074543", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973621", + "973621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074636", + "1483074636", + "1483074763", + "1483074636", + "1", + "8", + "0", + "-1", + "127", + "0", + "1016", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973633", + "973633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074672", + "1483074672", + "1483074707", + "1483074672", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973635", + "973635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074677", + "1483074677", + "1483074708", + "1483074677", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973653", + "973653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074751", + "1483074751", + "1483074782", + "1483074751", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973655", + "973655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074756", + "1483074756", + "1483074792", + "1483074756", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973667", + "973667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074783", + "1483074783", + "1483074871", + "1483074783", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973669", + "973669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074790", + "1483074790", + "1483074840", + "1483074790", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973673", + "973673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074793", + "1483074793", + "1483074853", + "1483074793", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973677", + "973677", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074841", + "1483074841", + "1483074876", + "1483074841", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973679", + "973679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074851", + "1483074851", + "1483074885", + "1483074851", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973681", + "973681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074853", + "1483074853", + "1483074902", + "1483074853", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973724", + "973724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074974", + "1483074974", + "1483075011", + "1483074974", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973726", + "973726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075012", + "1483075012", + "1483075076", + "1483075012", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973732", + "973732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075037", + "1483075037", + "1483075100", + "1483075037", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973738", + "973738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075067", + "1483075067", + "1483075112", + "1483075067", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973742", + "973742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075077", + "1483075077", + "1483075122", + "1483075077", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973748", + "973748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075105", + "1483075105", + "1483075161", + "1483075105", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973750", + "973750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075113", + "1483075113", + "1483075147", + "1483075113", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973766", + "973766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075162", + "1483075162", + "1483075294", + "1483075162", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973771", + "973771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075176", + "1483075176", + "1483075305", + "1483075176", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973783", + "973783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075239", + "1483075239", + "1483075374", + "1483075239", + "1", + "8", + "0", + "-1", + "135", + "0", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973787", + "973787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075295", + "1483075295", + "1483075423", + "1483075295", + "1", + "8", + "0", + "-1", + "128", + "0", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973803", + "973803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075374", + "1483075374", + "1483075630", + "1483075374", + "1", + "8", + "0", + "-1", + "256", + "0", + "2048", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973823", + "973823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075526", + "1483075526", + "1483075569", + "1483075526", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973827", + "973827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075548", + "1483075548", + "1483075608", + "1483075548", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973833", + "973833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075570", + "1483075570", + "1483075610", + "1483075570", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973835", + "973835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075578", + "1483075578", + "1483075618", + "1483075578", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973837", + "973837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075593", + "1483075593", + "1483075635", + "1483075593", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973843", + "973843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075609", + "1483075609", + "1483075672", + "1483075609", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973849", + "973849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075619", + "1483075619", + "1483075760", + "1483075619", + "1", + "8", + "0", + "-1", + "141", + "0", + "1128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973851", + "973851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075630", + "1483075630", + "1483075685", + "1483075630", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973853", + "973853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075636", + "1483075636", + "1483075708", + "1483075636", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973855", + "973855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075653", + "1483075653", + "1483075727", + "1483075653", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973863", + "973863", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075686", + "1483075686", + "1483075756", + "1483075686", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973867", + "973867", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075708", + "1483075708", + "1483075739", + "1483075708", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973869", + "973869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075719", + "1483075719", + "1483075793", + "1483075719", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973871", + "973871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075728", + "1483075728", + "1483075766", + "1483075728", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973907", + "973907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075868", + "1483075868", + "1483075935", + "1483075868", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973915", + "973915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075910", + "1483075910", + "1483075954", + "1483075910", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973917", + "973917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075936", + "1483075936", + "1483076008", + "1483075936", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973923", + "973923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075947", + "1483075947", + "1483076017", + "1483075947", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973925", + "973925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075955", + "1483075955", + "1483075994", + "1483075955", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973929", + "973929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075995", + "1483075995", + "1483076034", + "1483075995", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973931", + "973931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076003", + "1483076003", + "1483076062", + "1483076003", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973933", + "973933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076006", + "1483076006", + "1483076037", + "1483076006", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973935", + "973935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076009", + "1483076009", + "1483076073", + "1483076009", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973937", + "973937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076013", + "1483076013", + "1483076103", + "1483076013", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973939", + "973939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076018", + "1483076018", + "1483076108", + "1483076018", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973943", + "973943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076034", + "1483076034", + "1483076103", + "1483076034", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973945", + "973945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076038", + "1483076038", + "1483076132", + "1483076038", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973953", + "973953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076104", + "1483076104", + "1483076154", + "1483076104", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973963", + "973963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076132", + "1483076132", + "1483076187", + "1483076132", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973981", + "973981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076169", + "1483076169", + "1483076230", + "1483076169", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973991", + "973991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076188", + "1483076188", + "1483076256", + "1483076188", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973999", + "973999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076239", + "1483076239", + "1483076275", + "1483076239", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974001", + "974001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076242", + "1483076242", + "1483076293", + "1483076242", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974005", + "974005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076257", + "1483076257", + "1483076299", + "1483076257", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974013", + "974013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076280", + "1483076280", + "1483076322", + "1483076280", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974015", + "974015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076294", + "1483076294", + "1483076338", + "1483076294", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974028", + "974028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076324", + "1483076324", + "1483076368", + "1483076324", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974030", + "974030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076331", + "1483076331", + "1483076389", + "1483076331", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974036", + "974036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076349", + "1483076349", + "1483076384", + "1483076349", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974038", + "974038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076354", + "1483076354", + "1483076426", + "1483076354", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974040", + "974040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076369", + "1483076369", + "1483076401", + "1483076369", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974046", + "974046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076390", + "1483076390", + "1483076423", + "1483076390", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974048", + "974048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076390", + "1483076390", + "1483076427", + "1483076390", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974052", + "974052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076402", + "1483076402", + "1483076445", + "1483076402", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974068", + "974068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076473", + "1483076473", + "1483076503", + "1483076473", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974076", + "974076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076499", + "1483076499", + "1483076567", + "1483076499", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974090", + "974090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076554", + "1483076554", + "1483076587", + "1483076554", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974098", + "974098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076588", + "1483076588", + "1483076638", + "1483076588", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974102", + "974102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076596", + "1483076596", + "1483076638", + "1483076596", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974106", + "974106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076606", + "1483076606", + "1483076660", + "1483076606", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974117", + "974117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076651", + "1483076651", + "1483076713", + "1483076651", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974119", + "974119", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076657", + "1483076657", + "1483076704", + "1483076657", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974121", + "974121", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076661", + "1483076661", + "1483076730", + "1483076661", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974123", + "974123", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076665", + "1483076665", + "1483076802", + "1483076665", + "1", + "8", + "0", + "-1", + "137", + "0", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974129", + "974129", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076705", + "1483076705", + "1483076746", + "1483076705", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974131", + "974131", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076714", + "1483076714", + "1483076745", + "1483076714", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974137", + "974137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076742", + "1483076742", + "1483076780", + "1483076742", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974139", + "974139", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076746", + "1483076746", + "1483076788", + "1483076746", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974143", + "974143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076760", + "1483076760", + "1483076810", + "1483076760", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974192", + "974192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076913", + "1483076913", + "1483076943", + "1483076913", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974217", + "974217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076966", + "1483076966", + "1483077029", + "1483076966", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974225", + "974225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076998", + "1483076998", + "1483077031", + "1483076998", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974229", + "974229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077011", + "1483077011", + "1483077054", + "1483077011", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974233", + "974233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077028", + "1483077028", + "1483077087", + "1483077028", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974251", + "974251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077088", + "1483077088", + "1483077133", + "1483077088", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974253", + "974253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077091", + "1483077091", + "1483077158", + "1483077091", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974256", + "974256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077091", + "1483077091", + "1483077154", + "1483077091", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974258", + "974258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077094", + "1483077094", + "1483077237", + "1483077094", + "1", + "8", + "0", + "-1", + "143", + "0", + "1144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974274", + "974274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077186", + "1483077186", + "1483077216", + "1483077186", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974296", + "974296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077270", + "1483077270", + "1483077320", + "1483077270", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974302", + "974302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077279", + "1483077279", + "1483077347", + "1483077279", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974312", + "974312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077329", + "1483077329", + "1483077360", + "1483077329", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974314", + "974314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077336", + "1483077336", + "1483077366", + "1483077336", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974320", + "974320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077361", + "1483077361", + "1483077392", + "1483077361", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974322", + "974322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077367", + "1483077367", + "1483077413", + "1483077367", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974324", + "974324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077371", + "1483077371", + "1483077415", + "1483077371", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974326", + "974326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077375", + "1483077375", + "1483077434", + "1483077375", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974328", + "974328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077379", + "1483077379", + "1483077415", + "1483077379", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974330", + "974330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077393", + "1483077393", + "1483077452", + "1483077393", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974336", + "974336", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077416", + "1483077416", + "1483077450", + "1483077416", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974340", + "974340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077425", + "1483077425", + "1483077465", + "1483077425", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974342", + "974342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077435", + "1483077435", + "1483077484", + "1483077435", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974344", + "974344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077444", + "1483077444", + "1483077480", + "1483077444", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974353", + "974353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077453", + "1483077453", + "1483077515", + "1483077453", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974355", + "974355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077465", + "1483077465", + "1483077522", + "1483077465", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974381", + "974381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077551", + "1483077551", + "1483077584", + "1483077551", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974389", + "974389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077579", + "1483077579", + "1483077634", + "1483077579", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974395", + "974395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077599", + "1483077599", + "1483077741", + "1483077599", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974401", + "974401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077635", + "1483077635", + "1483077684", + "1483077635", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974403", + "974403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077654", + "1483077654", + "1483077725", + "1483077654", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974407", + "974407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077658", + "1483077658", + "1483077698", + "1483077658", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974409", + "974409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077664", + "1483077664", + "1483077717", + "1483077664", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974411", + "974411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077685", + "1483077685", + "1483077747", + "1483077685", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974417", + "974417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077718", + "1483077718", + "1483077767", + "1483077718", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974421", + "974421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077726", + "1483077726", + "1483077792", + "1483077726", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974425", + "974425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077732", + "1483077732", + "1483077802", + "1483077732", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974427", + "974427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077742", + "1483077742", + "1483077805", + "1483077742", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974431", + "974431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077757", + "1483077757", + "1483077818", + "1483077757", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974437", + "974437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077793", + "1483077793", + "1483077874", + "1483077793", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974441", + "974441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077806", + "1483077806", + "1483077990", + "1483077806", + "1", + "8", + "0", + "-1", + "184", + "0", + "1472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974448", + "974448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077819", + "1483077819", + "1483077850", + "1483077819", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974450", + "974450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077831", + "1483077831", + "1483077879", + "1483077831", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974460", + "974460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077880", + "1483077880", + "1483077933", + "1483077880", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974481", + "974481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077949", + "1483077949", + "1483078007", + "1483077949", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974487", + "974487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077974", + "1483077974", + "1483078015", + "1483077974", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974503", + "974503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078021", + "1483078021", + "1483078059", + "1483078021", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974513", + "974513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078060", + "1483078060", + "1483078110", + "1483078060", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974527", + "974527", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078096", + "1483078096", + "1483078141", + "1483078096", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974531", + "974531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078109", + "1483078109", + "1483078209", + "1483078109", + "1", + "8", + "0", + "-1", + "100", + "0", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974537", + "974537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078130", + "1483078130", + "1483078181", + "1483078130", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974539", + "974539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078142", + "1483078142", + "1483078177", + "1483078142", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974545", + "974545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078158", + "1483078158", + "1483078192", + "1483078158", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974549", + "974549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078177", + "1483078177", + "1483078212", + "1483078177", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974555", + "974555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078186", + "1483078186", + "1483078216", + "1483078186", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974557", + "974557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078193", + "1483078193", + "1483078229", + "1483078193", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974571", + "974571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078230", + "1483078230", + "1483078273", + "1483078230", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974577", + "974577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078245", + "1483078245", + "1483078367", + "1483078245", + "1", + "8", + "0", + "-1", + "122", + "0", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974581", + "974581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078250", + "1483078250", + "1483078283", + "1483078250", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974583", + "974583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078251", + "1483078251", + "1483078302", + "1483078251", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974587", + "974587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078272", + "1483078272", + "1483078309", + "1483078272", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974622", + "974622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078352", + "1483078352", + "1483078478", + "1483078352", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974626", + "974626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078366", + "1483078366", + "1483078399", + "1483078366", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974664", + "974664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078458", + "1483078458", + "1483078497", + "1483078458", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974667", + "974667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078458", + "1483078458", + "1483078530", + "1483078458", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974673", + "974673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078479", + "1483078479", + "1483078531", + "1483078479", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974681", + "974681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078519", + "1483078519", + "1483078550", + "1483078519", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974683", + "974683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078522", + "1483078522", + "1483078555", + "1483078522", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974689", + "974689", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078532", + "1483078532", + "1483078566", + "1483078532", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974715", + "974715", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078611", + "1483078611", + "1483078666", + "1483078611", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974741", + "974741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078719", + "1483078719", + "1483078784", + "1483078719", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974743", + "974743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078724", + "1483078724", + "1483078789", + "1483078724", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974745", + "974745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078738", + "1483078738", + "1483078768", + "1483078738", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974757", + "974757", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078774", + "1483078774", + "1483078853", + "1483078774", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974759", + "974759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078785", + "1483078785", + "1483078959", + "1483078785", + "1", + "8", + "0", + "-1", + "174", + "0", + "1392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974767", + "974767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078817", + "1483078817", + "1483078872", + "1483078817", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974771", + "974771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078846", + "1483078846", + "1483078891", + "1483078846", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974773", + "974773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078854", + "1483078854", + "1483078923", + "1483078854", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974775", + "974775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078854", + "1483078854", + "1483078917", + "1483078854", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974786", + "974786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078918", + "1483078918", + "1483078972", + "1483078918", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974788", + "974788", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078924", + "1483078924", + "1483078972", + "1483078924", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974790", + "974790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078933", + "1483078933", + "1483078997", + "1483078933", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974823", + "974823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079093", + "1483079093", + "1483079235", + "1483079093", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974841", + "974841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079236", + "1483079236", + "1483079305", + "1483079236", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974847", + "974847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079273", + "1483079273", + "1483079437", + "1483079273", + "1", + "8", + "0", + "-1", + "164", + "0", + "1312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974851", + "974851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079286", + "1483079286", + "1483079391", + "1483079286", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974855", + "974855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079292", + "1483079292", + "1483079468", + "1483079292", + "1", + "8", + "0", + "-1", + "176", + "0", + "1408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974857", + "974857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079296", + "1483079296", + "1483079340", + "1483079296", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974861", + "974861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079306", + "1483079306", + "1483079367", + "1483079306", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974863", + "974863", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079341", + "1483079341", + "1483079397", + "1483079341", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974865", + "974865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079345", + "1483079345", + "1483079390", + "1483079345", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974867", + "974867", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079368", + "1483079368", + "1483079412", + "1483079368", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974869", + "974869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079391", + "1483079391", + "1483079442", + "1483079391", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974873", + "974873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079398", + "1483079398", + "1483079444", + "1483079398", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974915", + "974915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079568", + "1483079568", + "1483079607", + "1483079568", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974921", + "974921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079608", + "1483079608", + "1483079686", + "1483079608", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974931", + "974931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079663", + "1483079663", + "1483079703", + "1483079663", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974939", + "974939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079691", + "1483079691", + "1483079787", + "1483079691", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974941", + "974941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079703", + "1483079703", + "1483079872", + "1483079703", + "1", + "8", + "0", + "-1", + "169", + "0", + "1352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974945", + "974945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079715", + "1483079715", + "1483079776", + "1483079715", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974949", + "974949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079745", + "1483079745", + "1483079817", + "1483079745", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974953", + "974953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079773", + "1483079773", + "1483079845", + "1483079773", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974955", + "974955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079776", + "1483079776", + "1483079848", + "1483079776", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974957", + "974957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079788", + "1483079788", + "1483079831", + "1483079788", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974963", + "974963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079818", + "1483079818", + "1483079895", + "1483079818", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974983", + "974983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079920", + "1483079920", + "1483080020", + "1483079920", + "1", + "8", + "0", + "-1", + "100", + "0", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974987", + "974987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079926", + "1483079926", + "1483080095", + "1483079926", + "1", + "8", + "0", + "-1", + "169", + "0", + "1352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974997", + "974997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080011", + "1483080011", + "1483080041", + "1483080011", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975007", + "975007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080041", + "1483080041", + "1483080088", + "1483080041", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975011", + "975011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080049", + "1483080049", + "1483080096", + "1483080049", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975030", + "975030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080110", + "1483080110", + "1483080151", + "1483080110", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975034", + "975034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080113", + "1483080113", + "1483080154", + "1483080113", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975036", + "975036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080120", + "1483080120", + "1483080179", + "1483080120", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975054", + "975054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080187", + "1483080187", + "1483080224", + "1483080187", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975056", + "975056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080190", + "1483080190", + "1483080224", + "1483080190", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975058", + "975058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080198", + "1483080198", + "1483080238", + "1483080198", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975094", + "975094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080304", + "1483080304", + "1483080336", + "1483080304", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975120", + "975120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080388", + "1483080388", + "1483080428", + "1483080388", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975122", + "975122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080392", + "1483080392", + "1483080437", + "1483080392", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975127", + "975127", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080399", + "1483080399", + "1483080439", + "1483080399", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975129", + "975129", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080406", + "1483080406", + "1483080440", + "1483080406", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975135", + "975135", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080429", + "1483080429", + "1483080463", + "1483080429", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975145", + "975145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080441", + "1483080441", + "1483080488", + "1483080441", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975170", + "975170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080510", + "1483080510", + "1483080548", + "1483080510", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975174", + "975174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080519", + "1483080519", + "1483080550", + "1483080519", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975178", + "975178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080538", + "1483080538", + "1483080571", + "1483080538", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975180", + "975180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080547", + "1483080547", + "1483080578", + "1483080547", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975215", + "975215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080631", + "1483080631", + "1483080667", + "1483080631", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975258", + "975258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080742", + "1483080742", + "1483080858", + "1483080742", + "1", + "8", + "0", + "-1", + "116", + "0", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975268", + "975268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080764", + "1483080764", + "1483080800", + "1483080764", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975270", + "975270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080772", + "1483080772", + "1483080819", + "1483080772", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975278", + "975278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080801", + "1483080801", + "1483080846", + "1483080801", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975280", + "975280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080803", + "1483080803", + "1483080842", + "1483080803", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975282", + "975282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080804", + "1483080804", + "1483080844", + "1483080804", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975298", + "975298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080865", + "1483080865", + "1483080904", + "1483080865", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975304", + "975304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080868", + "1483080868", + "1483081000", + "1483080868", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975306", + "975306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080871", + "1483080871", + "1483080915", + "1483080871", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975308", + "975308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080881", + "1483080881", + "1483080925", + "1483080881", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975312", + "975312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080904", + "1483080904", + "1483080939", + "1483080904", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975322", + "975322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080940", + "1483080940", + "1483080974", + "1483080940", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975332", + "975332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080974", + "1483080974", + "1483081007", + "1483080974", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975351", + "975351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081009", + "1483081009", + "1483081049", + "1483081009", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975353", + "975353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081019", + "1483081019", + "1483081052", + "1483081019", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975357", + "975357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081041", + "1483081041", + "1483081080", + "1483081041", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975393", + "975393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081139", + "1483081139", + "1483081186", + "1483081139", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975395", + "975395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081144", + "1483081144", + "1483081279", + "1483081144", + "1", + "8", + "0", + "-1", + "135", + "0", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975399", + "975399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081147", + "1483081147", + "1483081184", + "1483081147", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975415", + "975415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081216", + "1483081216", + "1483081246", + "1483081216", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975423", + "975423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081237", + "1483081237", + "1483081269", + "1483081237", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975431", + "975431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081270", + "1483081270", + "1483081301", + "1483081270", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975436", + "975436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081270", + "1483081270", + "1483081325", + "1483081270", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975438", + "975438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081271", + "1483081271", + "1483081319", + "1483081271", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975442", + "975442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081280", + "1483081280", + "1483081324", + "1483081280", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975444", + "975444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081293", + "1483081293", + "1483081345", + "1483081293", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975446", + "975446", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081301", + "1483081301", + "1483081336", + "1483081301", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975450", + "975450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081320", + "1483081320", + "1483081379", + "1483081320", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975466", + "975466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081388", + "1483081388", + "1483081444", + "1483081388", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975468", + "975468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081389", + "1483081389", + "1483081445", + "1483081389", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975482", + "975482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081446", + "1483081446", + "1483081537", + "1483081446", + "1", + "8", + "0", + "-1", + "91", + "0", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975484", + "975484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081449", + "1483081449", + "1483081543", + "1483081449", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975513", + "975513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081568", + "1483081568", + "1483081601", + "1483081568", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975519", + "975519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081591", + "1483081591", + "1483081621", + "1483081591", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975527", + "975527", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081606", + "1483081606", + "1483081647", + "1483081606", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975529", + "975529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081621", + "1483081621", + "1483081667", + "1483081621", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975535", + "975535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081629", + "1483081629", + "1483081686", + "1483081629", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975537", + "975537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081638", + "1483081638", + "1483081671", + "1483081638", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975586", + "975586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081783", + "1483081783", + "1483081815", + "1483081783", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975624", + "975624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081878", + "1483081878", + "1483081912", + "1483081878", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975628", + "975628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081886", + "1483081886", + "1483081917", + "1483081886", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975630", + "975630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081897", + "1483081897", + "1483081934", + "1483081897", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975632", + "975632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081910", + "1483081910", + "1483081941", + "1483081910", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975664", + "975664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081990", + "1483081990", + "1483082027", + "1483081990", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975670", + "975670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081996", + "1483081996", + "1483082028", + "1483081996", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975672", + "975672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081998", + "1483081998", + "1483082045", + "1483081998", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975678", + "975678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082027", + "1483082027", + "1483082061", + "1483082027", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975682", + "975682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082029", + "1483082029", + "1483082059", + "1483082029", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975692", + "975692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082061", + "1483082061", + "1483082100", + "1483082061", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975722", + "975722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082128", + "1483082128", + "1483082165", + "1483082128", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975726", + "975726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082142", + "1483082142", + "1483082185", + "1483082142", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975742", + "975742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082201", + "1483082201", + "1483082255", + "1483082201", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975754", + "975754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082237", + "1483082237", + "1483082279", + "1483082237", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975756", + "975756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082240", + "1483082240", + "1483082297", + "1483082240", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975758", + "975758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082244", + "1483082244", + "1483082279", + "1483082244", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975760", + "975760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082256", + "1483082256", + "1483082346", + "1483082256", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975769", + "975769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082280", + "1483082280", + "1483082319", + "1483082280", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975781", + "975781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082345", + "1483082345", + "1483082411", + "1483082345", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975785", + "975785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082348", + "1483082348", + "1483082387", + "1483082348", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975790", + "975790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082351", + "1483082351", + "1483082381", + "1483082351", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975794", + "975794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082382", + "1483082382", + "1483082414", + "1483082382", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975804", + "975804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082398", + "1483082398", + "1483082528", + "1483082398", + "1", + "8", + "0", + "-1", + "130", + "0", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975824", + "975824", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082465", + "1483082465", + "1483082498", + "1483082465", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975828", + "975828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082493", + "1483082493", + "1483082535", + "1483082493", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975830", + "975830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082498", + "1483082498", + "1483082541", + "1483082498", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975854", + "975854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082583", + "1483082583", + "1483082652", + "1483082583", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975858", + "975858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082597", + "1483082597", + "1483082724", + "1483082597", + "1", + "8", + "0", + "-1", + "127", + "0", + "1016", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975864", + "975864", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082629", + "1483082629", + "1483082753", + "1483082629", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975868", + "975868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082653", + "1483082653", + "1483082724", + "1483082653", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975872", + "975872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082722", + "1483082722", + "1483082855", + "1483082722", + "1", + "8", + "0", + "-1", + "133", + "0", + "1064", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975874", + "975874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082725", + "1483082725", + "1483082837", + "1483082725", + "1", + "8", + "0", + "-1", + "112", + "0", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975879", + "975879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082750", + "1483082750", + "1483082831", + "1483082750", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975881", + "975881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082754", + "1483082754", + "1483082825", + "1483082754", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975883", + "975883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082754", + "1483082754", + "1483082867", + "1483082754", + "1", + "8", + "0", + "-1", + "113", + "0", + "904", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975889", + "975889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082801", + "1483082801", + "1483082944", + "1483082801", + "1", + "8", + "0", + "-1", + "143", + "0", + "1144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975891", + "975891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082826", + "1483082826", + "1483082981", + "1483082826", + "1", + "8", + "0", + "-1", + "155", + "0", + "1240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975893", + "975893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082832", + "1483082832", + "1483082984", + "1483082832", + "1", + "8", + "0", + "-1", + "152", + "0", + "1216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975915", + "975915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082945", + "1483082945", + "1483083003", + "1483082945", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975917", + "975917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082955", + "1483082955", + "1483083022", + "1483082955", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975927", + "975927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082985", + "1483082985", + "1483083025", + "1483082985", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975933", + "975933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083004", + "1483083004", + "1483083053", + "1483083004", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975937", + "975937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083023", + "1483083023", + "1483083080", + "1483083023", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975939", + "975939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083024", + "1483083024", + "1483083100", + "1483083024", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975955", + "975955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083102", + "1483083102", + "1483083141", + "1483083102", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975979", + "975979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083175", + "1483083175", + "1483083210", + "1483083175", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975982", + "975982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083176", + "1483083176", + "1483083254", + "1483083176", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975986", + "975986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083189", + "1483083189", + "1483083350", + "1483083189", + "1", + "8", + "0", + "-1", + "161", + "0", + "1288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975992", + "975992", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083211", + "1483083211", + "1483083259", + "1483083211", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976006", + "976006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083260", + "1483083260", + "1483083301", + "1483083260", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976008", + "976008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083283", + "1483083283", + "1483083350", + "1483083283", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976012", + "976012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083302", + "1483083302", + "1483083364", + "1483083302", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976016", + "976016", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083308", + "1483083308", + "1483083343", + "1483083308", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976027", + "976027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083358", + "1483083358", + "1483083442", + "1483083358", + "1", + "8", + "0", + "-1", + "84", + "0", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976035", + "976035", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083382", + "1483083382", + "1483083443", + "1483083382", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976037", + "976037", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083387", + "1483083387", + "1483083427", + "1483083387", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976041", + "976041", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083428", + "1483083428", + "1483083461", + "1483083428", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976079", + "976079", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083496", + "1483083496", + "1483083540", + "1483083496", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976081", + "976081", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083501", + "1483083501", + "1483083559", + "1483083501", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976083", + "976083", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083512", + "1483083512", + "1483083548", + "1483083512", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976168", + "976168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083693", + "1483083693", + "1483083725", + "1483083693", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976180", + "976180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083725", + "1483083725", + "1483083756", + "1483083725", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976182", + "976182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083726", + "1483083726", + "1483083769", + "1483083726", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976198", + "976198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083760", + "1483083760", + "1483083841", + "1483083760", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976202", + "976202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083763", + "1483083763", + "1483083798", + "1483083763", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976306", + "976306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083976", + "1483083976", + "1483084042", + "1483083976", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976310", + "976310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083982", + "1483083982", + "1483084044", + "1483083982", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976312", + "976312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083995", + "1483083995", + "1483084053", + "1483083995", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976342", + "976342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084071", + "1483084071", + "1483084105", + "1483084071", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976346", + "976346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084083", + "1483084083", + "1483084129", + "1483084083", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976375", + "976375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084157", + "1483084157", + "1483084193", + "1483084157", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976391", + "976391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084189", + "1483084189", + "1483084220", + "1483084189", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976413", + "976413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084249", + "1483084249", + "1483084289", + "1483084249", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976419", + "976419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084260", + "1483084260", + "1483084306", + "1483084260", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976423", + "976423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084288", + "1483084288", + "1483084385", + "1483084288", + "1", + "8", + "0", + "-1", + "97", + "0", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976427", + "976427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084307", + "1483084307", + "1483084376", + "1483084307", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976449", + "976449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084395", + "1483084395", + "1483084428", + "1483084395", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976467", + "976467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084445", + "1483084445", + "1483084521", + "1483084445", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976505", + "976505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084534", + "1483084534", + "1483084590", + "1483084534", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976521", + "976521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084572", + "1483084572", + "1483084627", + "1483084572", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976523", + "976523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084576", + "1483084576", + "1483084610", + "1483084576", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976525", + "976525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084576", + "1483084576", + "1483084606", + "1483084576", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976533", + "976533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084596", + "1483084596", + "1483084628", + "1483084596", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976537", + "976537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084611", + "1483084611", + "1483084652", + "1483084611", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976543", + "976543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084628", + "1483084628", + "1483084665", + "1483084628", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976547", + "976547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084636", + "1483084636", + "1483084779", + "1483084636", + "1", + "8", + "0", + "-1", + "143", + "0", + "1144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976549", + "976549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084653", + "1483084653", + "1483084695", + "1483084653", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976553", + "976553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084666", + "1483084666", + "1483084705", + "1483084666", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976559", + "976559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084696", + "1483084696", + "1483084747", + "1483084696", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976561", + "976561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084703", + "1483084703", + "1483084745", + "1483084703", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976567", + "976567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084739", + "1483084739", + "1483084831", + "1483084739", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976569", + "976569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084746", + "1483084746", + "1483084869", + "1483084746", + "1", + "8", + "0", + "-1", + "123", + "0", + "984", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976573", + "976573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084779", + "1483084779", + "1483084843", + "1483084779", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976575", + "976575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084783", + "1483084783", + "1483084842", + "1483084783", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976581", + "976581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084842", + "1483084842", + "1483084915", + "1483084842", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976583", + "976583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084843", + "1483084843", + "1483084883", + "1483084843", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976621", + "976621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084960", + "1483084960", + "1483084992", + "1483084960", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976664", + "976664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085066", + "1483085066", + "1483085096", + "1483085066", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976670", + "976670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085074", + "1483085074", + "1483085132", + "1483085074", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976672", + "976672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085087", + "1483085087", + "1483085127", + "1483085087", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976740", + "976740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085269", + "1483085269", + "1483085302", + "1483085269", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976754", + "976754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085301", + "1483085301", + "1483085339", + "1483085301", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976758", + "976758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085304", + "1483085304", + "1483085364", + "1483085304", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976807", + "976807", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085427", + "1483085427", + "1483085461", + "1483085427", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976809", + "976809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085430", + "1483085430", + "1483085468", + "1483085430", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976888", + "976888", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085609", + "1483085609", + "1483085654", + "1483085609", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976892", + "976892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085625", + "1483085625", + "1483085657", + "1483085625", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976898", + "976898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085650", + "1483085650", + "1483085701", + "1483085650", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976927", + "976927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085708", + "1483085708", + "1483085755", + "1483085708", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976929", + "976929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085711", + "1483085711", + "1483085749", + "1483085711", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976937", + "976937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085725", + "1483085725", + "1483085759", + "1483085725", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976939", + "976939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085736", + "1483085736", + "1483085768", + "1483085736", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976941", + "976941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085750", + "1483085750", + "1483085819", + "1483085750", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976943", + "976943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085752", + "1483085752", + "1483085794", + "1483085752", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976947", + "976947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085755", + "1483085755", + "1483085792", + "1483085755", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976981", + "976981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085840", + "1483085840", + "1483085893", + "1483085840", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976987", + "976987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085850", + "1483085850", + "1483085928", + "1483085850", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976991", + "976991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085869", + "1483085869", + "1483085909", + "1483085869", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976995", + "976995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085881", + "1483085881", + "1483085918", + "1483085881", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977005", + "977005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085912", + "1483085912", + "1483085954", + "1483085912", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977015", + "977015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085935", + "1483085935", + "1483085968", + "1483085935", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977034", + "977034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085978", + "1483085978", + "1483086016", + "1483085978", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977040", + "977040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085989", + "1483085989", + "1483086056", + "1483085989", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977044", + "977044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086017", + "1483086017", + "1483086083", + "1483086017", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977046", + "977046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086025", + "1483086025", + "1483086084", + "1483086025", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977048", + "977048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086032", + "1483086032", + "1483086075", + "1483086032", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977052", + "977052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086045", + "1483086045", + "1483086111", + "1483086045", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977062", + "977062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086084", + "1483086084", + "1483086148", + "1483086084", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977066", + "977066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086096", + "1483086096", + "1483086144", + "1483086096", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977068", + "977068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086111", + "1483086111", + "1483086159", + "1483086111", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977070", + "977070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086138", + "1483086138", + "1483086188", + "1483086138", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977072", + "977072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086142", + "1483086142", + "1483086228", + "1483086142", + "1", + "8", + "0", + "-1", + "86", + "0", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977122", + "977122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086309", + "1483086309", + "1483086383", + "1483086309", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977126", + "977126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086328", + "1483086328", + "1483086393", + "1483086328", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977128", + "977128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086333", + "1483086333", + "1483086365", + "1483086333", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977159", + "977159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086395", + "1483086395", + "1483086426", + "1483086395", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977165", + "977165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086413", + "1483086413", + "1483086443", + "1483086413", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977167", + "977167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086413", + "1483086413", + "1483086502", + "1483086413", + "1", + "8", + "0", + "-1", + "89", + "0", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977190", + "977190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086474", + "1483086474", + "1483086505", + "1483086474", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977211", + "977211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086514", + "1483086514", + "1483086607", + "1483086514", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977304", + "977304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086699", + "1483086699", + "1483086737", + "1483086699", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977308", + "977308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086708", + "1483086708", + "1483086739", + "1483086708", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977312", + "977312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086721", + "1483086721", + "1483086751", + "1483086721", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977326", + "977326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086752", + "1483086752", + "1483086787", + "1483086752", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977328", + "977328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086758", + "1483086758", + "1483086790", + "1483086758", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977330", + "977330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086758", + "1483086758", + "1483086788", + "1483086758", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977334", + "977334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086768", + "1483086768", + "1483086807", + "1483086768", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977371", + "977371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086883", + "1483086883", + "1483086916", + "1483086883", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977382", + "977382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086906", + "1483086906", + "1483086963", + "1483086906", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977392", + "977392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086947", + "1483086947", + "1483086988", + "1483086947", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977394", + "977394", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086956", + "1483086956", + "1483087008", + "1483086956", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977400", + "977400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086974", + "1483086974", + "1483087004", + "1483086974", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977409", + "977409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087005", + "1483087005", + "1483087054", + "1483087005", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977411", + "977411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087008", + "1483087008", + "1483087040", + "1483087008", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977416", + "977416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087009", + "1483087009", + "1483087043", + "1483087009", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977418", + "977418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087009", + "1483087009", + "1483087043", + "1483087009", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977438", + "977438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087074", + "1483087074", + "1483087149", + "1483087074", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977440", + "977440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087075", + "1483087075", + "1483087128", + "1483087075", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977452", + "977452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087122", + "1483087122", + "1483087184", + "1483087122", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977476", + "977476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087221", + "1483087221", + "1483087357", + "1483087221", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977478", + "977478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087222", + "1483087222", + "1483087255", + "1483087222", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977484", + "977484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087242", + "1483087242", + "1483087348", + "1483087242", + "1", + "8", + "0", + "-1", + "106", + "0", + "848", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977490", + "977490", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087297", + "1483087297", + "1483087341", + "1483087297", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977496", + "977496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087340", + "1483087340", + "1483087387", + "1483087340", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977504", + "977504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087355", + "1483087355", + "1483087396", + "1483087355", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977506", + "977506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087358", + "1483087358", + "1483087401", + "1483087358", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977514", + "977514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087388", + "1483087388", + "1483087421", + "1483087388", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977520", + "977520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087402", + "1483087402", + "1483087440", + "1483087402", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977524", + "977524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087415", + "1483087415", + "1483087464", + "1483087415", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977526", + "977526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087422", + "1483087422", + "1483087473", + "1483087422", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977528", + "977528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087429", + "1483087429", + "1483087538", + "1483087429", + "1", + "8", + "0", + "-1", + "109", + "0", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977532", + "977532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087441", + "1483087441", + "1483087492", + "1483087441", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977534", + "977534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087460", + "1483087460", + "1483087519", + "1483087460", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977546", + "977546", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087493", + "1483087493", + "1483087524", + "1483087493", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977567", + "977567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087555", + "1483087555", + "1483087598", + "1483087555", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977573", + "977573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087569", + "1483087569", + "1483087729", + "1483087569", + "1", + "8", + "0", + "-1", + "160", + "0", + "1280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977575", + "977575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087569", + "1483087569", + "1483087625", + "1483087569", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977589", + "977589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087629", + "1483087629", + "1483087674", + "1483087629", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977603", + "977603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087675", + "1483087675", + "1483087739", + "1483087675", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977607", + "977607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087687", + "1483087687", + "1483087737", + "1483087687", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977609", + "977609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087696", + "1483087696", + "1483087754", + "1483087696", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977613", + "977613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087730", + "1483087730", + "1483087786", + "1483087730", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977615", + "977615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087738", + "1483087738", + "1483087806", + "1483087738", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977623", + "977623", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087760", + "1483087760", + "1483087848", + "1483087760", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977625", + "977625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087787", + "1483087787", + "1483087845", + "1483087787", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977654", + "977654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087866", + "1483087866", + "1483087910", + "1483087866", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977682", + "977682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087936", + "1483087936", + "1483087978", + "1483087936", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977709", + "977709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087992", + "1483087992", + "1483088076", + "1483087992", + "1", + "8", + "0", + "-1", + "84", + "0", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977715", + "977715", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088004", + "1483088004", + "1483088041", + "1483088004", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977748", + "977748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088092", + "1483088092", + "1483088137", + "1483088092", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977755", + "977755", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088098", + "1483088098", + "1483088138", + "1483088098", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977761", + "977761", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088129", + "1483088129", + "1483088159", + "1483088129", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977775", + "977775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088168", + "1483088168", + "1483088217", + "1483088168", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977777", + "977777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088176", + "1483088176", + "1483088207", + "1483088176", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977779", + "977779", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088176", + "1483088176", + "1483088211", + "1483088176", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977789", + "977789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088212", + "1483088212", + "1483088248", + "1483088212", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977791", + "977791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088215", + "1483088215", + "1483088262", + "1483088215", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977795", + "977795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088218", + "1483088218", + "1483088272", + "1483088218", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977906", + "977906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088499", + "1483088499", + "1483088531", + "1483088499", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977922", + "977922", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088532", + "1483088532", + "1483088565", + "1483088532", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977974", + "977974", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088701", + "1483088701", + "1483088750", + "1483088701", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977976", + "977976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088706", + "1483088706", + "1483088762", + "1483088706", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977984", + "977984", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088734", + "1483088734", + "1483088780", + "1483088734", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977986", + "977986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088746", + "1483088746", + "1483088791", + "1483088746", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978018", + "978018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088840", + "1483088840", + "1483088887", + "1483088840", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978032", + "978032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088884", + "1483088884", + "1483088962", + "1483088884", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978034", + "978034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088888", + "1483088888", + "1483088927", + "1483088888", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978050", + "978050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088941", + "1483088941", + "1483088973", + "1483088941", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978054", + "978054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088957", + "1483088957", + "1483089011", + "1483088957", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978076", + "978076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089016", + "1483089016", + "1483089075", + "1483089016", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978080", + "978080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089042", + "1483089042", + "1483089097", + "1483089042", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978084", + "978084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089076", + "1483089076", + "1483089140", + "1483089076", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978090", + "978090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089098", + "1483089098", + "1483089160", + "1483089098", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978092", + "978092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089118", + "1483089118", + "1483089159", + "1483089118", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978094", + "978094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089134", + "1483089134", + "1483089185", + "1483089134", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978100", + "978100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089155", + "1483089155", + "1483089206", + "1483089155", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978102", + "978102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089160", + "1483089160", + "1483089214", + "1483089160", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978106", + "978106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089186", + "1483089186", + "1483089247", + "1483089186", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978108", + "978108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089207", + "1483089207", + "1483089267", + "1483089207", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978112", + "978112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089215", + "1483089215", + "1483089272", + "1483089215", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978114", + "978114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089227", + "1483089227", + "1483089320", + "1483089227", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978124", + "978124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089247", + "1483089247", + "1483089361", + "1483089247", + "1", + "8", + "0", + "-1", + "114", + "0", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978126", + "978126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089267", + "1483089267", + "1483089353", + "1483089267", + "1", + "8", + "0", + "-1", + "86", + "0", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978162", + "978162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089389", + "1483089389", + "1483089422", + "1483089389", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978166", + "978166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089397", + "1483089397", + "1483089473", + "1483089397", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978170", + "978170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089423", + "1483089423", + "1483089474", + "1483089423", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978202", + "978202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089501", + "1483089501", + "1483089540", + "1483089501", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978206", + "978206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089504", + "1483089504", + "1483089541", + "1483089504", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978212", + "978212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089518", + "1483089518", + "1483089606", + "1483089518", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978216", + "978216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089538", + "1483089538", + "1483089608", + "1483089538", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978250", + "978250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089626", + "1483089626", + "1483089658", + "1483089626", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978262", + "978262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089659", + "1483089659", + "1483089703", + "1483089659", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978354", + "978354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089870", + "1483089870", + "1483089902", + "1483089870", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978356", + "978356", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089873", + "1483089873", + "1483089909", + "1483089873", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978358", + "978358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089887", + "1483089887", + "1483089919", + "1483089887", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978364", + "978364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089910", + "1483089910", + "1483089949", + "1483089910", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978368", + "978368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089918", + "1483089918", + "1483089955", + "1483089918", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978374", + "978374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089931", + "1483089931", + "1483089965", + "1483089931", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978387", + "978387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089955", + "1483089955", + "1483090003", + "1483089955", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978393", + "978393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089966", + "1483089966", + "1483090083", + "1483089966", + "1", + "8", + "0", + "-1", + "117", + "0", + "936", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978396", + "978396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089966", + "1483089966", + "1483090018", + "1483089966", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978398", + "978398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089979", + "1483089979", + "1483090026", + "1483089979", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978400", + "978400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089999", + "1483089999", + "1483090034", + "1483089999", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978402", + "978402", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090004", + "1483090004", + "1483090040", + "1483090004", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978414", + "978414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090040", + "1483090040", + "1483090075", + "1483090040", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978422", + "978422", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090056", + "1483090056", + "1483090095", + "1483090056", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978426", + "978426", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090075", + "1483090075", + "1483090107", + "1483090075", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978448", + "978448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090135", + "1483090135", + "1483090172", + "1483090135", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978450", + "978450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090138", + "1483090138", + "1483090170", + "1483090138", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978456", + "978456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090156", + "1483090156", + "1483090213", + "1483090156", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978458", + "978458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090160", + "1483090160", + "1483090196", + "1483090160", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978471", + "978471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090207", + "1483090207", + "1483090247", + "1483090207", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978485", + "978485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090241", + "1483090241", + "1483090316", + "1483090241", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978487", + "978487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090248", + "1483090248", + "1483090342", + "1483090248", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978489", + "978489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090262", + "1483090262", + "1483090306", + "1483090262", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978495", + "978495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090289", + "1483090289", + "1483090357", + "1483090289", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978497", + "978497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090307", + "1483090307", + "1483090381", + "1483090307", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978501", + "978501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090340", + "1483090340", + "1483090461", + "1483090340", + "1", + "8", + "0", + "-1", + "121", + "0", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978503", + "978503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090343", + "1483090343", + "1483090430", + "1483090343", + "1", + "8", + "0", + "-1", + "87", + "0", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978507", + "978507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090356", + "1483090356", + "1483090428", + "1483090356", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978511", + "978511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090382", + "1483090382", + "1483090464", + "1483090382", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978513", + "978513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090428", + "1483090428", + "1483090550", + "1483090428", + "1", + "8", + "0", + "-1", + "122", + "0", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978515", + "978515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090429", + "1483090429", + "1483090499", + "1483090429", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978527", + "978527", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090500", + "1483090500", + "1483090602", + "1483090500", + "1", + "8", + "0", + "-1", + "102", + "0", + "816", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978539", + "978539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090574", + "1483090574", + "1483090620", + "1483090574", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978545", + "978545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090614", + "1483090614", + "1483090651", + "1483090614", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978553", + "978553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090650", + "1483090650", + "1483090699", + "1483090650", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978568", + "978568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090700", + "1483090700", + "1483090745", + "1483090700", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978572", + "978572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090734", + "1483090734", + "1483090797", + "1483090734", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978578", + "978578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090738", + "1483090738", + "1483090794", + "1483090738", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978580", + "978580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090745", + "1483090745", + "1483090799", + "1483090745", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978600", + "978600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090837", + "1483090837", + "1483090876", + "1483090837", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978606", + "978606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090843", + "1483090843", + "1483090890", + "1483090843", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978610", + "978610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090851", + "1483090851", + "1483090896", + "1483090851", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978621", + "978621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090895", + "1483090895", + "1483090976", + "1483090895", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978635", + "978635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090954", + "1483090954", + "1483091011", + "1483090954", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978645", + "978645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090982", + "1483090982", + "1483091033", + "1483090982", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978649", + "978649", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091012", + "1483091012", + "1483091059", + "1483091012", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978651", + "978651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091016", + "1483091016", + "1483091066", + "1483091016", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978653", + "978653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091027", + "1483091027", + "1483091087", + "1483091027", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978661", + "978661", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091041", + "1483091041", + "1483091114", + "1483091041", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978665", + "978665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091060", + "1483091060", + "1483091152", + "1483091060", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978667", + "978667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091067", + "1483091067", + "1483091149", + "1483091067", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978674", + "978674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091087", + "1483091087", + "1483091121", + "1483091087", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978680", + "978680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091114", + "1483091114", + "1483091145", + "1483091114", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978684", + "978684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091122", + "1483091122", + "1483091169", + "1483091122", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978688", + "978688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091146", + "1483091146", + "1483091193", + "1483091146", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978690", + "978690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091150", + "1483091150", + "1483091180", + "1483091150", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978710", + "978710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091201", + "1483091201", + "1483091325", + "1483091201", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978718", + "978718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091237", + "1483091237", + "1483091281", + "1483091237", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978720", + "978720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091237", + "1483091237", + "1483091277", + "1483091237", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978726", + "978726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091253", + "1483091253", + "1483091292", + "1483091253", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978749", + "978749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091326", + "1483091326", + "1483091359", + "1483091326", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978762", + "978762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091342", + "1483091342", + "1483091377", + "1483091342", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978797", + "978797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091426", + "1483091426", + "1483091469", + "1483091426", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978801", + "978801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091451", + "1483091451", + "1483091494", + "1483091451", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978809", + "978809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091478", + "1483091478", + "1483091511", + "1483091478", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978815", + "978815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091498", + "1483091498", + "1483091531", + "1483091498", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978819", + "978819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091512", + "1483091512", + "1483091560", + "1483091512", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978823", + "978823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091521", + "1483091521", + "1483091562", + "1483091521", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978825", + "978825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091526", + "1483091526", + "1483091566", + "1483091526", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978827", + "978827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091527", + "1483091527", + "1483091563", + "1483091527", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978835", + "978835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091555", + "1483091555", + "1483091589", + "1483091555", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978837", + "978837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091561", + "1483091561", + "1483091594", + "1483091561", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978841", + "978841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091564", + "1483091564", + "1483091626", + "1483091564", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978845", + "978845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091575", + "1483091575", + "1483091701", + "1483091575", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978847", + "978847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091590", + "1483091590", + "1483091649", + "1483091590", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978849", + "978849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091594", + "1483091594", + "1483091647", + "1483091594", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978851", + "978851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091616", + "1483091616", + "1483091648", + "1483091616", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978859", + "978859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091648", + "1483091648", + "1483091678", + "1483091648", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978885", + "978885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091713", + "1483091713", + "1483091753", + "1483091713", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978895", + "978895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091732", + "1483091732", + "1483091791", + "1483091732", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978937", + "978937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091840", + "1483091840", + "1483091951", + "1483091840", + "1", + "8", + "0", + "-1", + "111", + "0", + "888", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978945", + "978945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091861", + "1483091861", + "1483091898", + "1483091861", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978947", + "978947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091865", + "1483091865", + "1483091912", + "1483091865", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978951", + "978951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091873", + "1483091873", + "1483091909", + "1483091873", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978953", + "978953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091886", + "1483091886", + "1483091928", + "1483091886", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978957", + "978957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091910", + "1483091910", + "1483091950", + "1483091910", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978959", + "978959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091913", + "1483091913", + "1483091954", + "1483091913", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978961", + "978961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091919", + "1483091919", + "1483091949", + "1483091919", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978965", + "978965", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091929", + "1483091929", + "1483091970", + "1483091929", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978971", + "978971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091951", + "1483091951", + "1483091989", + "1483091951", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978979", + "978979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091971", + "1483091971", + "1483092036", + "1483091971", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978999", + "978999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092037", + "1483092037", + "1483092068", + "1483092037", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979007", + "979007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092058", + "1483092058", + "1483092107", + "1483092058", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979020", + "979020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092100", + "1483092100", + "1483092139", + "1483092100", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979022", + "979022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092103", + "1483092103", + "1483092149", + "1483092103", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979028", + "979028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092115", + "1483092115", + "1483092244", + "1483092115", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979030", + "979030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092121", + "1483092121", + "1483092167", + "1483092121", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979036", + "979036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092150", + "1483092150", + "1483092196", + "1483092150", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979044", + "979044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092172", + "1483092172", + "1483092204", + "1483092172", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979048", + "979048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092197", + "1483092197", + "1483092235", + "1483092197", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979050", + "979050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092202", + "1483092202", + "1483092252", + "1483092202", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979055", + "979055", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092205", + "1483092205", + "1483092237", + "1483092205", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979073", + "979073", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092253", + "1483092253", + "1483092371", + "1483092253", + "1", + "8", + "0", + "-1", + "118", + "0", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979075", + "979075", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092261", + "1483092261", + "1483092316", + "1483092261", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979077", + "979077", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092266", + "1483092266", + "1483092335", + "1483092266", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979079", + "979079", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092270", + "1483092270", + "1483092312", + "1483092270", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979091", + "979091", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092339", + "1483092339", + "1483092376", + "1483092339", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979095", + "979095", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092344", + "1483092344", + "1483092394", + "1483092344", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979099", + "979099", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092355", + "1483092355", + "1483092405", + "1483092355", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979115", + "979115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092406", + "1483092406", + "1483092454", + "1483092406", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979117", + "979117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092409", + "1483092409", + "1483092448", + "1483092409", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979123", + "979123", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092422", + "1483092422", + "1483092467", + "1483092422", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979127", + "979127", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092449", + "1483092449", + "1483092510", + "1483092449", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979135", + "979135", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092466", + "1483092466", + "1483092519", + "1483092466", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979143", + "979143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092511", + "1483092511", + "1483092576", + "1483092511", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979152", + "979152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092519", + "1483092519", + "1483092568", + "1483092519", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979162", + "979162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092569", + "1483092569", + "1483092659", + "1483092569", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979164", + "979164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092572", + "1483092572", + "1483092742", + "1483092572", + "1", + "8", + "0", + "-1", + "170", + "0", + "1360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979171", + "979171", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092577", + "1483092577", + "1483092617", + "1483092577", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979179", + "979179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092618", + "1483092618", + "1483092655", + "1483092618", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979183", + "979183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092651", + "1483092651", + "1483092683", + "1483092651", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979187", + "979187", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092660", + "1483092660", + "1483092690", + "1483092660", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979223", + "979223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092778", + "1483092778", + "1483092810", + "1483092778", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979256", + "979256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092847", + "1483092847", + "1483092885", + "1483092847", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979262", + "979262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092881", + "1483092881", + "1483092916", + "1483092881", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979273", + "979273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092905", + "1483092905", + "1483092944", + "1483092905", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979295", + "979295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092944", + "1483092944", + "1483092978", + "1483092944", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979299", + "979299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092948", + "1483092948", + "1483093060", + "1483092948", + "1", + "8", + "0", + "-1", + "112", + "0", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979301", + "979301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092955", + "1483092955", + "1483092987", + "1483092955", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979345", + "979345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093052", + "1483093052", + "1483093108", + "1483093052", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979359", + "979359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093088", + "1483093088", + "1483093122", + "1483093088", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979367", + "979367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093109", + "1483093109", + "1483093139", + "1483093109", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979385", + "979385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093144", + "1483093144", + "1483093190", + "1483093144", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979389", + "979389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093160", + "1483093160", + "1483093276", + "1483093160", + "1", + "8", + "0", + "-1", + "116", + "0", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979397", + "979397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093191", + "1483093191", + "1483093244", + "1483093191", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979403", + "979403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093205", + "1483093205", + "1483093236", + "1483093205", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979409", + "979409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093237", + "1483093237", + "1483093268", + "1483093237", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979421", + "979421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093276", + "1483093276", + "1483093308", + "1483093276", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979427", + "979427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093301", + "1483093301", + "1483093349", + "1483093301", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979431", + "979431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093304", + "1483093304", + "1483093370", + "1483093304", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979433", + "979433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093309", + "1483093309", + "1483093380", + "1483093309", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979439", + "979439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093350", + "1483093350", + "1483093401", + "1483093350", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979445", + "979445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093381", + "1483093381", + "1483093442", + "1483093381", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979459", + "979459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093429", + "1483093429", + "1483093472", + "1483093429", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979463", + "979463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093443", + "1483093443", + "1483093481", + "1483093443", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979473", + "979473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093477", + "1483093477", + "1483093511", + "1483093477", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979475", + "979475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093482", + "1483093482", + "1483093537", + "1483093482", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979489", + "979489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093574", + "1483093574", + "1483093633", + "1483093574", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979497", + "979497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093586", + "1483093586", + "1483093637", + "1483093586", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979499", + "979499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093627", + "1483093627", + "1483093658", + "1483093627", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979501", + "979501", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093633", + "1483093633", + "1483093696", + "1483093633", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979509", + "979509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093639", + "1483093639", + "1483093678", + "1483093639", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979515", + "979515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093679", + "1483093679", + "1483093723", + "1483093679", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979517", + "979517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093686", + "1483093686", + "1483093717", + "1483093686", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979519", + "979519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093689", + "1483093689", + "1483093721", + "1483093689", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979521", + "979521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093692", + "1483093692", + "1483093738", + "1483093692", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979523", + "979523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093697", + "1483093697", + "1483093779", + "1483093697", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979541", + "979541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093780", + "1483093780", + "1483093877", + "1483093780", + "1", + "8", + "0", + "-1", + "97", + "0", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979560", + "979560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093866", + "1483093866", + "1483093979", + "1483093866", + "1", + "8", + "0", + "-1", + "113", + "0", + "904", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979568", + "979568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093919", + "1483093919", + "1483094071", + "1483093919", + "1", + "8", + "0", + "-1", + "152", + "0", + "1216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979570", + "979570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093957", + "1483093957", + "1483094093", + "1483093957", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979578", + "979578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093980", + "1483093980", + "1483094131", + "1483093980", + "1", + "8", + "0", + "-1", + "151", + "0", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979580", + "979580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093989", + "1483093989", + "1483094023", + "1483093989", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979582", + "979582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094010", + "1483094010", + "1483094044", + "1483094010", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979586", + "979586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094045", + "1483094045", + "1483094079", + "1483094045", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979596", + "979596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094080", + "1483094080", + "1483094123", + "1483094080", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979600", + "979600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094116", + "1483094116", + "1483094157", + "1483094116", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979616", + "979616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094158", + "1483094158", + "1483094215", + "1483094158", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979626", + "979626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094209", + "1483094209", + "1483094263", + "1483094209", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979645", + "979645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094270", + "1483094270", + "1483094318", + "1483094270", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979655", + "979655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094310", + "1483094310", + "1483094348", + "1483094310", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979663", + "979663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094334", + "1483094334", + "1483094490", + "1483094334", + "1", + "8", + "0", + "-1", + "156", + "0", + "1248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979665", + "979665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094340", + "1483094340", + "1483094390", + "1483094340", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979667", + "979667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094349", + "1483094349", + "1483094405", + "1483094349", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979671", + "979671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094358", + "1483094358", + "1483094401", + "1483094358", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979681", + "979681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094395", + "1483094395", + "1483094430", + "1483094395", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979683", + "979683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094402", + "1483094402", + "1483094469", + "1483094402", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979685", + "979685", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094403", + "1483094403", + "1483094469", + "1483094403", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979687", + "979687", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094406", + "1483094406", + "1483094470", + "1483094406", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979691", + "979691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094431", + "1483094431", + "1483094479", + "1483094431", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979697", + "979697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094469", + "1483094469", + "1483094521", + "1483094469", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979702", + "979702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094470", + "1483094470", + "1483094532", + "1483094470", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979706", + "979706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094477", + "1483094477", + "1483094558", + "1483094477", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979708", + "979708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094480", + "1483094480", + "1483094632", + "1483094480", + "1", + "8", + "0", + "-1", + "152", + "0", + "1216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979714", + "979714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094522", + "1483094522", + "1483094574", + "1483094522", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979716", + "979716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094525", + "1483094525", + "1483094564", + "1483094525", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979718", + "979718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094533", + "1483094533", + "1483094571", + "1483094533", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979720", + "979720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094559", + "1483094559", + "1483094590", + "1483094559", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979722", + "979722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094565", + "1483094565", + "1483094604", + "1483094565", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979744", + "979744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094642", + "1483094642", + "1483094689", + "1483094642", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979754", + "979754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094668", + "1483094668", + "1483094810", + "1483094668", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979758", + "979758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094677", + "1483094677", + "1483094741", + "1483094677", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979768", + "979768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094736", + "1483094736", + "1483094766", + "1483094736", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979774", + "979774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094746", + "1483094746", + "1483094783", + "1483094746", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979776", + "979776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094750", + "1483094750", + "1483094801", + "1483094750", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979782", + "979782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094784", + "1483094784", + "1483094829", + "1483094784", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979784", + "979784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094790", + "1483094790", + "1483094830", + "1483094790", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979790", + "979790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094802", + "1483094802", + "1483094832", + "1483094802", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979798", + "979798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094830", + "1483094830", + "1483094972", + "1483094830", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979802", + "979802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094833", + "1483094833", + "1483094911", + "1483094833", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979804", + "979804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094854", + "1483094854", + "1483094908", + "1483094854", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979810", + "979810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094885", + "1483094885", + "1483094920", + "1483094885", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979814", + "979814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094894", + "1483094894", + "1483094952", + "1483094894", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979816", + "979816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094909", + "1483094909", + "1483094967", + "1483094909", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979818", + "979818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094912", + "1483094912", + "1483094945", + "1483094912", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979820", + "979820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094915", + "1483094915", + "1483094974", + "1483094915", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979822", + "979822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094920", + "1483094920", + "1483094974", + "1483094920", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979839", + "979839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094975", + "1483094975", + "1483095073", + "1483094975", + "1", + "8", + "0", + "-1", + "98", + "0", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979859", + "979859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095034", + "1483095034", + "1483095075", + "1483095034", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979861", + "979861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095035", + "1483095035", + "1483095092", + "1483095035", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979881", + "979881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095093", + "1483095093", + "1483095133", + "1483095093", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979894", + "979894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095159", + "1483095159", + "1483095189", + "1483095159", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979898", + "979898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095173", + "1483095173", + "1483095204", + "1483095173", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979911", + "979911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095205", + "1483095205", + "1483095255", + "1483095205", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979913", + "979913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095214", + "1483095214", + "1483095258", + "1483095214", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979921", + "979921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095240", + "1483095240", + "1483095282", + "1483095240", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979941", + "979941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095308", + "1483095308", + "1483095347", + "1483095308", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979956", + "979956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095348", + "1483095348", + "1483095389", + "1483095348", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979962", + "979962", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095376", + "1483095376", + "1483095418", + "1483095376", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979966", + "979966", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095386", + "1483095386", + "1483095423", + "1483095386", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979994", + "979994", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095512", + "1483095512", + "1483095574", + "1483095512", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979999", + "979999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095528", + "1483095528", + "1483095564", + "1483095528", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980001", + "980001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095547", + "1483095547", + "1483095591", + "1483095547", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980007", + "980007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095575", + "1483095575", + "1483095607", + "1483095575", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980009", + "980009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095586", + "1483095586", + "1483095653", + "1483095586", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980013", + "980013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095592", + "1483095592", + "1483095663", + "1483095592", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980015", + "980015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095600", + "1483095600", + "1483095747", + "1483095600", + "1", + "8", + "0", + "-1", + "147", + "0", + "1176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980039", + "980039", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095696", + "1483095696", + "1483095766", + "1483095696", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980042", + "980042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095696", + "1483095696", + "1483095756", + "1483095696", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980048", + "980048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095710", + "1483095710", + "1483095753", + "1483095710", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980068", + "980068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095817", + "1483095817", + "1483095886", + "1483095817", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980070", + "980070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095825", + "1483095825", + "1483095901", + "1483095825", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980076", + "980076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095847", + "1483095847", + "1483095893", + "1483095847", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980080", + "980080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095887", + "1483095887", + "1483095954", + "1483095887", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980088", + "980088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095930", + "1483095930", + "1483095983", + "1483095930", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980096", + "980096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095964", + "1483095964", + "1483096075", + "1483095964", + "1", + "8", + "0", + "-1", + "111", + "0", + "888", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980102", + "980102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096002", + "1483096002", + "1483096120", + "1483096002", + "1", + "8", + "0", + "-1", + "118", + "0", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980116", + "980116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096094", + "1483096094", + "1483096125", + "1483096094", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980122", + "980122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096106", + "1483096106", + "1483096244", + "1483096106", + "1", + "8", + "0", + "-1", + "138", + "0", + "1104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980124", + "980124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096111", + "1483096111", + "1483096159", + "1483096111", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980126", + "980126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096121", + "1483096121", + "1483096159", + "1483096121", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980128", + "980128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096121", + "1483096121", + "1483096186", + "1483096121", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980140", + "980140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096160", + "1483096160", + "1483096224", + "1483096160", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980163", + "980163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096245", + "1483096245", + "1483096337", + "1483096245", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980167", + "980167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096254", + "1483096254", + "1483096297", + "1483096254", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980191", + "980191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096351", + "1483096351", + "1483096388", + "1483096351", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980193", + "980193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096359", + "1483096359", + "1483096401", + "1483096359", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980203", + "980203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096389", + "1483096389", + "1483096441", + "1483096389", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980207", + "980207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096392", + "1483096392", + "1483096446", + "1483096392", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980213", + "980213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096422", + "1483096422", + "1483096483", + "1483096422", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980217", + "980217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096442", + "1483096442", + "1483096500", + "1483096442", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980219", + "980219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096446", + "1483096446", + "1483096551", + "1483096446", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980225", + "980225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096484", + "1483096484", + "1483096541", + "1483096484", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980227", + "980227", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096489", + "1483096489", + "1483096548", + "1483096489", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980231", + "980231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096501", + "1483096501", + "1483096595", + "1483096501", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980233", + "980233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096506", + "1483096506", + "1483096675", + "1483096506", + "1", + "8", + "0", + "-1", + "169", + "0", + "1352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980239", + "980239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096542", + "1483096542", + "1483096639", + "1483096542", + "1", + "8", + "0", + "-1", + "97", + "0", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980241", + "980241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096549", + "1483096549", + "1483096821", + "1483096549", + "1", + "8", + "0", + "-1", + "272", + "0", + "2176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980247", + "980247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096596", + "1483096596", + "1483096773", + "1483096596", + "1", + "8", + "0", + "-1", + "177", + "0", + "1416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980249", + "980249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096640", + "1483096640", + "1483096719", + "1483096640", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980253", + "980253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096675", + "1483096675", + "1483096763", + "1483096675", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980259", + "980259", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096692", + "1483096692", + "1483096794", + "1483096692", + "1", + "8", + "0", + "-1", + "102", + "0", + "816", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980267", + "980267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096720", + "1483096720", + "1483096751", + "1483096720", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980269", + "980269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096731", + "1483096731", + "1483096761", + "1483096731", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980273", + "980273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096752", + "1483096752", + "1483096799", + "1483096752", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980283", + "980283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096795", + "1483096795", + "1483096845", + "1483096795", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980285", + "980285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096800", + "1483096800", + "1483096831", + "1483096800", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980293", + "980293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096829", + "1483096829", + "1483096899", + "1483096829", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980295", + "980295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096832", + "1483096832", + "1483096893", + "1483096832", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980297", + "980297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096836", + "1483096836", + "1483096886", + "1483096836", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980299", + "980299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096846", + "1483096846", + "1483096995", + "1483096846", + "1", + "8", + "0", + "-1", + "149", + "0", + "1192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980301", + "980301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096850", + "1483096850", + "1483096909", + "1483096850", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980303", + "980303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096872", + "1483096872", + "1483096955", + "1483096872", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980305", + "980305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096887", + "1483096887", + "1483096968", + "1483096887", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980307", + "980307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096894", + "1483096894", + "1483096930", + "1483096894", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980309", + "980309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096900", + "1483096900", + "1483096935", + "1483096900", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980311", + "980311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096910", + "1483096910", + "1483096949", + "1483096910", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980313", + "980313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096930", + "1483096930", + "1483096973", + "1483096930", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980317", + "980317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096950", + "1483096950", + "1483096993", + "1483096950", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980319", + "980319", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096955", + "1483096955", + "1483097002", + "1483096955", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980360", + "980360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097070", + "1483097070", + "1483097103", + "1483097070", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980362", + "980362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097103", + "1483097103", + "1483097152", + "1483097103", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980374", + "980374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097153", + "1483097153", + "1483097210", + "1483097153", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980379", + "980379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097170", + "1483097170", + "1483097209", + "1483097170", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980385", + "980385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097184", + "1483097184", + "1483097267", + "1483097184", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980395", + "980395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097210", + "1483097210", + "1483097291", + "1483097210", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980399", + "980399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097215", + "1483097215", + "1483097248", + "1483097215", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980403", + "980403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097246", + "1483097246", + "1483097304", + "1483097246", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980405", + "980405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097249", + "1483097249", + "1483097282", + "1483097249", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980407", + "980407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097260", + "1483097260", + "1483097295", + "1483097260", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980409", + "980409", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097266", + "1483097266", + "1483097317", + "1483097266", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980413", + "980413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097283", + "1483097283", + "1483097331", + "1483097283", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980419", + "980419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097296", + "1483097296", + "1483097340", + "1483097296", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980421", + "980421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097305", + "1483097305", + "1483097346", + "1483097305", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980423", + "980423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097318", + "1483097318", + "1483097349", + "1483097318", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980433", + "980433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097350", + "1483097350", + "1483097406", + "1483097350", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980435", + "980435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097351", + "1483097351", + "1483097504", + "1483097351", + "1", + "8", + "0", + "-1", + "153", + "0", + "1224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980473", + "980473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097496", + "1483097496", + "1483097544", + "1483097496", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980475", + "980475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097501", + "1483097501", + "1483097540", + "1483097501", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980477", + "980477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097505", + "1483097505", + "1483097545", + "1483097505", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980483", + "980483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097520", + "1483097520", + "1483097600", + "1483097520", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980491", + "980491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097546", + "1483097546", + "1483097595", + "1483097546", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980493", + "980493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097562", + "1483097562", + "1483097605", + "1483097562", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980495", + "980495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097594", + "1483097594", + "1483097642", + "1483097594", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980497", + "980497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097595", + "1483097595", + "1483097633", + "1483097595", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980503", + "980503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097606", + "1483097606", + "1483097653", + "1483097606", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980505", + "980505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097626", + "1483097626", + "1483097680", + "1483097626", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980511", + "980511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097643", + "1483097643", + "1483097674", + "1483097643", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980513", + "980513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097652", + "1483097652", + "1483097697", + "1483097652", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980523", + "980523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097684", + "1483097684", + "1483097751", + "1483097684", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980525", + "980525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097688", + "1483097688", + "1483097753", + "1483097688", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980529", + "980529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097698", + "1483097698", + "1483097737", + "1483097698", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980547", + "980547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097773", + "1483097773", + "1483097809", + "1483097773", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980549", + "980549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097774", + "1483097774", + "1483097816", + "1483097774", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980551", + "980551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097791", + "1483097791", + "1483097840", + "1483097791", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980565", + "980565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097840", + "1483097840", + "1483097886", + "1483097840", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980567", + "980567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097841", + "1483097841", + "1483097916", + "1483097841", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980573", + "980573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097856", + "1483097856", + "1483098010", + "1483097856", + "1", + "8", + "0", + "-1", + "154", + "0", + "1232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980577", + "980577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097887", + "1483097887", + "1483097939", + "1483097887", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980587", + "980587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097926", + "1483097926", + "1483097966", + "1483097926", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980593", + "980593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097956", + "1483097956", + "1483098024", + "1483097956", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980602", + "980602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097967", + "1483097967", + "1483098018", + "1483097967", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980604", + "980604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097995", + "1483097995", + "1483098037", + "1483097995", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980606", + "980606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098010", + "1483098010", + "1483098044", + "1483098010", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980608", + "980608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098011", + "1483098011", + "1483098065", + "1483098011", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980610", + "980610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098019", + "1483098019", + "1483098075", + "1483098019", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980612", + "980612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098025", + "1483098025", + "1483098101", + "1483098025", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980614", + "980614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098035", + "1483098035", + "1483098120", + "1483098035", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980616", + "980616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098038", + "1483098038", + "1483098121", + "1483098038", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980620", + "980620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098045", + "1483098045", + "1483098101", + "1483098045", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980622", + "980622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098065", + "1483098065", + "1483098154", + "1483098065", + "1", + "8", + "0", + "-1", + "89", + "0", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980624", + "980624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098076", + "1483098076", + "1483098167", + "1483098076", + "1", + "8", + "0", + "-1", + "91", + "0", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980626", + "980626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098102", + "1483098102", + "1483098147", + "1483098102", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980631", + "980631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098120", + "1483098120", + "1483098157", + "1483098120", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980639", + "980639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098147", + "1483098147", + "1483098182", + "1483098147", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980676", + "980676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098259", + "1483098259", + "1483098315", + "1483098259", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980688", + "980688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098302", + "1483098302", + "1483098369", + "1483098302", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980700", + "980700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098329", + "1483098329", + "1483098374", + "1483098329", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980702", + "980702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098334", + "1483098334", + "1483098392", + "1483098334", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980704", + "980704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098341", + "1483098341", + "1483098413", + "1483098341", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980706", + "980706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098345", + "1483098345", + "1483098424", + "1483098345", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980712", + "980712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098370", + "1483098370", + "1483098412", + "1483098370", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980716", + "980716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098393", + "1483098393", + "1483098466", + "1483098393", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980724", + "980724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098425", + "1483098425", + "1483098479", + "1483098425", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980728", + "980728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098466", + "1483098466", + "1483098521", + "1483098466", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980732", + "980732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098480", + "1483098480", + "1483098568", + "1483098480", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980734", + "980734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098480", + "1483098480", + "1483098551", + "1483098480", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980736", + "980736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098491", + "1483098491", + "1483098533", + "1483098491", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980738", + "980738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098501", + "1483098501", + "1483098544", + "1483098501", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980748", + "980748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098561", + "1483098561", + "1483098661", + "1483098561", + "1", + "8", + "0", + "-1", + "100", + "0", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980750", + "980750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098569", + "1483098569", + "1483098683", + "1483098569", + "1", + "8", + "0", + "-1", + "114", + "0", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980764", + "980764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098667", + "1483098667", + "1483098700", + "1483098667", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980789", + "980789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098753", + "1483098753", + "1483098792", + "1483098753", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980793", + "980793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098764", + "1483098764", + "1483098800", + "1483098764", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980799", + "980799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098775", + "1483098775", + "1483098926", + "1483098775", + "1", + "8", + "0", + "-1", + "151", + "0", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980803", + "980803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098793", + "1483098793", + "1483098874", + "1483098793", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980805", + "980805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098801", + "1483098801", + "1483098852", + "1483098801", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980811", + "980811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098820", + "1483098820", + "1483098855", + "1483098820", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980813", + "980813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098825", + "1483098825", + "1483098874", + "1483098825", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980817", + "980817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098856", + "1483098856", + "1483098890", + "1483098856", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980821", + "980821", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098874", + "1483098874", + "1483098909", + "1483098874", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980825", + "980825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098883", + "1483098883", + "1483098914", + "1483098883", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980827", + "980827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098891", + "1483098891", + "1483098921", + "1483098891", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980829", + "980829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098891", + "1483098891", + "1483098939", + "1483098891", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980831", + "980831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098909", + "1483098909", + "1483098944", + "1483098909", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980835", + "980835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098921", + "1483098921", + "1483098964", + "1483098921", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980837", + "980837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098924", + "1483098924", + "1483098967", + "1483098924", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980839", + "980839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098927", + "1483098927", + "1483098958", + "1483098927", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980841", + "980841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098940", + "1483098940", + "1483098988", + "1483098940", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980873", + "980873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099045", + "1483099045", + "1483099075", + "1483099045", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980881", + "980881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099066", + "1483099066", + "1483099106", + "1483099066", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980897", + "980897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099129", + "1483099129", + "1483099196", + "1483099129", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980899", + "980899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099132", + "1483099132", + "1483099179", + "1483099132", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980903", + "980903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099148", + "1483099148", + "1483099191", + "1483099148", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980905", + "980905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099158", + "1483099158", + "1483099202", + "1483099158", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980909", + "980909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099180", + "1483099180", + "1483099213", + "1483099180", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980911", + "980911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099192", + "1483099192", + "1483099225", + "1483099192", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980915", + "980915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099203", + "1483099203", + "1483099258", + "1483099203", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980917", + "980917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099208", + "1483099208", + "1483099245", + "1483099208", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980919", + "980919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099213", + "1483099213", + "1483099260", + "1483099213", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980923", + "980923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099226", + "1483099226", + "1483099268", + "1483099226", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980931", + "980931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099259", + "1483099259", + "1483099322", + "1483099259", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980941", + "980941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099284", + "1483099284", + "1483099360", + "1483099284", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980943", + "980943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099310", + "1483099310", + "1483099378", + "1483099310", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980945", + "980945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099322", + "1483099322", + "1483099357", + "1483099322", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980976", + "980976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099410", + "1483099410", + "1483099449", + "1483099410", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980987", + "980987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099449", + "1483099449", + "1483099512", + "1483099449", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980989", + "980989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099450", + "1483099450", + "1483099497", + "1483099450", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980997", + "980997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099489", + "1483099489", + "1483099524", + "1483099489", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981001", + "981001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099498", + "1483099498", + "1483099544", + "1483099498", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981003", + "981003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099510", + "1483099510", + "1483099585", + "1483099510", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981005", + "981005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099513", + "1483099513", + "1483099548", + "1483099513", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981015", + "981015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099549", + "1483099549", + "1483099580", + "1483099549", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981017", + "981017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099560", + "1483099560", + "1483099600", + "1483099560", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981021", + "981021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099581", + "1483099581", + "1483099625", + "1483099581", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981023", + "981023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099584", + "1483099584", + "1483099639", + "1483099584", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981025", + "981025", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099584", + "1483099584", + "1483099676", + "1483099584", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981033", + "981033", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099626", + "1483099626", + "1483099681", + "1483099626", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981035", + "981035", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099640", + "1483099640", + "1483099689", + "1483099640", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981045", + "981045", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099690", + "1483099690", + "1483099759", + "1483099690", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981047", + "981047", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099701", + "1483099701", + "1483099743", + "1483099701", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981089", + "981089", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099854", + "1483099854", + "1483099890", + "1483099854", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981093", + "981093", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099891", + "1483099891", + "1483099974", + "1483099891", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981095", + "981095", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099895", + "1483099895", + "1483099959", + "1483099895", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981099", + "981099", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099915", + "1483099915", + "1483099962", + "1483099915", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981103", + "981103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099957", + "1483099957", + "1483099993", + "1483099957", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981105", + "981105", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099960", + "1483099960", + "1483100005", + "1483099960", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981113", + "981113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099982", + "1483099982", + "1483100074", + "1483099982", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981115", + "981115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099994", + "1483099994", + "1483100075", + "1483099994", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981117", + "981117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100004", + "1483100004", + "1483100108", + "1483100004", + "1", + "8", + "0", + "-1", + "104", + "0", + "832", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981121", + "981121", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100018", + "1483100018", + "1483100079", + "1483100018", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981131", + "981131", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100076", + "1483100076", + "1483100221", + "1483100076", + "1", + "8", + "0", + "-1", + "145", + "0", + "1160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981133", + "981133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100080", + "1483100080", + "1483100227", + "1483100080", + "1", + "8", + "0", + "-1", + "147", + "0", + "1176", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981137", + "981137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100109", + "1483100109", + "1483100243", + "1483100109", + "1", + "8", + "0", + "-1", + "134", + "0", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981159", + "981159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100308", + "1483100308", + "1483100472", + "1483100308", + "1", + "8", + "0", + "-1", + "164", + "0", + "1312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981181", + "981181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100500", + "1483100500", + "1483100550", + "1483100500", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981183", + "981183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100506", + "1483100506", + "1483100559", + "1483100506", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981185", + "981185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100533", + "1483100533", + "1483100596", + "1483100533", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981189", + "981189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100547", + "1483100547", + "1483100612", + "1483100547", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981191", + "981191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100551", + "1483100551", + "1483100618", + "1483100551", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981193", + "981193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100560", + "1483100560", + "1483100626", + "1483100560", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981195", + "981195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100565", + "1483100565", + "1483100618", + "1483100565", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981199", + "981199", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100597", + "1483100597", + "1483100639", + "1483100597", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981201", + "981201", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100613", + "1483100613", + "1483100665", + "1483100613", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981203", + "981203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100618", + "1483100618", + "1483100673", + "1483100618", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981209", + "981209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100627", + "1483100627", + "1483100695", + "1483100627", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981211", + "981211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100639", + "1483100639", + "1483100787", + "1483100639", + "1", + "8", + "0", + "-1", + "148", + "0", + "1184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981253", + "981253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100820", + "1483100820", + "1483100875", + "1483100820", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981255", + "981255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100844", + "1483100844", + "1483100895", + "1483100844", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981259", + "981259", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100848", + "1483100848", + "1483100918", + "1483100848", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981269", + "981269", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100896", + "1483100896", + "1483100948", + "1483100896", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981273", + "981273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100919", + "1483100919", + "1483100993", + "1483100919", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981275", + "981275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100949", + "1483100949", + "1483101017", + "1483100949", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981277", + "981277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100960", + "1483100960", + "1483101032", + "1483100960", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981281", + "981281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100973", + "1483100973", + "1483101060", + "1483100973", + "1", + "8", + "0", + "-1", + "87", + "0", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981283", + "981283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100994", + "1483100994", + "1483101080", + "1483100994", + "1", + "8", + "0", + "-1", + "86", + "0", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981285", + "981285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100995", + "1483100995", + "1483101071", + "1483100995", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981291", + "981291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101019", + "1483101019", + "1483101077", + "1483101019", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981293", + "981293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101033", + "1483101033", + "1483101086", + "1483101033", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981297", + "981297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101060", + "1483101060", + "1483101123", + "1483101060", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981301", + "981301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101072", + "1483101072", + "1483101175", + "1483101072", + "1", + "8", + "0", + "-1", + "103", + "0", + "824", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981306", + "981306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101078", + "1483101078", + "1483101178", + "1483101078", + "1", + "8", + "0", + "-1", + "100", + "0", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981328", + "981328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101181", + "1483101181", + "1483101215", + "1483101181", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981345", + "981345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101222", + "1483101222", + "1483101290", + "1483101222", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981355", + "981355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101245", + "1483101245", + "1483101292", + "1483101245", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981365", + "981365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101291", + "1483101291", + "1483101321", + "1483101291", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981377", + "981377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101322", + "1483101322", + "1483101352", + "1483101322", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981385", + "981385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101353", + "1483101353", + "1483101395", + "1483101353", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981387", + "981387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101358", + "1483101358", + "1483101412", + "1483101358", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981393", + "981393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101372", + "1483101372", + "1483101508", + "1483101372", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981395", + "981395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101381", + "1483101381", + "1483101424", + "1483101381", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981397", + "981397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101396", + "1483101396", + "1483101442", + "1483101396", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981403", + "981403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101424", + "1483101424", + "1483101475", + "1483101424", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981407", + "981407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101432", + "1483101432", + "1483101473", + "1483101432", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981413", + "981413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101447", + "1483101447", + "1483101500", + "1483101447", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981415", + "981415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101464", + "1483101464", + "1483101502", + "1483101464", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981419", + "981419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101475", + "1483101475", + "1483101519", + "1483101475", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981435", + "981435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101520", + "1483101520", + "1483101568", + "1483101520", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981449", + "981449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101568", + "1483101568", + "1483101615", + "1483101568", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981455", + "981455", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101582", + "1483101582", + "1483101612", + "1483101582", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981461", + "981461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101612", + "1483101612", + "1483101642", + "1483101612", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981467", + "981467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101623", + "1483101623", + "1483101671", + "1483101623", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981475", + "981475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101654", + "1483101654", + "1483101698", + "1483101654", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981481", + "981481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101668", + "1483101668", + "1483101716", + "1483101668", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981487", + "981487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101685", + "1483101685", + "1483101727", + "1483101685", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981489", + "981489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101699", + "1483101699", + "1483101741", + "1483101699", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981500", + "981500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101726", + "1483101726", + "1483101759", + "1483101726", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981504", + "981504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101742", + "1483101742", + "1483101792", + "1483101742", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981506", + "981506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101750", + "1483101750", + "1483101800", + "1483101750", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981510", + "981510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101760", + "1483101760", + "1483101797", + "1483101760", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981512", + "981512", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101760", + "1483101760", + "1483101794", + "1483101760", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981520", + "981520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101792", + "1483101792", + "1483101822", + "1483101792", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981530", + "981530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101814", + "1483101814", + "1483101943", + "1483101814", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981532", + "981532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101819", + "1483101819", + "1483101858", + "1483101819", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981554", + "981554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101897", + "1483101897", + "1483101940", + "1483101897", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981579", + "981579", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101944", + "1483101944", + "1483101976", + "1483101944", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981589", + "981589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101982", + "1483101982", + "1483102021", + "1483101982", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981595", + "981595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102021", + "1483102021", + "1483102052", + "1483102021", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981601", + "981601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102032", + "1483102032", + "1483102071", + "1483102032", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981603", + "981603", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102043", + "1483102043", + "1483102093", + "1483102043", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981609", + "981609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102064", + "1483102064", + "1483102098", + "1483102064", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981611", + "981611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102065", + "1483102065", + "1483102101", + "1483102065", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981619", + "981619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102079", + "1483102079", + "1483102124", + "1483102079", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981623", + "981623", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102094", + "1483102094", + "1483102139", + "1483102094", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981627", + "981627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102102", + "1483102102", + "1483102138", + "1483102102", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981633", + "981633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102125", + "1483102125", + "1483102163", + "1483102125", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981635", + "981635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102126", + "1483102126", + "1483102161", + "1483102126", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981645", + "981645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102162", + "1483102162", + "1483102222", + "1483102162", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981683", + "981683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102274", + "1483102274", + "1483102318", + "1483102274", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981707", + "981707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102357", + "1483102357", + "1483102406", + "1483102357", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981711", + "981711", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102364", + "1483102364", + "1483102418", + "1483102364", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981715", + "981715", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102381", + "1483102381", + "1483102431", + "1483102381", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981719", + "981719", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102403", + "1483102403", + "1483102441", + "1483102403", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981725", + "981725", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102432", + "1483102432", + "1483102477", + "1483102432", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981729", + "981729", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102441", + "1483102441", + "1483102488", + "1483102441", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981733", + "981733", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102466", + "1483102466", + "1483102501", + "1483102466", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981737", + "981737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102477", + "1483102477", + "1483102526", + "1483102477", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981749", + "981749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102517", + "1483102517", + "1483102553", + "1483102517", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981753", + "981753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102527", + "1483102527", + "1483102592", + "1483102527", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981773", + "981773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102593", + "1483102593", + "1483102655", + "1483102593", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981797", + "981797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102707", + "1483102707", + "1483102765", + "1483102707", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981803", + "981803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102727", + "1483102727", + "1483102828", + "1483102727", + "1", + "8", + "0", + "-1", + "101", + "0", + "808", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981805", + "981805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102731", + "1483102731", + "1483102913", + "1483102731", + "1", + "8", + "0", + "-1", + "182", + "0", + "1456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981810", + "981810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102766", + "1483102766", + "1483102859", + "1483102766", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981816", + "981816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102829", + "1483102829", + "1483102867", + "1483102829", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981830", + "981830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102885", + "1483102885", + "1483102933", + "1483102885", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981846", + "981846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102933", + "1483102933", + "1483102985", + "1483102933", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981850", + "981850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102936", + "1483102936", + "1483103018", + "1483102936", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981852", + "981852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102942", + "1483102942", + "1483102986", + "1483102942", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981854", + "981854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102951", + "1483102951", + "1483102998", + "1483102951", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981856", + "981856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102966", + "1483102966", + "1483103003", + "1483102966", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981858", + "981858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102983", + "1483102983", + "1483103018", + "1483102983", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981874", + "981874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103017", + "1483103017", + "1483103054", + "1483103017", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981878", + "981878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103019", + "1483103019", + "1483103064", + "1483103019", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981884", + "981884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103028", + "1483103028", + "1483103058", + "1483103028", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981901", + "981901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103065", + "1483103065", + "1483103100", + "1483103065", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981905", + "981905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103091", + "1483103091", + "1483103123", + "1483103091", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981919", + "981919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103127", + "1483103127", + "1483103166", + "1483103127", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981937", + "981937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103187", + "1483103187", + "1483103218", + "1483103187", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981939", + "981939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103190", + "1483103190", + "1483103246", + "1483103190", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981941", + "981941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103194", + "1483103194", + "1483103316", + "1483103194", + "1", + "8", + "0", + "-1", + "122", + "0", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981945", + "981945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103199", + "1483103199", + "1483103238", + "1483103199", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981949", + "981949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103219", + "1483103219", + "1483103254", + "1483103219", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981951", + "981951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103239", + "1483103239", + "1483103274", + "1483103239", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981961", + "981961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103255", + "1483103255", + "1483103302", + "1483103255", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981963", + "981963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103264", + "1483103264", + "1483103312", + "1483103264", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981965", + "981965", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103271", + "1483103271", + "1483103315", + "1483103271", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981969", + "981969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103275", + "1483103275", + "1483103322", + "1483103275", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982003", + "982003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103383", + "1483103383", + "1483103417", + "1483103383", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982011", + "982011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103399", + "1483103399", + "1483103447", + "1483103399", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982036", + "982036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103469", + "1483103469", + "1483103537", + "1483103469", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982038", + "982038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103473", + "1483103473", + "1483103505", + "1483103473", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982042", + "982042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103497", + "1483103497", + "1483103557", + "1483103497", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982052", + "982052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103538", + "1483103538", + "1483103604", + "1483103538", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982057", + "982057", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103543", + "1483103543", + "1483103594", + "1483103543", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982065", + "982065", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103578", + "1483103578", + "1483103619", + "1483103578", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982073", + "982073", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103595", + "1483103595", + "1483103651", + "1483103595", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982075", + "982075", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103604", + "1483103604", + "1483103653", + "1483103604", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982079", + "982079", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103618", + "1483103618", + "1483103672", + "1483103618", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982085", + "982085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103652", + "1483103652", + "1483103698", + "1483103652", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982101", + "982101", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103699", + "1483103699", + "1483103757", + "1483103699", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982103", + "982103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103706", + "1483103706", + "1483103781", + "1483103706", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982111", + "982111", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103734", + "1483103734", + "1483103766", + "1483103734", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982113", + "982113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103757", + "1483103757", + "1483103800", + "1483103757", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982115", + "982115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103758", + "1483103758", + "1483103800", + "1483103758", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982117", + "982117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103766", + "1483103766", + "1483103826", + "1483103766", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982126", + "982126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103787", + "1483103787", + "1483103880", + "1483103787", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982128", + "982128", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103801", + "1483103801", + "1483103848", + "1483103801", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982136", + "982136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103840", + "1483103840", + "1483103883", + "1483103840", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982150", + "982150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103881", + "1483103881", + "1483103936", + "1483103881", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982152", + "982152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103883", + "1483103883", + "1483103916", + "1483103883", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982154", + "982154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103884", + "1483103884", + "1483103925", + "1483103884", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982156", + "982156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103908", + "1483103908", + "1483103940", + "1483103908", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982158", + "982158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103917", + "1483103917", + "1483103957", + "1483103917", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982160", + "982160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103925", + "1483103925", + "1483103964", + "1483103925", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982168", + "982168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103941", + "1483103941", + "1483104104", + "1483103941", + "1", + "8", + "0", + "-1", + "163", + "0", + "1304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982170", + "982170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103958", + "1483103958", + "1483104020", + "1483103958", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982172", + "982172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103965", + "1483103965", + "1483104061", + "1483103965", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982174", + "982174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103982", + "1483103982", + "1483104027", + "1483103982", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982183", + "982183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104028", + "1483104028", + "1483104154", + "1483104028", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982199", + "982199", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104136", + "1483104136", + "1483104268", + "1483104136", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982203", + "982203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104155", + "1483104155", + "1483104281", + "1483104155", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982223", + "982223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104269", + "1483104269", + "1483104316", + "1483104269", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982225", + "982225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104282", + "1483104282", + "1483104330", + "1483104282", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982229", + "982229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104317", + "1483104317", + "1483104391", + "1483104317", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982231", + "982231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104326", + "1483104326", + "1483104365", + "1483104326", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982233", + "982233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104331", + "1483104331", + "1483104403", + "1483104331", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982235", + "982235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104351", + "1483104351", + "1483104406", + "1483104351", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982241", + "982241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104377", + "1483104377", + "1483104425", + "1483104377", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982245", + "982245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104404", + "1483104404", + "1483104453", + "1483104404", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982247", + "982247", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104407", + "1483104407", + "1483104451", + "1483104407", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982251", + "982251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104426", + "1483104426", + "1483104473", + "1483104426", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982254", + "982254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104426", + "1483104426", + "1483104496", + "1483104426", + "1", + "8", + "0", + "-1", + "70", + "0", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982256", + "982256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104437", + "1483104437", + "1483104533", + "1483104437", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982258", + "982258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104452", + "1483104452", + "1483104586", + "1483104452", + "1", + "8", + "0", + "-1", + "134", + "0", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982260", + "982260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104452", + "1483104452", + "1483104531", + "1483104452", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982264", + "982264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104473", + "1483104473", + "1483104529", + "1483104473", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982268", + "982268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104496", + "1483104496", + "1483104558", + "1483104496", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982304", + "982304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104650", + "1483104650", + "1483104816", + "1483104650", + "1", + "8", + "0", + "-1", + "166", + "0", + "1328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982310", + "982310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104706", + "1483104706", + "1483104756", + "1483104706", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982316", + "982316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104741", + "1483104741", + "1483104813", + "1483104741", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982322", + "982322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104788", + "1483104788", + "1483104825", + "1483104788", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982324", + "982324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104796", + "1483104796", + "1483104840", + "1483104796", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982328", + "982328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104814", + "1483104814", + "1483104879", + "1483104814", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982334", + "982334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104826", + "1483104826", + "1483104862", + "1483104826", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982338", + "982338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104838", + "1483104838", + "1483104873", + "1483104838", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982342", + "982342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104863", + "1483104863", + "1483104926", + "1483104863", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982344", + "982344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104869", + "1483104869", + "1483104954", + "1483104869", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982346", + "982346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104873", + "1483104873", + "1483104958", + "1483104873", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982348", + "982348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104880", + "1483104880", + "1483104973", + "1483104880", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982352", + "982352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104904", + "1483104904", + "1483104975", + "1483104904", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982362", + "982362", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104958", + "1483104958", + "1483104998", + "1483104958", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982366", + "982366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104974", + "1483104974", + "1483105027", + "1483104974", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982376", + "982376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105027", + "1483105027", + "1483105079", + "1483105027", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982390", + "982390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105065", + "1483105065", + "1483105140", + "1483105065", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982400", + "982400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105098", + "1483105098", + "1483105188", + "1483105098", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982406", + "982406", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105141", + "1483105141", + "1483105189", + "1483105141", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982408", + "982408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105160", + "1483105160", + "1483105224", + "1483105160", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982416", + "982416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105222", + "1483105222", + "1483105259", + "1483105222", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982423", + "982423", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105237", + "1483105237", + "1483105298", + "1483105237", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982437", + "982437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105287", + "1483105287", + "1483105346", + "1483105287", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982452", + "982452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105315", + "1483105315", + "1483105370", + "1483105315", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982454", + "982454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105338", + "1483105338", + "1483105403", + "1483105338", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982458", + "982458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105346", + "1483105346", + "1483105394", + "1483105346", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982460", + "982460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105346", + "1483105346", + "1483105414", + "1483105346", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982462", + "982462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105356", + "1483105356", + "1483105397", + "1483105356", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982478", + "982478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105427", + "1483105427", + "1483105501", + "1483105427", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982480", + "982480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105428", + "1483105428", + "1483105589", + "1483105428", + "1", + "8", + "0", + "-1", + "161", + "0", + "1288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982498", + "982498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105531", + "1483105531", + "1483105588", + "1483105531", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982520", + "982520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105620", + "1483105620", + "1483105775", + "1483105620", + "1", + "8", + "0", + "-1", + "155", + "0", + "1240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982522", + "982522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105621", + "1483105621", + "1483105677", + "1483105621", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982536", + "982536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105702", + "1483105702", + "1483105744", + "1483105702", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982538", + "982538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105717", + "1483105717", + "1483105779", + "1483105717", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982540", + "982540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105722", + "1483105722", + "1483105783", + "1483105722", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982548", + "982548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105763", + "1483105763", + "1483105795", + "1483105763", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982550", + "982550", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105775", + "1483105775", + "1483105819", + "1483105775", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982552", + "982552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105780", + "1483105780", + "1483105818", + "1483105780", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982554", + "982554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105784", + "1483105784", + "1483105838", + "1483105784", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982562", + "982562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105819", + "1483105819", + "1483105863", + "1483105819", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982574", + "982574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105866", + "1483105866", + "1483105924", + "1483105866", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982592", + "982592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105929", + "1483105929", + "1483106000", + "1483105929", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982602", + "982602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105967", + "1483105967", + "1483106001", + "1483105967", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982606", + "982606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105986", + "1483105986", + "1483106030", + "1483105986", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982608", + "982608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106000", + "1483106000", + "1483106065", + "1483106000", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982610", + "982610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106001", + "1483106001", + "1483106047", + "1483106001", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982614", + "982614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106017", + "1483106017", + "1483106050", + "1483106017", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982620", + "982620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106031", + "1483106031", + "1483106074", + "1483106031", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982624", + "982624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106048", + "1483106048", + "1483106138", + "1483106048", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982630", + "982630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106066", + "1483106066", + "1483106135", + "1483106066", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982632", + "982632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106074", + "1483106074", + "1483106168", + "1483106074", + "1", + "8", + "0", + "-1", + "94", + "0", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982636", + "982636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106119", + "1483106119", + "1483106191", + "1483106119", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982638", + "982638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106130", + "1483106130", + "1483106186", + "1483106130", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982640", + "982640", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106136", + "1483106136", + "1483106208", + "1483106136", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982642", + "982642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106139", + "1483106139", + "1483106197", + "1483106139", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982653", + "982653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106186", + "1483106186", + "1483106267", + "1483106186", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982657", + "982657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106192", + "1483106192", + "1483106281", + "1483106192", + "1", + "8", + "0", + "-1", + "89", + "0", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982659", + "982659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106198", + "1483106198", + "1483106361", + "1483106198", + "1", + "8", + "0", + "-1", + "163", + "0", + "1304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982675", + "982675", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106281", + "1483106281", + "1483106320", + "1483106281", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982679", + "982679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106316", + "1483106316", + "1483106375", + "1483106316", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982687", + "982687", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106338", + "1483106338", + "1483106426", + "1483106338", + "1", + "8", + "0", + "-1", + "88", + "0", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982697", + "982697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106374", + "1483106374", + "1483106417", + "1483106374", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982711", + "982711", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106418", + "1483106418", + "1483106498", + "1483106418", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982713", + "982713", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106425", + "1483106425", + "1483106476", + "1483106425", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982717", + "982717", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106449", + "1483106449", + "1483106607", + "1483106449", + "1", + "8", + "0", + "-1", + "158", + "0", + "1264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982723", + "982723", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106477", + "1483106477", + "1483106536", + "1483106477", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982725", + "982725", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106499", + "1483106499", + "1483106561", + "1483106499", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982727", + "982727", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106505", + "1483106505", + "1483106556", + "1483106505", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982729", + "982729", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106515", + "1483106515", + "1483106598", + "1483106515", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982735", + "982735", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106537", + "1483106537", + "1483106584", + "1483106537", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982737", + "982737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106546", + "1483106546", + "1483106621", + "1483106546", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982739", + "982739", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106556", + "1483106556", + "1483106682", + "1483106556", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982741", + "982741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106561", + "1483106561", + "1483106679", + "1483106561", + "1", + "8", + "0", + "-1", + "118", + "0", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982743", + "982743", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106585", + "1483106585", + "1483106790", + "1483106585", + "1", + "8", + "0", + "-1", + "205", + "0", + "1640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982745", + "982745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106599", + "1483106599", + "1483106730", + "1483106599", + "1", + "8", + "0", + "-1", + "131", + "0", + "1048", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982747", + "982747", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106608", + "1483106608", + "1483106744", + "1483106608", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982762", + "982762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106711", + "1483106711", + "1483106792", + "1483106711", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982782", + "982782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106768", + "1483106768", + "1483106806", + "1483106768", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982808", + "982808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106868", + "1483106868", + "1483106968", + "1483106868", + "1", + "8", + "0", + "-1", + "100", + "0", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982810", + "982810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106869", + "1483106869", + "1483106915", + "1483106869", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982812", + "982812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106884", + "1483106884", + "1483106962", + "1483106884", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982816", + "982816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106892", + "1483106892", + "1483106923", + "1483106892", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982818", + "982818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106899", + "1483106899", + "1483106949", + "1483106899", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982820", + "982820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106916", + "1483106916", + "1483106959", + "1483106916", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982826", + "982826", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106950", + "1483106950", + "1483107081", + "1483106950", + "1", + "8", + "0", + "-1", + "131", + "0", + "1048", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982828", + "982828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106955", + "1483106955", + "1483107005", + "1483106955", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982830", + "982830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106960", + "1483106960", + "1483107036", + "1483106960", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982849", + "982849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107037", + "1483107037", + "1483107084", + "1483107037", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982851", + "982851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107038", + "1483107038", + "1483107100", + "1483107038", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982859", + "982859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107082", + "1483107082", + "1483107145", + "1483107082", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982861", + "982861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107085", + "1483107085", + "1483107170", + "1483107085", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982863", + "982863", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107101", + "1483107101", + "1483107206", + "1483107101", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982869", + "982869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107124", + "1483107124", + "1483107199", + "1483107124", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982873", + "982873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107146", + "1483107146", + "1483107257", + "1483107146", + "1", + "8", + "0", + "-1", + "111", + "0", + "888", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982877", + "982877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107199", + "1483107199", + "1483107381", + "1483107199", + "1", + "8", + "0", + "-1", + "182", + "0", + "1456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982881", + "982881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107207", + "1483107207", + "1483107319", + "1483107207", + "1", + "8", + "0", + "-1", + "112", + "0", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982885", + "982885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107258", + "1483107258", + "1483107547", + "1483107258", + "1", + "8", + "0", + "-1", + "289", + "0", + "2312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982889", + "982889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107278", + "1483107278", + "1483107477", + "1483107278", + "1", + "8", + "0", + "-1", + "199", + "0", + "1592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982897", + "982897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107316", + "1483107316", + "1483107390", + "1483107316", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982899", + "982899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107320", + "1483107320", + "1483107378", + "1483107320", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982903", + "982903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107382", + "1483107382", + "1483107449", + "1483107382", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982905", + "982905", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107391", + "1483107391", + "1483107444", + "1483107391", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982909", + "982909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107445", + "1483107445", + "1483107489", + "1483107445", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982911", + "982911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107450", + "1483107450", + "1483107481", + "1483107450", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982945", + "982945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107559", + "1483107559", + "1483107601", + "1483107559", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982953", + "982953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107602", + "1483107602", + "1483107653", + "1483107602", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982981", + "982981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107700", + "1483107700", + "1483107732", + "1483107700", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982989", + "982989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107712", + "1483107712", + "1483107855", + "1483107712", + "1", + "8", + "0", + "-1", + "143", + "0", + "1144", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982991", + "982991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107719", + "1483107719", + "1483107766", + "1483107719", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982993", + "982993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107733", + "1483107733", + "1483107794", + "1483107733", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982997", + "982997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107754", + "1483107754", + "1483107793", + "1483107754", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982999", + "982999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107764", + "1483107764", + "1483107817", + "1483107764", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983001", + "983001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107767", + "1483107767", + "1483107815", + "1483107767", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983009", + "983009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107794", + "1483107794", + "1483107841", + "1483107794", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983013", + "983013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107814", + "1483107814", + "1483107873", + "1483107814", + "1", + "8", + "0", + "-1", + "59", + "0", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983017", + "983017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107817", + "1483107817", + "1483107861", + "1483107817", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983062", + "983062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107965", + "1483107965", + "1483108019", + "1483107965", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983070", + "983070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108008", + "1483108008", + "1483108056", + "1483108008", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983076", + "983076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108020", + "1483108020", + "1483108097", + "1483108020", + "1", + "8", + "0", + "-1", + "77", + "0", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983089", + "983089", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108081", + "1483108081", + "1483108119", + "1483108081", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983091", + "983091", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108095", + "1483108095", + "1483108144", + "1483108095", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983095", + "983095", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108098", + "1483108098", + "1483108132", + "1483108098", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983099", + "983099", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108116", + "1483108116", + "1483108155", + "1483108116", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983103", + "983103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108126", + "1483108126", + "1483108164", + "1483108126", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983105", + "983105", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108133", + "1483108133", + "1483108169", + "1483108133", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983115", + "983115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108165", + "1483108165", + "1483108208", + "1483108165", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983175", + "983175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108345", + "1483108345", + "1483108376", + "1483108345", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983183", + "983183", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108362", + "1483108362", + "1483108404", + "1483108362", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983189", + "983189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108388", + "1483108388", + "1483108450", + "1483108388", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983191", + "983191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108399", + "1483108399", + "1483108443", + "1483108399", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983197", + "983197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108405", + "1483108405", + "1483108459", + "1483108405", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983202", + "983202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108439", + "1483108439", + "1483108470", + "1483108439", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983206", + "983206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108451", + "1483108451", + "1483108497", + "1483108451", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983210", + "983210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108457", + "1483108457", + "1483108537", + "1483108457", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983212", + "983212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108460", + "1483108460", + "1483108520", + "1483108460", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983214", + "983214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108471", + "1483108471", + "1483108621", + "1483108471", + "1", + "8", + "0", + "-1", + "150", + "0", + "1200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983216", + "983216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108479", + "1483108479", + "1483108531", + "1483108479", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983224", + "983224", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108520", + "1483108520", + "1483108565", + "1483108520", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983248", + "983248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108621", + "1483108621", + "1483108657", + "1483108621", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983260", + "983260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108650", + "1483108650", + "1483108799", + "1483108650", + "1", + "8", + "0", + "-1", + "149", + "0", + "1192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983262", + "983262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108658", + "1483108658", + "1483108712", + "1483108658", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983279", + "983279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108748", + "1483108748", + "1483108783", + "1483108748", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983281", + "983281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108757", + "1483108757", + "1483108791", + "1483108757", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983285", + "983285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108765", + "1483108765", + "1483108825", + "1483108765", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983287", + "983287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108783", + "1483108783", + "1483108823", + "1483108783", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983293", + "983293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108800", + "1483108800", + "1483108850", + "1483108800", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983301", + "983301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108824", + "1483108824", + "1483108903", + "1483108824", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983304", + "983304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108824", + "1483108824", + "1483108973", + "1483108824", + "1", + "8", + "0", + "-1", + "149", + "0", + "1192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983308", + "983308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108850", + "1483108850", + "1483108934", + "1483108850", + "1", + "8", + "0", + "-1", + "84", + "0", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983326", + "983326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108935", + "1483108935", + "1483108970", + "1483108935", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983343", + "983343", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108992", + "1483108992", + "1483109031", + "1483108992", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983355", + "983355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109004", + "1483109004", + "1483109042", + "1483109004", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983361", + "983361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109043", + "1483109043", + "1483109118", + "1483109043", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983363", + "983363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109049", + "1483109049", + "1483109116", + "1483109049", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983369", + "983369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109083", + "1483109083", + "1483109163", + "1483109083", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983373", + "983373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109117", + "1483109117", + "1483109196", + "1483109117", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983379", + "983379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109127", + "1483109127", + "1483109199", + "1483109127", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983385", + "983385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109164", + "1483109164", + "1483109229", + "1483109164", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983387", + "983387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109191", + "1483109191", + "1483109258", + "1483109191", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983391", + "983391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109194", + "1483109194", + "1483109302", + "1483109194", + "1", + "8", + "0", + "-1", + "108", + "0", + "864", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983393", + "983393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109197", + "1483109197", + "1483109304", + "1483109197", + "1", + "8", + "0", + "-1", + "107", + "0", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983395", + "983395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109200", + "1483109200", + "1483109391", + "1483109200", + "1", + "8", + "0", + "-1", + "191", + "0", + "1528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983403", + "983403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109259", + "1483109259", + "1483109292", + "1483109259", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983405", + "983405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109289", + "1483109289", + "1483109330", + "1483109289", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983407", + "983407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109293", + "1483109293", + "1483109336", + "1483109293", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983411", + "983411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109303", + "1483109303", + "1483109351", + "1483109303", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983415", + "983415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109330", + "1483109330", + "1483109383", + "1483109330", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983441", + "983441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109410", + "1483109410", + "1483109515", + "1483109410", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983447", + "983447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109445", + "1483109445", + "1483109486", + "1483109445", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983449", + "983449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109449", + "1483109449", + "1483109488", + "1483109449", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983451", + "983451", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109452", + "1483109452", + "1483109493", + "1483109452", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983461", + "983461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109494", + "1483109494", + "1483109538", + "1483109494", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983467", + "983467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109514", + "1483109514", + "1483109547", + "1483109514", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983483", + "983483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109544", + "1483109544", + "1483109585", + "1483109544", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983491", + "983491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109558", + "1483109558", + "1483109610", + "1483109558", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983493", + "983493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109567", + "1483109567", + "1483109605", + "1483109567", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983495", + "983495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109581", + "1483109581", + "1483109627", + "1483109581", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983507", + "983507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109614", + "1483109614", + "1483109664", + "1483109614", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983511", + "983511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109628", + "1483109628", + "1483109676", + "1483109628", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983513", + "983513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109634", + "1483109634", + "1483109684", + "1483109634", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983515", + "983515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109638", + "1483109638", + "1483109672", + "1483109638", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983536", + "983536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109691", + "1483109691", + "1483109739", + "1483109691", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983540", + "983540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109735", + "1483109735", + "1483109772", + "1483109735", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983542", + "983542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109740", + "1483109740", + "1483109774", + "1483109740", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983558", + "983558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109790", + "1483109790", + "1483109839", + "1483109790", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983578", + "983578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109840", + "1483109840", + "1483109939", + "1483109840", + "1", + "8", + "0", + "-1", + "99", + "0", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983580", + "983580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109843", + "1483109843", + "1483109885", + "1483109843", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983582", + "983582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109849", + "1483109849", + "1483109899", + "1483109849", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983586", + "983586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109868", + "1483109868", + "1483109907", + "1483109868", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983590", + "983590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109886", + "1483109886", + "1483109931", + "1483109886", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983592", + "983592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109896", + "1483109896", + "1483109939", + "1483109896", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983598", + "983598", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109912", + "1483109912", + "1483109954", + "1483109912", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983602", + "983602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109932", + "1483109932", + "1483109970", + "1483109932", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983606", + "983606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109940", + "1483109940", + "1483109991", + "1483109940", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983615", + "983615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109954", + "1483109954", + "1483109990", + "1483109954", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983617", + "983617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109965", + "1483109965", + "1483110021", + "1483109965", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983619", + "983619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109968", + "1483109968", + "1483110024", + "1483109968", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983621", + "983621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109971", + "1483109971", + "1483110036", + "1483109971", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983639", + "983639", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110058", + "1483110058", + "1483110115", + "1483110058", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983652", + "983652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110109", + "1483110109", + "1483110140", + "1483110109", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983666", + "983666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110166", + "1483110166", + "1483110219", + "1483110166", + "1", + "8", + "0", + "-1", + "53", + "0", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983674", + "983674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110192", + "1483110192", + "1483110235", + "1483110192", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983676", + "983676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110206", + "1483110206", + "1483110277", + "1483110206", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983678", + "983678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110220", + "1483110220", + "1483110276", + "1483110220", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983686", + "983686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110277", + "1483110277", + "1483110309", + "1483110277", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983697", + "983697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110309", + "1483110309", + "1483110359", + "1483110309", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983703", + "983703", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110323", + "1483110323", + "1483110361", + "1483110323", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983709", + "983709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110353", + "1483110353", + "1483110419", + "1483110353", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983711", + "983711", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110360", + "1483110360", + "1483110459", + "1483110360", + "1", + "8", + "0", + "-1", + "99", + "0", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983717", + "983717", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110383", + "1483110383", + "1483110487", + "1483110383", + "1", + "8", + "0", + "-1", + "104", + "0", + "832", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983727", + "983727", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110441", + "1483110441", + "1483110513", + "1483110441", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983737", + "983737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110510", + "1483110510", + "1483110584", + "1483110510", + "1", + "8", + "0", + "-1", + "74", + "0", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983749", + "983749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110576", + "1483110576", + "1483110637", + "1483110576", + "1", + "8", + "0", + "-1", + "61", + "0", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983759", + "983759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110589", + "1483110589", + "1483110743", + "1483110589", + "1", + "8", + "0", + "-1", + "154", + "0", + "1232", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983763", + "983763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110626", + "1483110626", + "1483110719", + "1483110626", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983767", + "983767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110638", + "1483110638", + "1483110782", + "1483110638", + "1", + "8", + "0", + "-1", + "144", + "0", + "1152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983769", + "983769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110672", + "1483110672", + "1483110816", + "1483110672", + "1", + "8", + "0", + "-1", + "144", + "0", + "1152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983771", + "983771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110681", + "1483110681", + "1483110832", + "1483110681", + "1", + "8", + "0", + "-1", + "151", + "0", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983773", + "983773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110690", + "1483110690", + "1483110829", + "1483110690", + "1", + "8", + "0", + "-1", + "139", + "0", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983775", + "983775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110720", + "1483110720", + "1483110854", + "1483110720", + "1", + "8", + "0", + "-1", + "134", + "0", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983779", + "983779", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110783", + "1483110783", + "1483110933", + "1483110783", + "1", + "8", + "0", + "-1", + "150", + "0", + "1200", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983783", + "983783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110817", + "1483110817", + "1483110930", + "1483110817", + "1", + "8", + "0", + "-1", + "113", + "0", + "904", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983787", + "983787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110833", + "1483110833", + "1483110975", + "1483110833", + "1", + "8", + "0", + "-1", + "142", + "0", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983789", + "983789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110854", + "1483110854", + "1483110938", + "1483110854", + "1", + "8", + "0", + "-1", + "84", + "0", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983791", + "983791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110858", + "1483110858", + "1483110951", + "1483110858", + "1", + "8", + "0", + "-1", + "93", + "0", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983803", + "983803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110964", + "1483110964", + "1483111134", + "1483110964", + "1", + "8", + "0", + "-1", + "170", + "0", + "1360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983807", + "983807", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111063", + "1483111063", + "1483111187", + "1483111063", + "1", + "8", + "0", + "-1", + "124", + "0", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983811", + "983811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111074", + "1483111074", + "1483111173", + "1483111074", + "1", + "8", + "0", + "-1", + "99", + "0", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983825", + "983825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111186", + "1483111186", + "1483111241", + "1483111186", + "1", + "8", + "0", + "-1", + "55", + "0", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983827", + "983827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111188", + "1483111188", + "1483111252", + "1483111188", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983833", + "983833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111199", + "1483111199", + "1483111261", + "1483111199", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983835", + "983835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111225", + "1483111225", + "1483111290", + "1483111225", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983837", + "983837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111242", + "1483111242", + "1483111299", + "1483111242", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983839", + "983839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111246", + "1483111246", + "1483111304", + "1483111246", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983841", + "983841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111253", + "1483111253", + "1483111329", + "1483111253", + "1", + "8", + "0", + "-1", + "76", + "0", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983845", + "983845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111262", + "1483111262", + "1483111347", + "1483111262", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983847", + "983847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111291", + "1483111291", + "1483111364", + "1483111291", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983849", + "983849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111300", + "1483111300", + "1483111373", + "1483111300", + "1", + "8", + "0", + "-1", + "73", + "0", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983855", + "983855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111330", + "1483111330", + "1483111415", + "1483111330", + "1", + "8", + "0", + "-1", + "85", + "0", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983857", + "983857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111348", + "1483111348", + "1483111426", + "1483111348", + "1", + "8", + "0", + "-1", + "78", + "0", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983859", + "983859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111364", + "1483111364", + "1483111411", + "1483111364", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983861", + "983861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111374", + "1483111374", + "1483111423", + "1483111374", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983883", + "983883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111495", + "1483111495", + "1483111534", + "1483111495", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983885", + "983885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111504", + "1483111504", + "1483111573", + "1483111504", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983893", + "983893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111534", + "1483111534", + "1483111615", + "1483111534", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983897", + "983897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111546", + "1483111546", + "1483111662", + "1483111546", + "1", + "8", + "0", + "-1", + "116", + "0", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983899", + "983899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111559", + "1483111559", + "1483111619", + "1483111559", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983911", + "983911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111599", + "1483111599", + "1483111670", + "1483111599", + "1", + "8", + "0", + "-1", + "71", + "0", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983921", + "983921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111635", + "1483111635", + "1483111666", + "1483111635", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983925", + "983925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111652", + "1483111652", + "1483111734", + "1483111652", + "1", + "8", + "0", + "-1", + "82", + "0", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983927", + "983927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111653", + "1483111653", + "1483111697", + "1483111653", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983929", + "983929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111663", + "1483111663", + "1483111698", + "1483111663", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983933", + "983933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111671", + "1483111671", + "1483111736", + "1483111671", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983935", + "983935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111688", + "1483111688", + "1483111742", + "1483111688", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983937", + "983937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111693", + "1483111693", + "1483111785", + "1483111693", + "1", + "8", + "0", + "-1", + "92", + "0", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983939", + "983939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111698", + "1483111698", + "1483111764", + "1483111698", + "1", + "8", + "0", + "-1", + "66", + "0", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983947", + "983947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111742", + "1483111742", + "1483111847", + "1483111742", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983949", + "983949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111764", + "1483111764", + "1483111812", + "1483111764", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983951", + "983951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111779", + "1483111779", + "1483111817", + "1483111779", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983957", + "983957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111812", + "1483111812", + "1483111842", + "1483111812", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983959", + "983959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111813", + "1483111813", + "1483111854", + "1483111813", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983963", + "983963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111818", + "1483111818", + "1483111851", + "1483111818", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983969", + "983969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111848", + "1483111848", + "1483111879", + "1483111848", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "983991", + "983991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111888", + "1483111888", + "1483111930", + "1483111888", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984011", + "984011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111944", + "1483111944", + "1483111976", + "1483111944", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984015", + "984015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111953", + "1483111953", + "1483111994", + "1483111953", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984033", + "984033", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112011", + "1483112011", + "1483112144", + "1483112011", + "1", + "8", + "0", + "-1", + "133", + "0", + "1064", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984037", + "984037", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112026", + "1483112026", + "1483112062", + "1483112026", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984039", + "984039", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112032", + "1483112032", + "1483112099", + "1483112032", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984043", + "984043", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112052", + "1483112052", + "1483112082", + "1483112052", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984049", + "984049", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112075", + "1483112075", + "1483112117", + "1483112075", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984051", + "984051", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112081", + "1483112081", + "1483112126", + "1483112081", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984055", + "984055", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112090", + "1483112090", + "1483112124", + "1483112090", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984057", + "984057", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112100", + "1483112100", + "1483112136", + "1483112100", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984075", + "984075", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112145", + "1483112145", + "1483112277", + "1483112145", + "1", + "8", + "0", + "-1", + "132", + "0", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984117", + "984117", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112284", + "1483112284", + "1483112329", + "1483112284", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984127", + "984127", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112332", + "1483112332", + "1483112370", + "1483112332", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984131", + "984131", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112342", + "1483112342", + "1483112376", + "1483112342", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984145", + "984145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112377", + "1483112377", + "1483112415", + "1483112377", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984151", + "984151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112396", + "1483112396", + "1483112432", + "1483112396", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984157", + "984157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112413", + "1483112413", + "1483112445", + "1483112413", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984159", + "984159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112416", + "1483112416", + "1483112454", + "1483112416", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984167", + "984167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112443", + "1483112443", + "1483112485", + "1483112443", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984239", + "984239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112651", + "1483112651", + "1483112692", + "1483112651", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984241", + "984241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112659", + "1483112659", + "1483112700", + "1483112659", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984253", + "984253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112701", + "1483112701", + "1483112770", + "1483112701", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984257", + "984257", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112712", + "1483112712", + "1483112750", + "1483112712", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984259", + "984259", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112735", + "1483112735", + "1483112800", + "1483112735", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984263", + "984263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112742", + "1483112742", + "1483112774", + "1483112742", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984275", + "984275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112792", + "1483112792", + "1483112822", + "1483112792", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984277", + "984277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112798", + "1483112798", + "1483112830", + "1483112798", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984281", + "984281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112801", + "1483112801", + "1483112837", + "1483112801", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984283", + "984283", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112804", + "1483112804", + "1483112848", + "1483112804", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984285", + "984285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112822", + "1483112822", + "1483112961", + "1483112822", + "1", + "8", + "0", + "-1", + "139", + "0", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984287", + "984287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112830", + "1483112830", + "1483112875", + "1483112830", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984313", + "984313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112904", + "1483112904", + "1483112943", + "1483112904", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984317", + "984317", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112943", + "1483112943", + "1483112976", + "1483112943", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984321", + "984321", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112950", + "1483112950", + "1483113014", + "1483112950", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984333", + "984333", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112977", + "1483112977", + "1483113073", + "1483112977", + "1", + "8", + "0", + "-1", + "96", + "0", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984339", + "984339", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113013", + "1483113013", + "1483113119", + "1483113013", + "1", + "8", + "0", + "-1", + "106", + "0", + "848", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984359", + "984359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113098", + "1483113098", + "1483113130", + "1483113098", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984361", + "984361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113109", + "1483113109", + "1483113239", + "1483113109", + "1", + "8", + "0", + "-1", + "130", + "0", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984363", + "984363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113120", + "1483113120", + "1483113156", + "1483113120", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984365", + "984365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113123", + "1483113123", + "1483113158", + "1483113123", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984367", + "984367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113131", + "1483113131", + "1483113178", + "1483113131", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984379", + "984379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113179", + "1483113179", + "1483113227", + "1483113179", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984381", + "984381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113183", + "1483113183", + "1483113228", + "1483113183", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984385", + "984385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113199", + "1483113199", + "1483113233", + "1483113199", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984387", + "984387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113213", + "1483113213", + "1483113244", + "1483113213", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984435", + "984435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113370", + "1483113370", + "1483113405", + "1483113370", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984440", + "984440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113371", + "1483113371", + "1483113406", + "1483113371", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984442", + "984442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113379", + "1483113379", + "1483113417", + "1483113379", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984444", + "984444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113394", + "1483113394", + "1483113441", + "1483113394", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984448", + "984448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113407", + "1483113407", + "1483113451", + "1483113407", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984470", + "984470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113486", + "1483113486", + "1483113554", + "1483113486", + "1", + "8", + "0", + "-1", + "68", + "0", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984480", + "984480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113560", + "1483113560", + "1483113814", + "1483113560", + "1", + "8", + "0", + "-1", + "254", + "0", + "2032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984486", + "984486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113624", + "1483113624", + "1483113772", + "1483113624", + "1", + "8", + "0", + "-1", + "148", + "0", + "1184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984492", + "984492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113644", + "1483113644", + "1483113725", + "1483113644", + "1", + "8", + "0", + "-1", + "81", + "0", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984500", + "984500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113732", + "1483113732", + "1483113769", + "1483113732", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984506", + "984506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113770", + "1483113770", + "1483113817", + "1483113770", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984534", + "984534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113839", + "1483113839", + "1483113883", + "1483113839", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984540", + "984540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113856", + "1483113856", + "1483113894", + "1483113856", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984558", + "984558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113918", + "1483113918", + "1483113958", + "1483113918", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984562", + "984562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113930", + "1483113930", + "1483113980", + "1483113930", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984568", + "984568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113959", + "1483113959", + "1483113992", + "1483113959", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984572", + "984572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113980", + "1483113980", + "1483114019", + "1483113980", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984578", + "984578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113993", + "1483113993", + "1483114032", + "1483113993", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984580", + "984580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113997", + "1483113997", + "1483114047", + "1483113997", + "1", + "8", + "0", + "-1", + "50", + "0", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984584", + "984584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114007", + "1483114007", + "1483114045", + "1483114007", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984586", + "984586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114012", + "1483114012", + "1483114047", + "1483114012", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984590", + "984590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114020", + "1483114020", + "1483114067", + "1483114020", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984652", + "984652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114203", + "1483114203", + "1483114243", + "1483114203", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984660", + "984660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114221", + "1483114221", + "1483114286", + "1483114221", + "1", + "8", + "0", + "-1", + "65", + "0", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984666", + "984666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114244", + "1483114244", + "1483114278", + "1483114244", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984698", + "984698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114335", + "1483114335", + "1483114365", + "1483114335", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984700", + "984700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114348", + "1483114348", + "1483114469", + "1483114348", + "1", + "8", + "0", + "-1", + "121", + "0", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984704", + "984704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114354", + "1483114354", + "1483114417", + "1483114354", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984710", + "984710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114361", + "1483114361", + "1483114403", + "1483114361", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984712", + "984712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114366", + "1483114366", + "1483114398", + "1483114366", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984718", + "984718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114399", + "1483114399", + "1483114440", + "1483114399", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984752", + "984752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114502", + "1483114502", + "1483114554", + "1483114502", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984756", + "984756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114520", + "1483114520", + "1483114560", + "1483114520", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984781", + "984781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114592", + "1483114592", + "1483114632", + "1483114592", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984793", + "984793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114642", + "1483114642", + "1483114687", + "1483114642", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984801", + "984801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114663", + "1483114663", + "1483114799", + "1483114663", + "1", + "8", + "0", + "-1", + "136", + "0", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984803", + "984803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114674", + "1483114674", + "1483114728", + "1483114674", + "1", + "8", + "0", + "-1", + "54", + "0", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984807", + "984807", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114688", + "1483114688", + "1483114745", + "1483114688", + "1", + "8", + "0", + "-1", + "57", + "0", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984809", + "984809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114691", + "1483114691", + "1483114731", + "1483114691", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984811", + "984811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114705", + "1483114705", + "1483114739", + "1483114705", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984815", + "984815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114725", + "1483114725", + "1483114772", + "1483114725", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984823", + "984823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114740", + "1483114740", + "1483114775", + "1483114740", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984825", + "984825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114746", + "1483114746", + "1483114808", + "1483114746", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984851", + "984851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114826", + "1483114826", + "1483114860", + "1483114826", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984853", + "984853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114835", + "1483114835", + "1483114895", + "1483114835", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984877", + "984877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114928", + "1483114928", + "1483114962", + "1483114928", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984881", + "984881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114946", + "1483114946", + "1483115029", + "1483114946", + "1", + "8", + "0", + "-1", + "83", + "0", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984885", + "984885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114955", + "1483114955", + "1483115129", + "1483114955", + "1", + "8", + "0", + "-1", + "174", + "0", + "1392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984889", + "984889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115001", + "1483115001", + "1483115091", + "1483115001", + "1", + "8", + "0", + "-1", + "90", + "0", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984891", + "984891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115012", + "1483115012", + "1483115063", + "1483115012", + "1", + "8", + "0", + "-1", + "51", + "0", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984897", + "984897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115047", + "1483115047", + "1483115081", + "1483115047", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984899", + "984899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115054", + "1483115054", + "1483115092", + "1483115054", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984903", + "984903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115063", + "1483115063", + "1483115112", + "1483115063", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984907", + "984907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115077", + "1483115077", + "1483115107", + "1483115077", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984909", + "984909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115082", + "1483115082", + "1483115154", + "1483115082", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984911", + "984911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115092", + "1483115092", + "1483115148", + "1483115092", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984913", + "984913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115092", + "1483115092", + "1483115123", + "1483115092", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984915", + "984915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115108", + "1483115108", + "1483115154", + "1483115108", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984921", + "984921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115130", + "1483115130", + "1483115166", + "1483115130", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984933", + "984933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115155", + "1483115155", + "1483115189", + "1483115155", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984953", + "984953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115213", + "1483115213", + "1483115244", + "1483115213", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984963", + "984963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115245", + "1483115245", + "1483115294", + "1483115245", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984979", + "984979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115295", + "1483115295", + "1483115347", + "1483115295", + "1", + "8", + "0", + "-1", + "52", + "0", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984985", + "984985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115303", + "1483115303", + "1483115390", + "1483115303", + "1", + "8", + "0", + "-1", + "87", + "0", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984989", + "984989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115318", + "1483115318", + "1483115381", + "1483115318", + "1", + "8", + "0", + "-1", + "63", + "0", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "984991", + "984991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115326", + "1483115326", + "1483115369", + "1483115326", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985005", + "985005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115391", + "1483115391", + "1483115437", + "1483115391", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985007", + "985007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115408", + "1483115408", + "1483115453", + "1483115408", + "1", + "8", + "0", + "-1", + "45", + "0", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985009", + "985009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115421", + "1483115421", + "1483115507", + "1483115421", + "1", + "8", + "0", + "-1", + "86", + "0", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985011", + "985011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115429", + "1483115429", + "1483115587", + "1483115429", + "1", + "8", + "0", + "-1", + "158", + "0", + "1264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985015", + "985015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115438", + "1483115438", + "1483115496", + "1483115438", + "1", + "8", + "0", + "-1", + "58", + "0", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985017", + "985017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115454", + "1483115454", + "1483115510", + "1483115454", + "1", + "8", + "0", + "-1", + "56", + "0", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985023", + "985023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115497", + "1483115497", + "1483115569", + "1483115497", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985027", + "985027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115508", + "1483115508", + "1483115577", + "1483115508", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985038", + "985038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115531", + "1483115531", + "1483115563", + "1483115531", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985044", + "985044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115544", + "1483115544", + "1483115591", + "1483115544", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985084", + "985084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115661", + "1483115661", + "1483115721", + "1483115661", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985086", + "985086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115665", + "1483115665", + "1483115791", + "1483115665", + "1", + "8", + "0", + "-1", + "126", + "0", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985090", + "985090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115666", + "1483115666", + "1483115715", + "1483115666", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985108", + "985108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115734", + "1483115734", + "1483115769", + "1483115734", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985112", + "985112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115754", + "1483115754", + "1483115797", + "1483115754", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985114", + "985114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115760", + "1483115760", + "1483115802", + "1483115760", + "1", + "8", + "0", + "-1", + "42", + "0", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985124", + "985124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115791", + "1483115791", + "1483115823", + "1483115791", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985136", + "985136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115813", + "1483115813", + "1483115877", + "1483115813", + "1", + "8", + "0", + "-1", + "64", + "0", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985142", + "985142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115835", + "1483115835", + "1483115871", + "1483115835", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985146", + "985146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115855", + "1483115855", + "1483115898", + "1483115855", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985152", + "985152", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115872", + "1483115872", + "1483115907", + "1483115872", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985174", + "985174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115949", + "1483115949", + "1483116011", + "1483115949", + "1", + "8", + "0", + "-1", + "62", + "0", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985176", + "985176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115949", + "1483115949", + "1483116009", + "1483115949", + "1", + "8", + "0", + "-1", + "60", + "0", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985178", + "985178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115950", + "1483115950", + "1483116072", + "1483115950", + "1", + "8", + "0", + "-1", + "122", + "0", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985217", + "985217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116070", + "1483116070", + "1483116101", + "1483116070", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985225", + "985225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116088", + "1483116088", + "1483116128", + "1483116088", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985253", + "985253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116167", + "1483116167", + "1483116204", + "1483116167", + "1", + "8", + "0", + "-1", + "37", + "0", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985263", + "985263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116199", + "1483116199", + "1483116247", + "1483116199", + "1", + "8", + "0", + "-1", + "48", + "0", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985265", + "985265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116199", + "1483116199", + "1483116239", + "1483116199", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985267", + "985267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116204", + "1483116204", + "1483116238", + "1483116204", + "1", + "8", + "0", + "-1", + "34", + "0", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985297", + "985297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116296", + "1483116296", + "1483116334", + "1483116296", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "985318", + "985318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116320", + "1483116320", + "1483116358", + "1483116320", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168478", + "168478", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061291", + "1483061291", + "1483061330", + "1483061291", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168529", + "168529", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061641", + "1483061641", + "1483061685", + "1483061641", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168572", + "168572", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061921", + "1483061921", + "1483061952", + "1483061921", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "168991", + "168991", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064965", + "1483064965", + "1483065003", + "1483064965", + "1", + "8", + "0", + "-1", + "38", + "0", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169291", + "169291", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067148", + "1483067148", + "1483067192", + "1483067148", + "1", + "8", + "0", + "-1", + "44", + "0", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "169520", + "169520", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068645", + "1483068645", + "1483068686", + "1483068645", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170128", + "170128", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072002", + "1483072002", + "1483072041", + "1483072002", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170232", + "170232", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072642", + "1483072642", + "1483072674", + "1483072642", + "1", + "8", + "0", + "-1", + "32", + "0", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170392", + "170392", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073663", + "1483073663", + "1483073710", + "1483073663", + "1", + "8", + "0", + "-1", + "47", + "0", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170434", + "170434", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073949", + "1483073949", + "1483073982", + "1483073949", + "1", + "8", + "0", + "-1", + "33", + "0", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170631", + "170631", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075162", + "1483075162", + "1483075229", + "1483075162", + "1", + "8", + "0", + "-1", + "67", + "0", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "170980", + "170980", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077809", + "1483077809", + "1483077849", + "1483077809", + "1", + "8", + "0", + "-1", + "40", + "0", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171330", + "171330", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080392", + "1483080392", + "1483080467", + "1483080392", + "1", + "8", + "0", + "-1", + "75", + "0", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "171798", + "171798", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083351", + "1483083351", + "1483083386", + "1483083351", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172319", + "172319", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085978", + "1483085978", + "1483086058", + "1483085978", + "1", + "8", + "0", + "-1", + "80", + "0", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "172503", + "172503", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086896", + "1483086896", + "1483086926", + "1483086896", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173145", + "173145", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090877", + "1483090877", + "1483090907", + "1483090877", + "1", + "8", + "0", + "-1", + "30", + "0", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173677", + "173677", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094252", + "1483094252", + "1483094293", + "1483094252", + "1", + "8", + "0", + "-1", + "41", + "0", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "173780", + "173780", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094975", + "1483094975", + "1483095014", + "1483094975", + "1", + "8", + "0", + "-1", + "39", + "0", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174372", + "174372", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099413", + "1483099413", + "1483099459", + "1483099413", + "1", + "8", + "0", + "-1", + "46", + "0", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174535", + "174535", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101072", + "1483101072", + "1483101177", + "1483101072", + "1", + "8", + "0", + "-1", + "105", + "0", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "174793", + "174793", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102731", + "1483102731", + "1483102800", + "1483102731", + "1", + "8", + "0", + "-1", + "69", + "0", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175025", + "175025", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104426", + "1483104426", + "1483104461", + "1483104426", + "1", + "8", + "0", + "-1", + "35", + "0", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175125", + "175125", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105301", + "1483105301", + "1483105337", + "1483105301", + "1", + "8", + "0", + "-1", + "36", + "0", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175226", + "175226", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106141", + "1483106141", + "1483106172", + "1483106141", + "1", + "8", + "0", + "-1", + "31", + "0", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175326", + "175326", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107006", + "1483107006", + "1483107055", + "1483107006", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "175771", + "175771", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110308", + "1483110308", + "1483110357", + "1483110308", + "1", + "8", + "0", + "-1", + "49", + "0", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176081", + "176081", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112898", + "1483112898", + "1483112941", + "1483112898", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "176450", + "176450", + "Phillips", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115510", + "1483115510", + "1483115589", + "1483115510", + "1", + "8", + "0", + "-1", + "79", + "0", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "1004944", + "1004944", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483065756", + "1483065756", + "1483065962", + "1483065756", + "1", + "8", + "0", + "-1", + "206", + "0", + "1648", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005038", + "1005038", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483067447", + "1483067447", + "1483067519", + "1483067447", + "1", + "8", + "0", + "-1", + "72", + "0", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1005699", + "1005699", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483076101", + "1483076101", + "1483076427", + "1483076101", + "1", + "8", + "0", + "-1", + "326", + "0", + "2608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006110", + "1006110", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483081510", + "1483081510", + "1483081599", + "1483081510", + "1", + "8", + "0", + "-1", + "89", + "0", + "712", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006907", + "1006907", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483092688", + "1483092688", + "1483092798", + "1483092688", + "1", + "8", + "0", + "-1", + "110", + "0", + "880", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006918", + "1006918", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483092808", + "1483092808", + "1483092945", + "1483092808", + "1", + "8", + "0", + "-1", + "137", + "0", + "1096", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007208", + "1007208", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483096654", + "1483096654", + "1483096909", + "1483096654", + "1", + "8", + "0", + "-1", + "255", + "0", + "2040", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007502", + "1007502", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483100500", + "1483100500", + "1483100543", + "1483100500", + "1", + "8", + "0", + "-1", + "43", + "0", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008100", + "1008100", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483109276", + "1483109276", + "1483109405", + "1483109276", + "1", + "8", + "0", + "-1", + "129", + "0", + "1032", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009303", + "1009303", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483122737", + "1483122737", + "1483122867", + "1483122737", + "1", + "8", + "0", + "-1", + "130", + "0", + "1040", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010169", + "1010169", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483134032", + "1483134032", + "1483134398", + "1483134032", + "1", + "8", + "0", + "-1", + "366", + "0", + "2928", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1010262", + "1010262", + "Posidriv", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "banana-cream", + "1483135353", + "1483135353", + "1483135568", + "1483135353", + "1", + "8", + "0", + "-1", + "215", + "0", + "1720", + "0", + "0:0", + "COMPLETED", + "8", + "2147486448Mn", + "259200", + "black", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006431", + "1006431", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483085916", + "1483085916", + "1483086069", + "1483085916", + "1", + "8", + "0", + "-1", + "153", + "0", + "1224", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006565", + "1006565", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483087982", + "1483087982", + "1483089311", + "1483087982", + "1", + "8", + "0", + "-1", + "1329", + "0", + "10632", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006572", + "1006572", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483088066", + "1483088066", + "1483089805", + "1483088066", + "1", + "8", + "0", + "-1", + "1739", + "0", + "13912", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006898", + "1006898", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483092552", + "1483092552", + "1483093812", + "1483092552", + "1", + "8", + "0", + "-1", + "1260", + "0", + "10080", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007148", + "1007148", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483095876", + "1483095876", + "1483096148", + "1483095876", + "1", + "8", + "0", + "-1", + "272", + "0", + "2176", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007328", + "1007328", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483098229", + "1483098229", + "1483098809", + "1483098229", + "1", + "8", + "0", + "-1", + "580", + "0", + "4640", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007525", + "1007525", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483100778", + "1483100778", + "1483101457", + "1483100778", + "1", + "8", + "0", + "-1", + "679", + "0", + "5432", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008311", + "1008311", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483112316", + "1483112316", + "1483113071", + "1483112316", + "1", + "8", + "0", + "-1", + "755", + "0", + "6040", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008748", + "1008748", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483117476", + "1483117476", + "1483118804", + "1483117476", + "1", + "8", + "0", + "-1", + "1328", + "0", + "10624", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008900", + "1008900", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "banana-cream", + "1483118951", + "1483118951", + "1483119568", + "1483118951", + "1", + "8", + "0", + "-1", + "617", + "0", + "4936", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1006529", + "1006529", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483087348", + "1483087348", + "1483088088", + "1483087348", + "1", + "8", + "0", + "-1", + "740", + "0", + "5920", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007217", + "1007217", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483096750", + "1483096750", + "1483097475", + "1483096750", + "1", + "8", + "0", + "-1", + "725", + "0", + "5800", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007259", + "1007259", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483097215", + "1483097215", + "1483097965", + "1483097215", + "1", + "8", + "0", + "-1", + "750", + "0", + "6000", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007271", + "1007271", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483097336", + "1483097336", + "1483097492", + "1483097336", + "1", + "8", + "0", + "-1", + "156", + "0", + "1248", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1007307", + "1007307", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483097894", + "1483097894", + "1483098427", + "1483097894", + "1", + "8", + "0", + "-1", + "533", + "0", + "4264", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008041", + "1008041", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483108434", + "1483108434", + "1483109513", + "1483108434", + "1", + "8", + "0", + "-1", + "1079", + "0", + "8632", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008170", + "1008170", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483110307", + "1483110307", + "1483110913", + "1483110307", + "1", + "8", + "0", + "-1", + "606", + "0", + "4848", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008240", + "1008240", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483111266", + "1483111266", + "1483112030", + "1483111266", + "1", + "8", + "0", + "-1", + "764", + "0", + "6112", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008270", + "1008270", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483111758", + "1483111758", + "1483112977", + "1483111758", + "1", + "8", + "0", + "-1", + "1219", + "0", + "9752", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1008725", + "1008725", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483117278", + "1483117278", + "1483117654", + "1483117278", + "1", + "8", + "0", + "-1", + "376", + "0", + "3008", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009192", + "1009192", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483121725", + "1483121725", + "1483122653", + "1483121725", + "1", + "8", + "0", + "-1", + "928", + "0", + "7424", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009293", + "1009293", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483122659", + "1483122659", + "1483124416", + "1483122659", + "1", + "8", + "0", + "-1", + "1757", + "0", + "14056", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009322", + "1009322", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483123043", + "1483123043", + "1483123912", + "1483123043", + "1", + "8", + "0", + "-1", + "869", + "0", + "6952", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009335", + "1009335", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483123153", + "1483123153", + "1483123605", + "1483123153", + "1", + "8", + "0", + "-1", + "452", + "0", + "3616", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "1009418", + "1009418", + "Posidriv", + "UTC", + "", + "Dove, Turtle", + "Screwdriver", + "apple", + "1483124223", + "1483124223", + "1483125229", + "1483124223", + "1", + "8", + "0", + "-1", + "1006", + "0", + "8048", + "0", + "0:0", + "COMPLETED", + "8", + "23000Mn", + "10800000", + "croutons", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "2275568", + "2275568", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054500", + "1483054500", + "1483056044", + "1483054500", + "1", + "12", + "0", + "-1", + "1544", + "0", + "18528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275570", + "2275570", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054513", + "1483054513", + "1483056156", + "1483054513", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275573", + "2275573", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054551", + "1483054551", + "1483056328", + "1483054551", + "1", + "12", + "0", + "-1", + "1777", + "0", + "21324", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275575", + "2275575", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054560", + "1483054560", + "1483056345", + "1483054560", + "1", + "12", + "0", + "-1", + "1785", + "0", + "21420", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275582", + "2275582", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054594", + "1483054594", + "1483056306", + "1483054594", + "1", + "12", + "0", + "-1", + "1712", + "0", + "20544", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275627", + "2275627", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054881", + "1483054881", + "1483056285", + "1483054881", + "1", + "12", + "0", + "-1", + "1404", + "0", + "16848", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275636", + "2275636", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483054954", + "1483054954", + "1483056730", + "1483054954", + "1", + "12", + "0", + "-1", + "1776", + "0", + "21312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275643", + "2275643", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055005", + "1483055005", + "1483056342", + "1483055005", + "1", + "12", + "0", + "-1", + "1337", + "0", + "16044", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275649", + "2275649", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055041", + "1483055041", + "1483056413", + "1483055041", + "1", + "12", + "0", + "-1", + "1372", + "0", + "16464", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275653", + "2275653", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055070", + "1483055070", + "1483056682", + "1483055070", + "1", + "12", + "0", + "-1", + "1612", + "0", + "19344", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275688", + "2275688", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055733", + "1483055733", + "1483057524", + "1483055733", + "1", + "12", + "0", + "-1", + "1791", + "0", + "21492", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275690", + "2275690", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055737", + "1483055737", + "1483057202", + "1483055737", + "1", + "12", + "0", + "-1", + "1465", + "0", + "17580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275693", + "2275693", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055850", + "1483055850", + "1483057279", + "1483055850", + "1", + "12", + "0", + "-1", + "1429", + "0", + "17148", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275724", + "2275724", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056191", + "1483056191", + "1483057730", + "1483056191", + "1", + "12", + "0", + "-1", + "1539", + "0", + "18468", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275730", + "2275730", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056214", + "1483056214", + "1483057658", + "1483056214", + "1", + "12", + "0", + "-1", + "1444", + "0", + "17328", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275758", + "2275758", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056530", + "1483056530", + "1483057738", + "1483056530", + "1", + "12", + "0", + "-1", + "1208", + "0", + "14496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275798", + "2275798", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056910", + "1483056910", + "1483058553", + "1483056910", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275800", + "2275800", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056914", + "1483056914", + "1483058291", + "1483056914", + "1", + "12", + "0", + "-1", + "1377", + "0", + "16524", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275808", + "2275808", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057056", + "1483057056", + "1483058586", + "1483057056", + "1", + "12", + "0", + "-1", + "1530", + "0", + "18360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275836", + "2275836", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057288", + "1483057288", + "1483059051", + "1483057288", + "1", + "12", + "0", + "-1", + "1763", + "0", + "21156", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275864", + "2275864", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057642", + "1483057642", + "1483059124", + "1483057642", + "1", + "12", + "0", + "-1", + "1482", + "0", + "17784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275885", + "2275885", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057968", + "1483057968", + "1483059600", + "1483057968", + "1", + "12", + "0", + "-1", + "1632", + "0", + "19584", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275894", + "2275894", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058049", + "1483058049", + "1483059775", + "1483058049", + "1", + "12", + "0", + "-1", + "1726", + "0", + "20712", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275901", + "2275901", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058164", + "1483058164", + "1483059959", + "1483058164", + "1", + "12", + "0", + "-1", + "1795", + "0", + "21540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275915", + "2275915", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058249", + "1483058249", + "1483059810", + "1483058249", + "1", + "12", + "0", + "-1", + "1561", + "0", + "18732", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275921", + "2275921", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058361", + "1483058361", + "1483060029", + "1483058361", + "1", + "12", + "0", + "-1", + "1668", + "0", + "20016", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275971", + "2275971", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058952", + "1483058952", + "1483060313", + "1483058952", + "1", + "12", + "0", + "-1", + "1361", + "0", + "16332", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275975", + "2275975", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059011", + "1483059011", + "1483060797", + "1483059011", + "1", + "12", + "0", + "-1", + "1786", + "0", + "21432", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275980", + "2275980", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059072", + "1483059072", + "1483060741", + "1483059072", + "1", + "12", + "0", + "-1", + "1669", + "0", + "20028", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275986", + "2275986", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059144", + "1483059144", + "1483060753", + "1483059144", + "1", + "12", + "0", + "-1", + "1609", + "0", + "19308", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275988", + "2275988", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059148", + "1483059148", + "1483060864", + "1483059148", + "1", + "12", + "0", + "-1", + "1716", + "0", + "20592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2275994", + "2275994", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059222", + "1483059222", + "1483060874", + "1483059222", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276006", + "2276006", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059313", + "1483059313", + "1483060878", + "1483059313", + "1", + "12", + "0", + "-1", + "1565", + "0", + "18780", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276052", + "2276052", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059841", + "1483059841", + "1483061409", + "1483059841", + "1", + "12", + "0", + "-1", + "1568", + "0", + "18816", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276054", + "2276054", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059850", + "1483059850", + "1483061471", + "1483059850", + "1", + "12", + "0", + "-1", + "1621", + "0", + "19452", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276056", + "2276056", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059856", + "1483059856", + "1483061486", + "1483059856", + "1", + "12", + "0", + "-1", + "1630", + "0", + "19560", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276058", + "2276058", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059883", + "1483059883", + "1483061463", + "1483059883", + "1", + "12", + "0", + "-1", + "1580", + "0", + "18960", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276060", + "2276060", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059912", + "1483059912", + "1483061535", + "1483059912", + "1", + "12", + "0", + "-1", + "1623", + "0", + "19476", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276062", + "2276062", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059926", + "1483059926", + "1483061546", + "1483059926", + "1", + "12", + "0", + "-1", + "1620", + "0", + "19440", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276077", + "2276077", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060105", + "1483060105", + "1483061660", + "1483060105", + "1", + "12", + "0", + "-1", + "1555", + "0", + "18660", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276079", + "2276079", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060178", + "1483060178", + "1483061828", + "1483060178", + "1", + "12", + "0", + "-1", + "1650", + "0", + "19800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276109", + "2276109", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060563", + "1483060563", + "1483062122", + "1483060563", + "1", + "12", + "0", + "-1", + "1559", + "0", + "18708", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276111", + "2276111", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060588", + "1483060588", + "1483062274", + "1483060588", + "1", + "12", + "0", + "-1", + "1686", + "0", + "20232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276114", + "2276114", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060659", + "1483060659", + "1483062174", + "1483060659", + "1", + "12", + "0", + "-1", + "1515", + "0", + "18180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276116", + "2276116", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060673", + "1483060673", + "1483061859", + "1483060673", + "1", + "12", + "0", + "-1", + "1186", + "0", + "14232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276118", + "2276118", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060684", + "1483060684", + "1483062343", + "1483060684", + "1", + "12", + "0", + "-1", + "1659", + "0", + "19908", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276138", + "2276138", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060802", + "1483060802", + "1483062431", + "1483060802", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276152", + "2276152", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060930", + "1483060930", + "1483062475", + "1483060930", + "1", + "12", + "0", + "-1", + "1545", + "0", + "18540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276159", + "2276159", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061006", + "1483061006", + "1483062326", + "1483061006", + "1", + "12", + "0", + "-1", + "1320", + "0", + "15840", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276161", + "2276161", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061041", + "1483061041", + "1483062700", + "1483061041", + "1", + "12", + "0", + "-1", + "1659", + "0", + "19908", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276167", + "2276167", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061108", + "1483061108", + "1483062738", + "1483061108", + "1", + "12", + "0", + "-1", + "1630", + "0", + "19560", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276170", + "2276170", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061163", + "1483061163", + "1483062818", + "1483061163", + "1", + "12", + "0", + "-1", + "1655", + "0", + "19860", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276175", + "2276175", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061305", + "1483061305", + "1483062891", + "1483061305", + "1", + "12", + "0", + "-1", + "1586", + "0", + "19032", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276177", + "2276177", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061332", + "1483061332", + "1483062969", + "1483061332", + "1", + "12", + "0", + "-1", + "1637", + "0", + "19644", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276203", + "2276203", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061546", + "1483061546", + "1483063297", + "1483061546", + "1", + "12", + "0", + "-1", + "1751", + "0", + "21012", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276205", + "2276205", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061551", + "1483061551", + "1483062988", + "1483061551", + "1", + "12", + "0", + "-1", + "1437", + "0", + "17244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276210", + "2276210", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061605", + "1483061605", + "1483063290", + "1483061605", + "1", + "12", + "0", + "-1", + "1685", + "0", + "20220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276218", + "2276218", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061714", + "1483061714", + "1483063194", + "1483061714", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276221", + "2276221", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061753", + "1483061753", + "1483063170", + "1483061753", + "1", + "12", + "0", + "-1", + "1417", + "0", + "17004", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276227", + "2276227", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061796", + "1483061796", + "1483063479", + "1483061796", + "1", + "12", + "0", + "-1", + "1683", + "0", + "20196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276229", + "2276229", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061805", + "1483061805", + "1483063457", + "1483061805", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276235", + "2276235", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061857", + "1483061857", + "1483063312", + "1483061857", + "1", + "12", + "0", + "-1", + "1455", + "0", + "17460", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276241", + "2276241", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061890", + "1483061890", + "1483063525", + "1483061890", + "1", + "12", + "0", + "-1", + "1635", + "0", + "19620", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276256", + "2276256", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062178", + "1483062178", + "1483063421", + "1483062178", + "1", + "12", + "0", + "-1", + "1243", + "0", + "14916", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276268", + "2276268", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062348", + "1483062348", + "1483063721", + "1483062348", + "1", + "12", + "0", + "-1", + "1373", + "0", + "16476", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276270", + "2276270", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062370", + "1483062370", + "1483064045", + "1483062370", + "1", + "12", + "0", + "-1", + "1675", + "0", + "20100", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276272", + "2276272", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062377", + "1483062377", + "1483063984", + "1483062377", + "1", + "12", + "0", + "-1", + "1607", + "0", + "19284", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276276", + "2276276", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062439", + "1483062439", + "1483064151", + "1483062439", + "1", + "12", + "0", + "-1", + "1712", + "0", + "20544", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276282", + "2276282", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062466", + "1483062466", + "1483063999", + "1483062466", + "1", + "12", + "0", + "-1", + "1533", + "0", + "18396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276286", + "2276286", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062480", + "1483062480", + "1483064063", + "1483062480", + "1", + "12", + "0", + "-1", + "1583", + "0", + "18996", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276289", + "2276289", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062533", + "1483062533", + "1483063987", + "1483062533", + "1", + "12", + "0", + "-1", + "1454", + "0", + "17448", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276294", + "2276294", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062641", + "1483062641", + "1483064326", + "1483062641", + "1", + "12", + "0", + "-1", + "1685", + "0", + "20220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276308", + "2276308", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062775", + "1483062775", + "1483064451", + "1483062775", + "1", + "12", + "0", + "-1", + "1676", + "0", + "20112", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276330", + "2276330", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062900", + "1483062900", + "1483064225", + "1483062900", + "1", + "12", + "0", + "-1", + "1325", + "0", + "15900", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276336", + "2276336", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062938", + "1483062938", + "1483064486", + "1483062938", + "1", + "12", + "0", + "-1", + "1548", + "0", + "18576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276340", + "2276340", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062978", + "1483062978", + "1483064580", + "1483062978", + "1", + "12", + "0", + "-1", + "1602", + "0", + "19224", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276344", + "2276344", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062994", + "1483062994", + "1483064305", + "1483062994", + "1", + "12", + "0", + "-1", + "1311", + "0", + "15732", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276346", + "2276346", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063014", + "1483063014", + "1483064701", + "1483063014", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276353", + "2276353", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063095", + "1483063095", + "1483064730", + "1483063095", + "1", + "12", + "0", + "-1", + "1635", + "0", + "19620", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276361", + "2276361", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063175", + "1483063175", + "1483064643", + "1483063175", + "1", + "12", + "0", + "-1", + "1468", + "0", + "17616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276378", + "2276378", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063300", + "1483063300", + "1483065094", + "1483063300", + "1", + "12", + "0", + "-1", + "1794", + "0", + "21528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276396", + "2276396", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063425", + "1483063425", + "1483065031", + "1483063425", + "1", + "12", + "0", + "-1", + "1606", + "0", + "19272", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276402", + "2276402", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063469", + "1483063469", + "1483064819", + "1483063469", + "1", + "12", + "0", + "-1", + "1350", + "0", + "16200", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276408", + "2276408", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063503", + "1483063503", + "1483065195", + "1483063503", + "1", + "12", + "0", + "-1", + "1692", + "0", + "20304", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276412", + "2276412", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063512", + "1483063512", + "1483065260", + "1483063512", + "1", + "12", + "0", + "-1", + "1748", + "0", + "20976", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276414", + "2276414", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063530", + "1483063530", + "1483065041", + "1483063530", + "1", + "12", + "0", + "-1", + "1511", + "0", + "18132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276416", + "2276416", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063561", + "1483063561", + "1483065217", + "1483063561", + "1", + "12", + "0", + "-1", + "1656", + "0", + "19872", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276428", + "2276428", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063707", + "1483063707", + "1483065407", + "1483063707", + "1", + "12", + "0", + "-1", + "1700", + "0", + "20400", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276430", + "2276430", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063746", + "1483063746", + "1483065183", + "1483063746", + "1", + "12", + "0", + "-1", + "1437", + "0", + "17244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276432", + "2276432", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063753", + "1483063753", + "1483065290", + "1483063753", + "1", + "12", + "0", + "-1", + "1537", + "0", + "18444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276434", + "2276434", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063762", + "1483063762", + "1483065391", + "1483063762", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276454", + "2276454", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064048", + "1483064048", + "1483065728", + "1483064048", + "1", + "12", + "0", + "-1", + "1680", + "0", + "20160", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276458", + "2276458", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064067", + "1483064067", + "1483065539", + "1483064067", + "1", + "12", + "0", + "-1", + "1472", + "0", + "17664", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276460", + "2276460", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064115", + "1483064115", + "1483065620", + "1483064115", + "1", + "12", + "0", + "-1", + "1505", + "0", + "18060", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276466", + "2276466", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064177", + "1483064177", + "1483065701", + "1483064177", + "1", + "12", + "0", + "-1", + "1524", + "0", + "18288", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276470", + "2276470", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064226", + "1483064226", + "1483065862", + "1483064226", + "1", + "12", + "0", + "-1", + "1636", + "0", + "19632", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276472", + "2276472", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064230", + "1483064230", + "1483065710", + "1483064230", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276474", + "2276474", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064242", + "1483064242", + "1483065880", + "1483064242", + "1", + "12", + "0", + "-1", + "1638", + "0", + "19656", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276476", + "2276476", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064246", + "1483064246", + "1483065857", + "1483064246", + "1", + "12", + "0", + "-1", + "1611", + "0", + "19332", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276478", + "2276478", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064251", + "1483064251", + "1483065725", + "1483064251", + "1", + "12", + "0", + "-1", + "1474", + "0", + "17688", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276480", + "2276480", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064308", + "1483064308", + "1483065892", + "1483064308", + "1", + "12", + "0", + "-1", + "1584", + "0", + "19008", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276482", + "2276482", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064315", + "1483064315", + "1483066028", + "1483064315", + "1", + "12", + "0", + "-1", + "1713", + "0", + "20556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276484", + "2276484", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064330", + "1483064330", + "1483065873", + "1483064330", + "1", + "12", + "0", + "-1", + "1543", + "0", + "18516", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276508", + "2276508", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064586", + "1483064586", + "1483066104", + "1483064586", + "1", + "12", + "0", + "-1", + "1518", + "0", + "18216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276511", + "2276511", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064647", + "1483064647", + "1483066385", + "1483064647", + "1", + "12", + "0", + "-1", + "1738", + "0", + "20856", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276515", + "2276515", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064658", + "1483064658", + "1483066214", + "1483064658", + "1", + "12", + "0", + "-1", + "1556", + "0", + "18672", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276517", + "2276517", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064672", + "1483064672", + "1483065998", + "1483064672", + "1", + "12", + "0", + "-1", + "1326", + "0", + "15912", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276565", + "2276565", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065065", + "1483065065", + "1483066488", + "1483065065", + "1", + "12", + "0", + "-1", + "1423", + "0", + "17076", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276572", + "2276572", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065141", + "1483065141", + "1483066513", + "1483065141", + "1", + "12", + "0", + "-1", + "1372", + "0", + "16464", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276575", + "2276575", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065189", + "1483065189", + "1483066700", + "1483065189", + "1", + "12", + "0", + "-1", + "1511", + "0", + "18132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276581", + "2276581", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065221", + "1483065221", + "1483066551", + "1483065221", + "1", + "12", + "0", + "-1", + "1330", + "0", + "15960", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276592", + "2276592", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065301", + "1483065301", + "1483066916", + "1483065301", + "1", + "12", + "0", + "-1", + "1615", + "0", + "19380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276616", + "2276616", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065544", + "1483065544", + "1483066918", + "1483065544", + "1", + "12", + "0", + "-1", + "1374", + "0", + "16488", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276642", + "2276642", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065849", + "1483065849", + "1483067444", + "1483065849", + "1", + "12", + "0", + "-1", + "1595", + "0", + "19140", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276650", + "2276650", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065879", + "1483065879", + "1483067566", + "1483065879", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276654", + "2276654", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065893", + "1483065893", + "1483067517", + "1483065893", + "1", + "12", + "0", + "-1", + "1624", + "0", + "19488", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276661", + "2276661", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065947", + "1483065947", + "1483067613", + "1483065947", + "1", + "12", + "0", + "-1", + "1666", + "0", + "19992", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276665", + "2276665", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065967", + "1483065967", + "1483067561", + "1483065967", + "1", + "12", + "0", + "-1", + "1594", + "0", + "19128", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276667", + "2276667", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065982", + "1483065982", + "1483067778", + "1483065982", + "1", + "12", + "0", + "-1", + "1796", + "0", + "21552", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276671", + "2276671", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066002", + "1483066002", + "1483067778", + "1483066002", + "1", + "12", + "0", + "-1", + "1776", + "0", + "21312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276673", + "2276673", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066007", + "1483066007", + "1483067655", + "1483066007", + "1", + "12", + "0", + "-1", + "1648", + "0", + "19776", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276675", + "2276675", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066031", + "1483066031", + "1483067444", + "1483066031", + "1", + "12", + "0", + "-1", + "1413", + "0", + "16956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276680", + "2276680", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066060", + "1483066060", + "1483067444", + "1483066060", + "1", + "12", + "0", + "-1", + "1384", + "0", + "16608", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276683", + "2276683", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066071", + "1483066071", + "1483067836", + "1483066071", + "1", + "12", + "0", + "-1", + "1765", + "0", + "21180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276690", + "2276690", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066133", + "1483066133", + "1483067670", + "1483066133", + "1", + "12", + "0", + "-1", + "1537", + "0", + "18444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276713", + "2276713", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066502", + "1483066502", + "1483067915", + "1483066502", + "1", + "12", + "0", + "-1", + "1413", + "0", + "16956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276722", + "2276722", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066579", + "1483066579", + "1483067959", + "1483066579", + "1", + "12", + "0", + "-1", + "1380", + "0", + "16560", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276730", + "2276730", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066666", + "1483066666", + "1483068207", + "1483066666", + "1", + "12", + "0", + "-1", + "1541", + "0", + "18492", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276741", + "2276741", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066779", + "1483066779", + "1483067994", + "1483066779", + "1", + "12", + "0", + "-1", + "1215", + "0", + "14580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276752", + "2276752", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067007", + "1483067007", + "1483068748", + "1483067007", + "1", + "12", + "0", + "-1", + "1741", + "0", + "20892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276754", + "2276754", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067069", + "1483067069", + "1483068620", + "1483067069", + "1", + "12", + "0", + "-1", + "1551", + "0", + "18612", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276770", + "2276770", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067397", + "1483067397", + "1483068598", + "1483067397", + "1", + "12", + "0", + "-1", + "1201", + "0", + "14412", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276780", + "2276780", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067517", + "1483067517", + "1483069053", + "1483067517", + "1", + "12", + "0", + "-1", + "1536", + "0", + "18432", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276784", + "2276784", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067556", + "1483067556", + "1483069246", + "1483067556", + "1", + "12", + "0", + "-1", + "1690", + "0", + "20280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276808", + "2276808", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067712", + "1483067712", + "1483069428", + "1483067712", + "1", + "12", + "0", + "-1", + "1716", + "0", + "20592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276869", + "2276869", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067932", + "1483067932", + "1483069395", + "1483067932", + "1", + "12", + "0", + "-1", + "1463", + "0", + "17556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276884", + "2276884", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068032", + "1483068032", + "1483069076", + "1483068032", + "1", + "12", + "0", + "-1", + "1044", + "0", + "12528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276889", + "2276889", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068084", + "1483068084", + "1483069566", + "1483068084", + "1", + "12", + "0", + "-1", + "1482", + "0", + "17784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276891", + "2276891", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068097", + "1483068097", + "1483069479", + "1483068097", + "1", + "12", + "0", + "-1", + "1382", + "0", + "16584", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276893", + "2276893", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068126", + "1483068126", + "1483069615", + "1483068126", + "1", + "12", + "0", + "-1", + "1489", + "0", + "17868", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276899", + "2276899", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068214", + "1483068214", + "1483069957", + "1483068214", + "1", + "12", + "0", + "-1", + "1743", + "0", + "20916", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276915", + "2276915", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068521", + "1483068521", + "1483069783", + "1483068521", + "1", + "12", + "0", + "-1", + "1262", + "0", + "15144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276919", + "2276919", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068601", + "1483068601", + "1483070393", + "1483068601", + "1", + "12", + "0", + "-1", + "1792", + "0", + "21504", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276925", + "2276925", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068625", + "1483068625", + "1483070230", + "1483068625", + "1", + "12", + "0", + "-1", + "1605", + "0", + "19260", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276931", + "2276931", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068790", + "1483068790", + "1483070286", + "1483068790", + "1", + "12", + "0", + "-1", + "1496", + "0", + "17952", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276939", + "2276939", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068984", + "1483068984", + "1483070260", + "1483068984", + "1", + "12", + "0", + "-1", + "1276", + "0", + "15312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276941", + "2276941", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068995", + "1483068995", + "1483070705", + "1483068995", + "1", + "12", + "0", + "-1", + "1710", + "0", + "20520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276947", + "2276947", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069081", + "1483069081", + "1483070766", + "1483069081", + "1", + "12", + "0", + "-1", + "1685", + "0", + "20220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276961", + "2276961", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069249", + "1483069249", + "1483070924", + "1483069249", + "1", + "12", + "0", + "-1", + "1675", + "0", + "20100", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276967", + "2276967", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069311", + "1483069311", + "1483070916", + "1483069311", + "1", + "12", + "0", + "-1", + "1605", + "0", + "19260", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276971", + "2276971", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069320", + "1483069320", + "1483071027", + "1483069320", + "1", + "12", + "0", + "-1", + "1707", + "0", + "20484", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276973", + "2276973", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069333", + "1483069333", + "1483071034", + "1483069333", + "1", + "12", + "0", + "-1", + "1701", + "0", + "20412", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276978", + "2276978", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069347", + "1483069347", + "1483070989", + "1483069347", + "1", + "12", + "0", + "-1", + "1642", + "0", + "19704", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276990", + "2276990", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069427", + "1483069427", + "1483071092", + "1483069427", + "1", + "12", + "0", + "-1", + "1665", + "0", + "19980", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276992", + "2276992", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069431", + "1483069431", + "1483071158", + "1483069431", + "1", + "12", + "0", + "-1", + "1727", + "0", + "20724", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276996", + "2276996", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069450", + "1483069450", + "1483070684", + "1483069450", + "1", + "12", + "0", + "-1", + "1234", + "0", + "14808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2276998", + "2276998", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069454", + "1483069454", + "1483071024", + "1483069454", + "1", + "12", + "0", + "-1", + "1570", + "0", + "18840", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277032", + "2277032", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069660", + "1483069660", + "1483071007", + "1483069660", + "1", + "12", + "0", + "-1", + "1347", + "0", + "16164", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277035", + "2277035", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069716", + "1483069716", + "1483071245", + "1483069716", + "1", + "12", + "0", + "-1", + "1529", + "0", + "18348", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277049", + "2277049", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069789", + "1483069789", + "1483071258", + "1483069789", + "1", + "12", + "0", + "-1", + "1469", + "0", + "17628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277053", + "2277053", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069810", + "1483069810", + "1483071322", + "1483069810", + "1", + "12", + "0", + "-1", + "1512", + "0", + "18144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277055", + "2277055", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069817", + "1483069817", + "1483071397", + "1483069817", + "1", + "12", + "0", + "-1", + "1580", + "0", + "18960", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277062", + "2277062", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069920", + "1483069920", + "1483071450", + "1483069920", + "1", + "12", + "0", + "-1", + "1530", + "0", + "18360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277064", + "2277064", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069924", + "1483069924", + "1483071131", + "1483069924", + "1", + "12", + "0", + "-1", + "1207", + "0", + "14484", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277066", + "2277066", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069971", + "1483069971", + "1483071519", + "1483069971", + "1", + "12", + "0", + "-1", + "1548", + "0", + "18576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277117", + "2277117", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070269", + "1483070269", + "1483071830", + "1483070269", + "1", + "12", + "0", + "-1", + "1561", + "0", + "18732", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277162", + "2277162", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070845", + "1483070845", + "1483072287", + "1483070845", + "1", + "12", + "0", + "-1", + "1442", + "0", + "17304", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277178", + "2277178", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071012", + "1483071012", + "1483072601", + "1483071012", + "1", + "12", + "0", + "-1", + "1589", + "0", + "19068", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277184", + "2277184", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071027", + "1483071027", + "1483072137", + "1483071027", + "1", + "12", + "0", + "-1", + "1110", + "0", + "13320", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277186", + "2277186", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071032", + "1483071032", + "1483072308", + "1483071032", + "1", + "12", + "0", + "-1", + "1276", + "0", + "15312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277188", + "2277188", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071036", + "1483071036", + "1483072201", + "1483071036", + "1", + "12", + "0", + "-1", + "1165", + "0", + "13980", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277190", + "2277190", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071040", + "1483071040", + "1483072308", + "1483071040", + "1", + "12", + "0", + "-1", + "1268", + "0", + "15216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277195", + "2277195", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071096", + "1483071096", + "1483072863", + "1483071096", + "1", + "12", + "0", + "-1", + "1767", + "0", + "21204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277203", + "2277203", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071162", + "1483071162", + "1483072707", + "1483071162", + "1", + "12", + "0", + "-1", + "1545", + "0", + "18540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277205", + "2277205", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071176", + "1483071176", + "1483072674", + "1483071176", + "1", + "12", + "0", + "-1", + "1498", + "0", + "17976", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277207", + "2277207", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071180", + "1483071180", + "1483072823", + "1483071180", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277211", + "2277211", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071250", + "1483071250", + "1483072903", + "1483071250", + "1", + "12", + "0", + "-1", + "1653", + "0", + "19836", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277225", + "2277225", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071311", + "1483071311", + "1483073027", + "1483071311", + "1", + "12", + "0", + "-1", + "1716", + "0", + "20592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277240", + "2277240", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071452", + "1483071452", + "1483073067", + "1483071452", + "1", + "12", + "0", + "-1", + "1615", + "0", + "19380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277247", + "2277247", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071523", + "1483071523", + "1483073223", + "1483071523", + "1", + "12", + "0", + "-1", + "1700", + "0", + "20400", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277260", + "2277260", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071626", + "1483071626", + "1483072943", + "1483071626", + "1", + "12", + "0", + "-1", + "1317", + "0", + "15804", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277267", + "2277267", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071729", + "1483071729", + "1483073516", + "1483071729", + "1", + "12", + "0", + "-1", + "1787", + "0", + "21444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277273", + "2277273", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071824", + "1483071824", + "1483073534", + "1483071824", + "1", + "12", + "0", + "-1", + "1710", + "0", + "20520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277309", + "2277309", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072165", + "1483072165", + "1483073630", + "1483072165", + "1", + "12", + "0", + "-1", + "1465", + "0", + "17580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277325", + "2277325", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072232", + "1483072232", + "1483074020", + "1483072232", + "1", + "12", + "0", + "-1", + "1788", + "0", + "21456", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277327", + "2277327", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072243", + "1483072243", + "1483073726", + "1483072243", + "1", + "12", + "0", + "-1", + "1483", + "0", + "17796", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277333", + "2277333", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072290", + "1483072290", + "1483073793", + "1483072290", + "1", + "12", + "0", + "-1", + "1503", + "0", + "18036", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277358", + "2277358", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072530", + "1483072530", + "1483074147", + "1483072530", + "1", + "12", + "0", + "-1", + "1617", + "0", + "19404", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277367", + "2277367", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072615", + "1483072615", + "1483074356", + "1483072615", + "1", + "12", + "0", + "-1", + "1741", + "0", + "20892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277384", + "2277384", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072879", + "1483072879", + "1483074592", + "1483072879", + "1", + "12", + "0", + "-1", + "1713", + "0", + "20556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277395", + "2277395", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073020", + "1483073020", + "1483074478", + "1483073020", + "1", + "12", + "0", + "-1", + "1458", + "0", + "17496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277397", + "2277397", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073024", + "1483073024", + "1483074557", + "1483073024", + "1", + "12", + "0", + "-1", + "1533", + "0", + "18396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277406", + "2277406", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073059", + "1483073059", + "1483074775", + "1483073059", + "1", + "12", + "0", + "-1", + "1716", + "0", + "20592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277411", + "2277411", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073075", + "1483073075", + "1483074593", + "1483073075", + "1", + "12", + "0", + "-1", + "1518", + "0", + "18216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277428", + "2277428", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073222", + "1483073222", + "1483074975", + "1483073222", + "1", + "12", + "0", + "-1", + "1753", + "0", + "21036", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277436", + "2277436", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073250", + "1483073250", + "1483074908", + "1483073250", + "1", + "12", + "0", + "-1", + "1658", + "0", + "19896", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277457", + "2277457", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073540", + "1483073540", + "1483074973", + "1483073540", + "1", + "12", + "0", + "-1", + "1433", + "0", + "17196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277459", + "2277459", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073545", + "1483073545", + "1483075230", + "1483073545", + "1", + "12", + "0", + "-1", + "1685", + "0", + "20220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277476", + "2277476", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073710", + "1483073710", + "1483075478", + "1483073710", + "1", + "12", + "0", + "-1", + "1768", + "0", + "21216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277524", + "2277524", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074076", + "1483074076", + "1483075621", + "1483074076", + "1", + "12", + "0", + "-1", + "1545", + "0", + "18540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277526", + "2277526", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074081", + "1483074081", + "1483075862", + "1483074081", + "1", + "12", + "0", + "-1", + "1781", + "0", + "21372", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277528", + "2277528", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074096", + "1483074096", + "1483075668", + "1483074096", + "1", + "12", + "0", + "-1", + "1572", + "0", + "18864", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277586", + "2277586", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074712", + "1483074712", + "1483076204", + "1483074712", + "1", + "12", + "0", + "-1", + "1492", + "0", + "17904", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277601", + "2277601", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074908", + "1483074908", + "1483076315", + "1483074908", + "1", + "12", + "0", + "-1", + "1407", + "0", + "16884", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277603", + "2277603", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074913", + "1483074913", + "1483076585", + "1483074913", + "1", + "12", + "0", + "-1", + "1672", + "0", + "20064", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277605", + "2277605", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074942", + "1483074942", + "1483076390", + "1483074942", + "1", + "12", + "0", + "-1", + "1448", + "0", + "17376", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277610", + "2277610", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074977", + "1483074977", + "1483076627", + "1483074977", + "1", + "12", + "0", + "-1", + "1650", + "0", + "19800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277619", + "2277619", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075034", + "1483075034", + "1483076675", + "1483075034", + "1", + "12", + "0", + "-1", + "1641", + "0", + "19692", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277653", + "2277653", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075336", + "1483075336", + "1483076985", + "1483075336", + "1", + "12", + "0", + "-1", + "1649", + "0", + "19788", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277665", + "2277665", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075481", + "1483075481", + "1483076950", + "1483075481", + "1", + "12", + "0", + "-1", + "1469", + "0", + "17628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277672", + "2277672", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075523", + "1483075523", + "1483077097", + "1483075523", + "1", + "12", + "0", + "-1", + "1574", + "0", + "18888", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277677", + "2277677", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075541", + "1483075541", + "1483077055", + "1483075541", + "1", + "12", + "0", + "-1", + "1514", + "0", + "18168", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277681", + "2277681", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075595", + "1483075595", + "1483077308", + "1483075595", + "1", + "12", + "0", + "-1", + "1713", + "0", + "20556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277745", + "2277745", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076325", + "1483076325", + "1483078104", + "1483076325", + "1", + "12", + "0", + "-1", + "1779", + "0", + "21348", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277755", + "2277755", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076400", + "1483076400", + "1483078090", + "1483076400", + "1", + "12", + "0", + "-1", + "1690", + "0", + "20280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277764", + "2277764", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076494", + "1483076494", + "1483078183", + "1483076494", + "1", + "12", + "0", + "-1", + "1689", + "0", + "20268", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277796", + "2277796", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076841", + "1483076841", + "1483078263", + "1483076841", + "1", + "12", + "0", + "-1", + "1422", + "0", + "17064", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277798", + "2277798", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076856", + "1483076856", + "1483078530", + "1483076856", + "1", + "12", + "0", + "-1", + "1674", + "0", + "20088", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277800", + "2277800", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076886", + "1483076886", + "1483078498", + "1483076886", + "1", + "12", + "0", + "-1", + "1612", + "0", + "19344", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277840", + "2277840", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077132", + "1483077132", + "1483078835", + "1483077132", + "1", + "12", + "0", + "-1", + "1703", + "0", + "20436", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277870", + "2277870", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077482", + "1483077482", + "1483079221", + "1483077482", + "1", + "12", + "0", + "-1", + "1739", + "0", + "20868", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277893", + "2277893", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077814", + "1483077814", + "1483079476", + "1483077814", + "1", + "12", + "0", + "-1", + "1662", + "0", + "19944", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277901", + "2277901", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077849", + "1483077849", + "1483079147", + "1483077849", + "1", + "12", + "0", + "-1", + "1298", + "0", + "15576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277903", + "2277903", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077853", + "1483077853", + "1483079288", + "1483077853", + "1", + "12", + "0", + "-1", + "1435", + "0", + "17220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277906", + "2277906", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077871", + "1483077871", + "1483079423", + "1483077871", + "1", + "12", + "0", + "-1", + "1552", + "0", + "18624", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277913", + "2277913", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077904", + "1483077904", + "1483079384", + "1483077904", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277919", + "2277919", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078045", + "1483078045", + "1483079634", + "1483078045", + "1", + "12", + "0", + "-1", + "1589", + "0", + "19068", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277928", + "2277928", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078137", + "1483078137", + "1483079597", + "1483078137", + "1", + "12", + "0", + "-1", + "1460", + "0", + "17520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277938", + "2277938", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078188", + "1483078188", + "1483079813", + "1483078188", + "1", + "12", + "0", + "-1", + "1625", + "0", + "19500", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277942", + "2277942", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078223", + "1483078223", + "1483079978", + "1483078223", + "1", + "12", + "0", + "-1", + "1755", + "0", + "21060", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277976", + "2277976", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078509", + "1483078509", + "1483080257", + "1483078509", + "1", + "12", + "0", + "-1", + "1748", + "0", + "20976", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277990", + "2277990", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078601", + "1483078601", + "1483080253", + "1483078601", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2277992", + "2277992", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078622", + "1483078622", + "1483080062", + "1483078622", + "1", + "12", + "0", + "-1", + "1440", + "0", + "17280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278040", + "2278040", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079031", + "1483079031", + "1483080786", + "1483079031", + "1", + "12", + "0", + "-1", + "1755", + "0", + "21060", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278065", + "2278065", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079153", + "1483079153", + "1483080907", + "1483079153", + "1", + "12", + "0", + "-1", + "1754", + "0", + "21048", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278076", + "2278076", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079226", + "1483079226", + "1483080934", + "1483079226", + "1", + "12", + "0", + "-1", + "1708", + "0", + "20496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278082", + "2278082", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079243", + "1483079243", + "1483080799", + "1483079243", + "1", + "12", + "0", + "-1", + "1556", + "0", + "18672", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278090", + "2278090", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079341", + "1483079341", + "1483080883", + "1483079341", + "1", + "12", + "0", + "-1", + "1542", + "0", + "18504", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278093", + "2278093", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079388", + "1483079388", + "1483080716", + "1483079388", + "1", + "12", + "0", + "-1", + "1328", + "0", + "15936", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278095", + "2278095", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079393", + "1483079393", + "1483080630", + "1483079393", + "1", + "12", + "0", + "-1", + "1237", + "0", + "14844", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278097", + "2278097", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079397", + "1483079397", + "1483081040", + "1483079397", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278113", + "2278113", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079605", + "1483079605", + "1483080831", + "1483079605", + "1", + "12", + "0", + "-1", + "1226", + "0", + "14712", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278117", + "2278117", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079638", + "1483079638", + "1483081118", + "1483079638", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278120", + "2278120", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079680", + "1483079680", + "1483080801", + "1483079680", + "1", + "12", + "0", + "-1", + "1121", + "0", + "13452", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278129", + "2278129", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079976", + "1483079976", + "1483081626", + "1483079976", + "1", + "12", + "0", + "-1", + "1650", + "0", + "19800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278131", + "2278131", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079980", + "1483079980", + "1483081318", + "1483079980", + "1", + "12", + "0", + "-1", + "1338", + "0", + "16056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278138", + "2278138", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080067", + "1483080067", + "1483081445", + "1483080067", + "1", + "12", + "0", + "-1", + "1378", + "0", + "16536", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278140", + "2278140", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080091", + "1483080091", + "1483081860", + "1483080091", + "1", + "12", + "0", + "-1", + "1769", + "0", + "21228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278179", + "2278179", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080524", + "1483080524", + "1483082282", + "1483080524", + "1", + "12", + "0", + "-1", + "1758", + "0", + "21096", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278181", + "2278181", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080531", + "1483080531", + "1483082068", + "1483080531", + "1", + "12", + "0", + "-1", + "1537", + "0", + "18444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278185", + "2278185", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080539", + "1483080539", + "1483082047", + "1483080539", + "1", + "12", + "0", + "-1", + "1508", + "0", + "18096", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278190", + "2278190", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080590", + "1483080590", + "1483082308", + "1483080590", + "1", + "12", + "0", + "-1", + "1718", + "0", + "20616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278192", + "2278192", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080595", + "1483080595", + "1483082081", + "1483080595", + "1", + "12", + "0", + "-1", + "1486", + "0", + "17832", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278206", + "2278206", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080654", + "1483080654", + "1483082429", + "1483080654", + "1", + "12", + "0", + "-1", + "1775", + "0", + "21300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278211", + "2278211", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080676", + "1483080676", + "1483082371", + "1483080676", + "1", + "12", + "0", + "-1", + "1695", + "0", + "20340", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278255", + "2278255", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080961", + "1483080961", + "1483082676", + "1483080961", + "1", + "12", + "0", + "-1", + "1715", + "0", + "20580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278263", + "2278263", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081003", + "1483081003", + "1483082505", + "1483081003", + "1", + "12", + "0", + "-1", + "1502", + "0", + "18024", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278265", + "2278265", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081010", + "1483081010", + "1483082786", + "1483081010", + "1", + "12", + "0", + "-1", + "1776", + "0", + "21312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278274", + "2278274", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081103", + "1483081103", + "1483082807", + "1483081103", + "1", + "12", + "0", + "-1", + "1704", + "0", + "20448", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278283", + "2278283", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081163", + "1483081163", + "1483082815", + "1483081163", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278285", + "2278285", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081167", + "1483081167", + "1483082917", + "1483081167", + "1", + "12", + "0", + "-1", + "1750", + "0", + "21000", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278302", + "2278302", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081316", + "1483081316", + "1483083085", + "1483081316", + "1", + "12", + "0", + "-1", + "1769", + "0", + "21228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278321", + "2278321", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081502", + "1483081502", + "1483082938", + "1483081502", + "1", + "12", + "0", + "-1", + "1436", + "0", + "17232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278333", + "2278333", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081823", + "1483081823", + "1483083028", + "1483081823", + "1", + "12", + "0", + "-1", + "1205", + "0", + "14460", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278337", + "2278337", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081867", + "1483081867", + "1483083608", + "1483081867", + "1", + "12", + "0", + "-1", + "1741", + "0", + "20892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278339", + "2278339", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081879", + "1483081879", + "1483083349", + "1483081879", + "1", + "12", + "0", + "-1", + "1470", + "0", + "17640", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278341", + "2278341", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081887", + "1483081887", + "1483083318", + "1483081887", + "1", + "12", + "0", + "-1", + "1431", + "0", + "17172", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278349", + "2278349", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082082", + "1483082082", + "1483083213", + "1483082082", + "1", + "12", + "0", + "-1", + "1131", + "0", + "13572", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278374", + "2278374", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082430", + "1483082430", + "1483083591", + "1483082430", + "1", + "12", + "0", + "-1", + "1161", + "0", + "13932", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278376", + "2278376", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082435", + "1483082435", + "1483083523", + "1483082435", + "1", + "12", + "0", + "-1", + "1088", + "0", + "13056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278403", + "2278403", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082557", + "1483082557", + "1483084288", + "1483082557", + "1", + "12", + "0", + "-1", + "1731", + "0", + "20772", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278433", + "2278433", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082791", + "1483082791", + "1483084506", + "1483082791", + "1", + "12", + "0", + "-1", + "1715", + "0", + "20580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278435", + "2278435", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082806", + "1483082806", + "1483084599", + "1483082806", + "1", + "12", + "0", + "-1", + "1793", + "0", + "21516", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278480", + "2278480", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082996", + "1483082996", + "1483084662", + "1483082996", + "1", + "12", + "0", + "-1", + "1666", + "0", + "19992", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278491", + "2278491", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083090", + "1483083090", + "1483084623", + "1483083090", + "1", + "12", + "0", + "-1", + "1533", + "0", + "18396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278521", + "2278521", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083342", + "1483083342", + "1483085133", + "1483083342", + "1", + "12", + "0", + "-1", + "1791", + "0", + "21492", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278534", + "2278534", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083526", + "1483083526", + "1483084877", + "1483083526", + "1", + "12", + "0", + "-1", + "1351", + "0", + "16212", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278536", + "2278536", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083542", + "1483083542", + "1483085093", + "1483083542", + "1", + "12", + "0", + "-1", + "1551", + "0", + "18612", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278538", + "2278538", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083551", + "1483083551", + "1483085180", + "1483083551", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278542", + "2278542", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083595", + "1483083595", + "1483085161", + "1483083595", + "1", + "12", + "0", + "-1", + "1566", + "0", + "18792", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278544", + "2278544", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083611", + "1483083611", + "1483085376", + "1483083611", + "1", + "12", + "0", + "-1", + "1765", + "0", + "21180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278546", + "2278546", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083615", + "1483083615", + "1483085269", + "1483083615", + "1", + "12", + "0", + "-1", + "1654", + "0", + "19848", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278566", + "2278566", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084066", + "1483084066", + "1483085762", + "1483084066", + "1", + "12", + "0", + "-1", + "1696", + "0", + "20352", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278568", + "2278568", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084103", + "1483084103", + "1483085691", + "1483084103", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278575", + "2278575", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084209", + "1483084209", + "1483085776", + "1483084209", + "1", + "12", + "0", + "-1", + "1567", + "0", + "18804", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278613", + "2278613", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084571", + "1483084571", + "1483086161", + "1483084571", + "1", + "12", + "0", + "-1", + "1590", + "0", + "19080", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278645", + "2278645", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084761", + "1483084761", + "1483086343", + "1483084761", + "1", + "12", + "0", + "-1", + "1582", + "0", + "18984", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278659", + "2278659", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084852", + "1483084852", + "1483086474", + "1483084852", + "1", + "12", + "0", + "-1", + "1622", + "0", + "19464", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278665", + "2278665", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084874", + "1483084874", + "1483086448", + "1483084874", + "1", + "12", + "0", + "-1", + "1574", + "0", + "18888", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278671", + "2278671", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084892", + "1483084892", + "1483086578", + "1483084892", + "1", + "12", + "0", + "-1", + "1686", + "0", + "20232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278675", + "2278675", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084901", + "1483084901", + "1483086566", + "1483084901", + "1", + "12", + "0", + "-1", + "1665", + "0", + "19980", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278679", + "2278679", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084910", + "1483084910", + "1483086704", + "1483084910", + "1", + "12", + "0", + "-1", + "1794", + "0", + "21528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278703", + "2278703", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085137", + "1483085137", + "1483086913", + "1483085137", + "1", + "12", + "0", + "-1", + "1776", + "0", + "21312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278711", + "2278711", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085247", + "1483085247", + "1483087000", + "1483085247", + "1", + "12", + "0", + "-1", + "1753", + "0", + "21036", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278719", + "2278719", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085276", + "1483085276", + "1483086986", + "1483085276", + "1", + "12", + "0", + "-1", + "1710", + "0", + "20520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278735", + "2278735", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085380", + "1483085380", + "1483087034", + "1483085380", + "1", + "12", + "0", + "-1", + "1654", + "0", + "19848", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278740", + "2278740", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085447", + "1483085447", + "1483087170", + "1483085447", + "1", + "12", + "0", + "-1", + "1723", + "0", + "20676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278780", + "2278780", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086058", + "1483086058", + "1483087848", + "1483086058", + "1", + "12", + "0", + "-1", + "1790", + "0", + "21480", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278795", + "2278795", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086379", + "1483086379", + "1483087918", + "1483086379", + "1", + "12", + "0", + "-1", + "1539", + "0", + "18468", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278809", + "2278809", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086541", + "1483086541", + "1483088131", + "1483086541", + "1", + "12", + "0", + "-1", + "1590", + "0", + "19080", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278811", + "2278811", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086552", + "1483086552", + "1483088070", + "1483086552", + "1", + "12", + "0", + "-1", + "1518", + "0", + "18216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278813", + "2278813", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086556", + "1483086556", + "1483087809", + "1483086556", + "1", + "12", + "0", + "-1", + "1253", + "0", + "15036", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278817", + "2278817", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086572", + "1483086572", + "1483088196", + "1483086572", + "1", + "12", + "0", + "-1", + "1624", + "0", + "19488", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278819", + "2278819", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086576", + "1483086576", + "1483088185", + "1483086576", + "1", + "12", + "0", + "-1", + "1609", + "0", + "19308", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278823", + "2278823", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086585", + "1483086585", + "1483087970", + "1483086585", + "1", + "12", + "0", + "-1", + "1385", + "0", + "16620", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278825", + "2278825", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086627", + "1483086627", + "1483088242", + "1483086627", + "1", + "12", + "0", + "-1", + "1615", + "0", + "19380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278838", + "2278838", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086721", + "1483086721", + "1483088423", + "1483086721", + "1", + "12", + "0", + "-1", + "1702", + "0", + "20424", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278845", + "2278845", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086761", + "1483086761", + "1483088434", + "1483086761", + "1", + "12", + "0", + "-1", + "1673", + "0", + "20076", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278851", + "2278851", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086774", + "1483086774", + "1483088407", + "1483086774", + "1", + "12", + "0", + "-1", + "1633", + "0", + "19596", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278853", + "2278853", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086783", + "1483086783", + "1483088352", + "1483086783", + "1", + "12", + "0", + "-1", + "1569", + "0", + "18828", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278855", + "2278855", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086788", + "1483086788", + "1483088533", + "1483086788", + "1", + "12", + "0", + "-1", + "1745", + "0", + "20940", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278857", + "2278857", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086808", + "1483086808", + "1483088583", + "1483086808", + "1", + "12", + "0", + "-1", + "1775", + "0", + "21300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278861", + "2278861", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086828", + "1483086828", + "1483088596", + "1483086828", + "1", + "12", + "0", + "-1", + "1768", + "0", + "21216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278865", + "2278865", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086844", + "1483086844", + "1483088587", + "1483086844", + "1", + "12", + "0", + "-1", + "1743", + "0", + "20916", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278870", + "2278870", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086896", + "1483086896", + "1483088391", + "1483086896", + "1", + "12", + "0", + "-1", + "1495", + "0", + "17940", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278874", + "2278874", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086930", + "1483086930", + "1483088713", + "1483086930", + "1", + "12", + "0", + "-1", + "1783", + "0", + "21396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278876", + "2278876", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086960", + "1483086960", + "1483088571", + "1483086960", + "1", + "12", + "0", + "-1", + "1611", + "0", + "19332", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278893", + "2278893", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087009", + "1483087009", + "1483088621", + "1483087009", + "1", + "12", + "0", + "-1", + "1612", + "0", + "19344", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278902", + "2278902", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087037", + "1483087037", + "1483088788", + "1483087037", + "1", + "12", + "0", + "-1", + "1751", + "0", + "21012", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278907", + "2278907", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087061", + "1483087061", + "1483088743", + "1483087061", + "1", + "12", + "0", + "-1", + "1682", + "0", + "20184", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278931", + "2278931", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087248", + "1483087248", + "1483088813", + "1483087248", + "1", + "12", + "0", + "-1", + "1565", + "0", + "18780", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278933", + "2278933", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087270", + "1483087270", + "1483088884", + "1483087270", + "1", + "12", + "0", + "-1", + "1614", + "0", + "19368", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278935", + "2278935", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087275", + "1483087275", + "1483089057", + "1483087275", + "1", + "12", + "0", + "-1", + "1782", + "0", + "21384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278937", + "2278937", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087286", + "1483087286", + "1483089033", + "1483087286", + "1", + "12", + "0", + "-1", + "1747", + "0", + "20964", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278939", + "2278939", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087305", + "1483087305", + "1483088407", + "1483087305", + "1", + "12", + "0", + "-1", + "1102", + "0", + "13224", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278941", + "2278941", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087310", + "1483087310", + "1483088661", + "1483087310", + "1", + "12", + "0", + "-1", + "1351", + "0", + "16212", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278946", + "2278946", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087351", + "1483087351", + "1483088927", + "1483087351", + "1", + "12", + "0", + "-1", + "1576", + "0", + "18912", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2278954", + "2278954", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087421", + "1483087421", + "1483088719", + "1483087421", + "1", + "12", + "0", + "-1", + "1298", + "0", + "15576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279023", + "2279023", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088362", + "1483088362", + "1483090019", + "1483088362", + "1", + "12", + "0", + "-1", + "1657", + "0", + "19884", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279044", + "2279044", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088453", + "1483088453", + "1483090021", + "1483088453", + "1", + "12", + "0", + "-1", + "1568", + "0", + "18816", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279046", + "2279046", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088464", + "1483088464", + "1483090185", + "1483088464", + "1", + "12", + "0", + "-1", + "1721", + "0", + "20652", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279055", + "2279055", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088538", + "1483088538", + "1483090049", + "1483088538", + "1", + "12", + "0", + "-1", + "1511", + "0", + "18132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279062", + "2279062", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088592", + "1483088592", + "1483090352", + "1483088592", + "1", + "12", + "0", + "-1", + "1760", + "0", + "21120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279070", + "2279070", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088624", + "1483088624", + "1483089973", + "1483088624", + "1", + "12", + "0", + "-1", + "1349", + "0", + "16188", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279072", + "2279072", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088635", + "1483088635", + "1483090212", + "1483088635", + "1", + "12", + "0", + "-1", + "1577", + "0", + "18924", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279079", + "2279079", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088685", + "1483088685", + "1483090038", + "1483088685", + "1", + "12", + "0", + "-1", + "1353", + "0", + "16236", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279082", + "2279082", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088708", + "1483088708", + "1483090341", + "1483088708", + "1", + "12", + "0", + "-1", + "1633", + "0", + "19596", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279121", + "2279121", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089002", + "1483089002", + "1483090489", + "1483089002", + "1", + "12", + "0", + "-1", + "1487", + "0", + "17844", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279125", + "2279125", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089016", + "1483089016", + "1483090613", + "1483089016", + "1", + "12", + "0", + "-1", + "1597", + "0", + "19164", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279127", + "2279127", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089037", + "1483089037", + "1483090807", + "1483089037", + "1", + "12", + "0", + "-1", + "1770", + "0", + "21240", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279132", + "2279132", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089071", + "1483089071", + "1483090787", + "1483089071", + "1", + "12", + "0", + "-1", + "1716", + "0", + "20592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279136", + "2279136", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089113", + "1483089113", + "1483090891", + "1483089113", + "1", + "12", + "0", + "-1", + "1778", + "0", + "21336", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279145", + "2279145", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089272", + "1483089272", + "1483090978", + "1483089272", + "1", + "12", + "0", + "-1", + "1706", + "0", + "20472", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279169", + "2279169", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089603", + "1483089603", + "1483091384", + "1483089603", + "1", + "12", + "0", + "-1", + "1781", + "0", + "21372", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279175", + "2279175", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089662", + "1483089662", + "1483090760", + "1483089662", + "1", + "12", + "0", + "-1", + "1098", + "0", + "13176", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279181", + "2279181", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089757", + "1483089757", + "1483091235", + "1483089757", + "1", + "12", + "0", + "-1", + "1478", + "0", + "17736", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279183", + "2279183", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089775", + "1483089775", + "1483091459", + "1483089775", + "1", + "12", + "0", + "-1", + "1684", + "0", + "20208", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279185", + "2279185", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089798", + "1483089798", + "1483091478", + "1483089798", + "1", + "12", + "0", + "-1", + "1680", + "0", + "20160", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279197", + "2279197", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089952", + "1483089952", + "1483091214", + "1483089952", + "1", + "12", + "0", + "-1", + "1262", + "0", + "15144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279199", + "2279199", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089963", + "1483089963", + "1483091625", + "1483089963", + "1", + "12", + "0", + "-1", + "1662", + "0", + "19944", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279205", + "2279205", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090009", + "1483090009", + "1483091218", + "1483090009", + "1", + "12", + "0", + "-1", + "1209", + "0", + "14508", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279258", + "2279258", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090346", + "1483090346", + "1483092105", + "1483090346", + "1", + "12", + "0", + "-1", + "1759", + "0", + "21108", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279267", + "2279267", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090477", + "1483090477", + "1483092188", + "1483090477", + "1", + "12", + "0", + "-1", + "1711", + "0", + "20532", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279272", + "2279272", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090503", + "1483090503", + "1483092175", + "1483090503", + "1", + "12", + "0", + "-1", + "1672", + "0", + "20064", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279274", + "2279274", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090507", + "1483090507", + "1483092138", + "1483090507", + "1", + "12", + "0", + "-1", + "1631", + "0", + "19572", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279311", + "2279311", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090775", + "1483090775", + "1483092450", + "1483090775", + "1", + "12", + "0", + "-1", + "1675", + "0", + "20100", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279324", + "2279324", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090910", + "1483090910", + "1483092656", + "1483090910", + "1", + "12", + "0", + "-1", + "1746", + "0", + "20952", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279336", + "2279336", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091059", + "1483091059", + "1483092685", + "1483091059", + "1", + "12", + "0", + "-1", + "1626", + "0", + "19512", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279355", + "2279355", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091324", + "1483091324", + "1483093000", + "1483091324", + "1", + "12", + "0", + "-1", + "1676", + "0", + "20112", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279358", + "2279358", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091367", + "1483091367", + "1483093053", + "1483091367", + "1", + "12", + "0", + "-1", + "1686", + "0", + "20232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279366", + "2279366", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091387", + "1483091387", + "1483092950", + "1483091387", + "1", + "12", + "0", + "-1", + "1563", + "0", + "18756", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279387", + "2279387", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091518", + "1483091518", + "1483093173", + "1483091518", + "1", + "12", + "0", + "-1", + "1655", + "0", + "19860", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279402", + "2279402", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091634", + "1483091634", + "1483093281", + "1483091634", + "1", + "12", + "0", + "-1", + "1647", + "0", + "19764", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279405", + "2279405", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091764", + "1483091764", + "1483093429", + "1483091764", + "1", + "12", + "0", + "-1", + "1665", + "0", + "19980", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279429", + "2279429", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092104", + "1483092104", + "1483093654", + "1483092104", + "1", + "12", + "0", + "-1", + "1550", + "0", + "18600", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279435", + "2279435", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092125", + "1483092125", + "1483093521", + "1483092125", + "1", + "12", + "0", + "-1", + "1396", + "0", + "16752", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279445", + "2279445", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092177", + "1483092177", + "1483093961", + "1483092177", + "1", + "12", + "0", + "-1", + "1784", + "0", + "21408", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279448", + "2279448", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092189", + "1483092189", + "1483093867", + "1483092189", + "1", + "12", + "0", + "-1", + "1678", + "0", + "20136", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279454", + "2279454", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092241", + "1483092241", + "1483093469", + "1483092241", + "1", + "12", + "0", + "-1", + "1228", + "0", + "14736", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279464", + "2279464", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092352", + "1483092352", + "1483093944", + "1483092352", + "1", + "12", + "0", + "-1", + "1592", + "0", + "19104", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279467", + "2279467", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092406", + "1483092406", + "1483093996", + "1483092406", + "1", + "12", + "0", + "-1", + "1590", + "0", + "19080", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279469", + "2279469", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092413", + "1483092413", + "1483093960", + "1483092413", + "1", + "12", + "0", + "-1", + "1547", + "0", + "18564", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279496", + "2279496", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092643", + "1483092643", + "1483094092", + "1483092643", + "1", + "12", + "0", + "-1", + "1449", + "0", + "17388", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279501", + "2279501", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092665", + "1483092665", + "1483094068", + "1483092665", + "1", + "12", + "0", + "-1", + "1403", + "0", + "16836", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279513", + "2279513", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092741", + "1483092741", + "1483094407", + "1483092741", + "1", + "12", + "0", + "-1", + "1666", + "0", + "19992", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279522", + "2279522", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092796", + "1483092796", + "1483094563", + "1483092796", + "1", + "12", + "0", + "-1", + "1767", + "0", + "21204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279563", + "2279563", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093165", + "1483093165", + "1483094849", + "1483093165", + "1", + "12", + "0", + "-1", + "1684", + "0", + "20208", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279592", + "2279592", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093431", + "1483093431", + "1483095078", + "1483093431", + "1", + "12", + "0", + "-1", + "1647", + "0", + "19764", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279594", + "2279594", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093456", + "1483093456", + "1483095219", + "1483093456", + "1", + "12", + "0", + "-1", + "1763", + "0", + "21156", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279604", + "2279604", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093544", + "1483093544", + "1483095132", + "1483093544", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279626", + "2279626", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093877", + "1483093877", + "1483095295", + "1483093877", + "1", + "12", + "0", + "-1", + "1418", + "0", + "17016", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279632", + "2279632", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093948", + "1483093948", + "1483095527", + "1483093948", + "1", + "12", + "0", + "-1", + "1579", + "0", + "18948", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279647", + "2279647", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094058", + "1483094058", + "1483095783", + "1483094058", + "1", + "12", + "0", + "-1", + "1725", + "0", + "20700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279649", + "2279649", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094069", + "1483094069", + "1483095866", + "1483094069", + "1", + "12", + "0", + "-1", + "1797", + "0", + "21564", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279681", + "2279681", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094416", + "1483094416", + "1483096062", + "1483094416", + "1", + "12", + "0", + "-1", + "1646", + "0", + "19752", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279683", + "2279683", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094434", + "1483094434", + "1483096136", + "1483094434", + "1", + "12", + "0", + "-1", + "1702", + "0", + "20424", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279707", + "2279707", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094653", + "1483094653", + "1483096381", + "1483094653", + "1", + "12", + "0", + "-1", + "1728", + "0", + "20736", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279711", + "2279711", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094687", + "1483094687", + "1483096365", + "1483094687", + "1", + "12", + "0", + "-1", + "1678", + "0", + "20136", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279713", + "2279713", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094714", + "1483094714", + "1483096381", + "1483094714", + "1", + "12", + "0", + "-1", + "1667", + "0", + "20004", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279715", + "2279715", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094730", + "1483094730", + "1483096351", + "1483094730", + "1", + "12", + "0", + "-1", + "1621", + "0", + "19452", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279726", + "2279726", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094823", + "1483094823", + "1483096475", + "1483094823", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279744", + "2279744", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094925", + "1483094925", + "1483096111", + "1483094925", + "1", + "12", + "0", + "-1", + "1186", + "0", + "14232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279755", + "2279755", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095028", + "1483095028", + "1483096730", + "1483095028", + "1", + "12", + "0", + "-1", + "1702", + "0", + "20424", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279757", + "2279757", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095032", + "1483095032", + "1483096800", + "1483095032", + "1", + "12", + "0", + "-1", + "1768", + "0", + "21216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279776", + "2279776", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095136", + "1483095136", + "1483096770", + "1483095136", + "1", + "12", + "0", + "-1", + "1634", + "0", + "19608", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279778", + "2279778", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095141", + "1483095141", + "1483096617", + "1483095141", + "1", + "12", + "0", + "-1", + "1476", + "0", + "17712", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279781", + "2279781", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095201", + "1483095201", + "1483096911", + "1483095201", + "1", + "12", + "0", + "-1", + "1710", + "0", + "20520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279850", + "2279850", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095966", + "1483095966", + "1483097706", + "1483095966", + "1", + "12", + "0", + "-1", + "1740", + "0", + "20880", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279852", + "2279852", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095982", + "1483095982", + "1483097503", + "1483095982", + "1", + "12", + "0", + "-1", + "1521", + "0", + "18252", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279863", + "2279863", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096116", + "1483096116", + "1483097887", + "1483096116", + "1", + "12", + "0", + "-1", + "1771", + "0", + "21252", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279870", + "2279870", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096162", + "1483096162", + "1483097842", + "1483096162", + "1", + "12", + "0", + "-1", + "1680", + "0", + "20160", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279881", + "2279881", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096290", + "1483096290", + "1483098040", + "1483096290", + "1", + "12", + "0", + "-1", + "1750", + "0", + "21000", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279883", + "2279883", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096304", + "1483096304", + "1483098071", + "1483096304", + "1", + "12", + "0", + "-1", + "1767", + "0", + "21204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279887", + "2279887", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096326", + "1483096326", + "1483097816", + "1483096326", + "1", + "12", + "0", + "-1", + "1490", + "0", + "17880", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279915", + "2279915", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096552", + "1483096552", + "1483098029", + "1483096552", + "1", + "12", + "0", + "-1", + "1477", + "0", + "17724", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279949", + "2279949", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096766", + "1483096766", + "1483098160", + "1483096766", + "1", + "12", + "0", + "-1", + "1394", + "0", + "16728", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279951", + "2279951", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096773", + "1483096773", + "1483098468", + "1483096773", + "1", + "12", + "0", + "-1", + "1695", + "0", + "20340", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279954", + "2279954", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096809", + "1483096809", + "1483098571", + "1483096809", + "1", + "12", + "0", + "-1", + "1762", + "0", + "21144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279968", + "2279968", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096941", + "1483096941", + "1483098452", + "1483096941", + "1", + "12", + "0", + "-1", + "1511", + "0", + "18132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279982", + "2279982", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097030", + "1483097030", + "1483098725", + "1483097030", + "1", + "12", + "0", + "-1", + "1695", + "0", + "20340", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279986", + "2279986", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097074", + "1483097074", + "1483098747", + "1483097074", + "1", + "12", + "0", + "-1", + "1673", + "0", + "20076", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2279994", + "2279994", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097112", + "1483097112", + "1483098470", + "1483097112", + "1", + "12", + "0", + "-1", + "1358", + "0", + "16296", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280011", + "2280011", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097509", + "1483097509", + "1483099245", + "1483097509", + "1", + "12", + "0", + "-1", + "1736", + "0", + "20832", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280017", + "2280017", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097711", + "1483097711", + "1483099319", + "1483097711", + "1", + "12", + "0", + "-1", + "1608", + "0", + "19296", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280021", + "2280021", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097756", + "1483097756", + "1483099468", + "1483097756", + "1", + "12", + "0", + "-1", + "1712", + "0", + "20544", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280023", + "2280023", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097765", + "1483097765", + "1483099408", + "1483097765", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280025", + "2280025", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097806", + "1483097806", + "1483099549", + "1483097806", + "1", + "12", + "0", + "-1", + "1743", + "0", + "20916", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280033", + "2280033", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097867", + "1483097867", + "1483099530", + "1483097867", + "1", + "12", + "0", + "-1", + "1663", + "0", + "19956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280038", + "2280038", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097897", + "1483097897", + "1483099549", + "1483097897", + "1", + "12", + "0", + "-1", + "1652", + "0", + "19824", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280042", + "2280042", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097924", + "1483097924", + "1483099603", + "1483097924", + "1", + "12", + "0", + "-1", + "1679", + "0", + "20148", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280073", + "2280073", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098192", + "1483098192", + "1483099927", + "1483098192", + "1", + "12", + "0", + "-1", + "1735", + "0", + "20820", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280092", + "2280092", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098274", + "1483098274", + "1483099797", + "1483098274", + "1", + "12", + "0", + "-1", + "1523", + "0", + "18276", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280100", + "2280100", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098296", + "1483098296", + "1483100034", + "1483098296", + "1", + "12", + "0", + "-1", + "1738", + "0", + "20856", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280115", + "2280115", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098376", + "1483098376", + "1483100132", + "1483098376", + "1", + "12", + "0", + "-1", + "1756", + "0", + "21072", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280144", + "2280144", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098656", + "1483098656", + "1483100138", + "1483098656", + "1", + "12", + "0", + "-1", + "1482", + "0", + "17784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280151", + "2280151", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098756", + "1483098756", + "1483100150", + "1483098756", + "1", + "12", + "0", + "-1", + "1394", + "0", + "16728", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280153", + "2280153", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098786", + "1483098786", + "1483100272", + "1483098786", + "1", + "12", + "0", + "-1", + "1486", + "0", + "17832", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280159", + "2280159", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098823", + "1483098823", + "1483100360", + "1483098823", + "1", + "12", + "0", + "-1", + "1537", + "0", + "18444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280162", + "2280162", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098894", + "1483098894", + "1483100391", + "1483098894", + "1", + "12", + "0", + "-1", + "1497", + "0", + "17964", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280165", + "2280165", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098926", + "1483098926", + "1483100635", + "1483098926", + "1", + "12", + "0", + "-1", + "1709", + "0", + "20508", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280169", + "2280169", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098975", + "1483098975", + "1483100663", + "1483098975", + "1", + "12", + "0", + "-1", + "1688", + "0", + "20256", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280177", + "2280177", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099010", + "1483099010", + "1483100375", + "1483099010", + "1", + "12", + "0", + "-1", + "1365", + "0", + "16380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280179", + "2280179", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099015", + "1483099015", + "1483100504", + "1483099015", + "1", + "12", + "0", + "-1", + "1489", + "0", + "17868", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280182", + "2280182", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099060", + "1483099060", + "1483100824", + "1483099060", + "1", + "12", + "0", + "-1", + "1764", + "0", + "21168", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280219", + "2280219", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099558", + "1483099558", + "1483101248", + "1483099558", + "1", + "12", + "0", + "-1", + "1690", + "0", + "20280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280257", + "2280257", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099860", + "1483099860", + "1483101342", + "1483099860", + "1", + "12", + "0", + "-1", + "1482", + "0", + "17784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280269", + "2280269", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099990", + "1483099990", + "1483101475", + "1483099990", + "1", + "12", + "0", + "-1", + "1485", + "0", + "17820", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280274", + "2280274", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100038", + "1483100038", + "1483101829", + "1483100038", + "1", + "12", + "0", + "-1", + "1791", + "0", + "21492", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280276", + "2280276", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100043", + "1483100043", + "1483101677", + "1483100043", + "1", + "12", + "0", + "-1", + "1634", + "0", + "19608", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280285", + "2280285", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100091", + "1483100091", + "1483101862", + "1483100091", + "1", + "12", + "0", + "-1", + "1771", + "0", + "21252", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280298", + "2280298", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100154", + "1483100154", + "1483101580", + "1483100154", + "1", + "12", + "0", + "-1", + "1426", + "0", + "17112", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280302", + "2280302", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100180", + "1483100180", + "1483101884", + "1483100180", + "1", + "12", + "0", + "-1", + "1704", + "0", + "20448", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280316", + "2280316", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100278", + "1483100278", + "1483102009", + "1483100278", + "1", + "12", + "0", + "-1", + "1731", + "0", + "20772", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280318", + "2280318", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100294", + "1483100294", + "1483102061", + "1483100294", + "1", + "12", + "0", + "-1", + "1767", + "0", + "21204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280320", + "2280320", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100299", + "1483100299", + "1483101903", + "1483100299", + "1", + "12", + "0", + "-1", + "1604", + "0", + "19248", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280326", + "2280326", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100327", + "1483100327", + "1483101882", + "1483100327", + "1", + "12", + "0", + "-1", + "1555", + "0", + "18660", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280330", + "2280330", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100345", + "1483100345", + "1483101943", + "1483100345", + "1", + "12", + "0", + "-1", + "1598", + "0", + "19176", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280350", + "2280350", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100494", + "1483100494", + "1483102173", + "1483100494", + "1", + "12", + "0", + "-1", + "1679", + "0", + "20148", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280426", + "2280426", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101453", + "1483101453", + "1483103079", + "1483101453", + "1", + "12", + "0", + "-1", + "1626", + "0", + "19512", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280430", + "2280430", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101478", + "1483101478", + "1483103167", + "1483101478", + "1", + "12", + "0", + "-1", + "1689", + "0", + "20268", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280442", + "2280442", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101567", + "1483101567", + "1483103255", + "1483101567", + "1", + "12", + "0", + "-1", + "1688", + "0", + "20256", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280445", + "2280445", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101585", + "1483101585", + "1483103350", + "1483101585", + "1", + "12", + "0", + "-1", + "1765", + "0", + "21180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280447", + "2280447", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101589", + "1483101589", + "1483103272", + "1483101589", + "1", + "12", + "0", + "-1", + "1683", + "0", + "20196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280452", + "2280452", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101645", + "1483101645", + "1483103332", + "1483101645", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280497", + "2280497", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101981", + "1483101981", + "1483103760", + "1483101981", + "1", + "12", + "0", + "-1", + "1779", + "0", + "21348", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280499", + "2280499", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102013", + "1483102013", + "1483103724", + "1483102013", + "1", + "12", + "0", + "-1", + "1711", + "0", + "20532", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280505", + "2280505", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102029", + "1483102029", + "1483103636", + "1483102029", + "1", + "12", + "0", + "-1", + "1607", + "0", + "19284", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280509", + "2280509", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102045", + "1483102045", + "1483103455", + "1483102045", + "1", + "12", + "0", + "-1", + "1410", + "0", + "16920", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280511", + "2280511", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102049", + "1483102049", + "1483103287", + "1483102049", + "1", + "12", + "0", + "-1", + "1238", + "0", + "14856", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280513", + "2280513", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102054", + "1483102054", + "1483103584", + "1483102054", + "1", + "12", + "0", + "-1", + "1530", + "0", + "18360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280517", + "2280517", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102072", + "1483102072", + "1483103690", + "1483102072", + "1", + "12", + "0", + "-1", + "1618", + "0", + "19416", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280519", + "2280519", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102095", + "1483102095", + "1483103722", + "1483102095", + "1", + "12", + "0", + "-1", + "1627", + "0", + "19524", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280521", + "2280521", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102099", + "1483102099", + "1483103318", + "1483102099", + "1", + "12", + "0", + "-1", + "1219", + "0", + "14628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280523", + "2280523", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102104", + "1483102104", + "1483103497", + "1483102104", + "1", + "12", + "0", + "-1", + "1393", + "0", + "16716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280526", + "2280526", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102123", + "1483102123", + "1483103511", + "1483102123", + "1", + "12", + "0", + "-1", + "1388", + "0", + "16656", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280533", + "2280533", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102177", + "1483102177", + "1483103799", + "1483102177", + "1", + "12", + "0", + "-1", + "1622", + "0", + "19464", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280537", + "2280537", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102204", + "1483102204", + "1483103436", + "1483102204", + "1", + "12", + "0", + "-1", + "1232", + "0", + "14784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280592", + "2280592", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102847", + "1483102847", + "1483104588", + "1483102847", + "1", + "12", + "0", + "-1", + "1741", + "0", + "20892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280596", + "2280596", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102893", + "1483102893", + "1483104480", + "1483102893", + "1", + "12", + "0", + "-1", + "1587", + "0", + "19044", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280611", + "2280611", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103093", + "1483103093", + "1483104762", + "1483103093", + "1", + "12", + "0", + "-1", + "1669", + "0", + "20028", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280648", + "2280648", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103350", + "1483103350", + "1483104925", + "1483103350", + "1", + "12", + "0", + "-1", + "1575", + "0", + "18900", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280658", + "2280658", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103458", + "1483103458", + "1483105101", + "1483103458", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280712", + "2280712", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104062", + "1483104062", + "1483105681", + "1483104062", + "1", + "12", + "0", + "-1", + "1619", + "0", + "19428", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280721", + "2280721", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104133", + "1483104133", + "1483105697", + "1483104133", + "1", + "12", + "0", + "-1", + "1564", + "0", + "18768", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280726", + "2280726", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104167", + "1483104167", + "1483105936", + "1483104167", + "1", + "12", + "0", + "-1", + "1769", + "0", + "21228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280744", + "2280744", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104356", + "1483104356", + "1483106100", + "1483104356", + "1", + "12", + "0", + "-1", + "1744", + "0", + "20928", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280756", + "2280756", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104528", + "1483104528", + "1483106323", + "1483104528", + "1", + "12", + "0", + "-1", + "1795", + "0", + "21540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280764", + "2280764", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104688", + "1483104688", + "1483106333", + "1483104688", + "1", + "12", + "0", + "-1", + "1645", + "0", + "19740", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280769", + "2280769", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104757", + "1483104757", + "1483106319", + "1483104757", + "1", + "12", + "0", + "-1", + "1562", + "0", + "18744", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280780", + "2280780", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104791", + "1483104791", + "1483106572", + "1483104791", + "1", + "12", + "0", + "-1", + "1781", + "0", + "21372", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280783", + "2280783", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104800", + "1483104800", + "1483106439", + "1483104800", + "1", + "12", + "0", + "-1", + "1639", + "0", + "19668", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280814", + "2280814", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105057", + "1483105057", + "1483106592", + "1483105057", + "1", + "12", + "0", + "-1", + "1535", + "0", + "18420", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280816", + "2280816", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105061", + "1483105061", + "1483106593", + "1483105061", + "1", + "12", + "0", + "-1", + "1532", + "0", + "18384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280819", + "2280819", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105106", + "1483105106", + "1483106869", + "1483105106", + "1", + "12", + "0", + "-1", + "1763", + "0", + "21156", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280821", + "2280821", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105110", + "1483105110", + "1483106763", + "1483105110", + "1", + "12", + "0", + "-1", + "1653", + "0", + "19836", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280823", + "2280823", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105115", + "1483105115", + "1483106298", + "1483105115", + "1", + "12", + "0", + "-1", + "1183", + "0", + "14196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280837", + "2280837", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105236", + "1483105236", + "1483106760", + "1483105236", + "1", + "12", + "0", + "-1", + "1524", + "0", + "18288", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280839", + "2280839", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105245", + "1483105245", + "1483107024", + "1483105245", + "1", + "12", + "0", + "-1", + "1779", + "0", + "21348", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280841", + "2280841", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105255", + "1483105255", + "1483106813", + "1483105255", + "1", + "12", + "0", + "-1", + "1558", + "0", + "18696", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280844", + "2280844", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105376", + "1483105376", + "1483106965", + "1483105376", + "1", + "12", + "0", + "-1", + "1589", + "0", + "19068", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280846", + "2280846", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105389", + "1483105389", + "1483106850", + "1483105389", + "1", + "12", + "0", + "-1", + "1461", + "0", + "17532", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280848", + "2280848", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105401", + "1483105401", + "1483107086", + "1483105401", + "1", + "12", + "0", + "-1", + "1685", + "0", + "20220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280851", + "2280851", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105417", + "1483105417", + "1483106599", + "1483105417", + "1", + "12", + "0", + "-1", + "1182", + "0", + "14184", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280907", + "2280907", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106026", + "1483106026", + "1483107751", + "1483106026", + "1", + "12", + "0", + "-1", + "1725", + "0", + "20700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280909", + "2280909", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106042", + "1483106042", + "1483107768", + "1483106042", + "1", + "12", + "0", + "-1", + "1726", + "0", + "20712", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280947", + "2280947", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106349", + "1483106349", + "1483107942", + "1483106349", + "1", + "12", + "0", + "-1", + "1593", + "0", + "19116", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280956", + "2280956", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106451", + "1483106451", + "1483108210", + "1483106451", + "1", + "12", + "0", + "-1", + "1759", + "0", + "21108", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280968", + "2280968", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106548", + "1483106548", + "1483108290", + "1483106548", + "1", + "12", + "0", + "-1", + "1742", + "0", + "20904", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280972", + "2280972", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106587", + "1483106587", + "1483108110", + "1483106587", + "1", + "12", + "0", + "-1", + "1523", + "0", + "18276", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280976", + "2280976", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106600", + "1483106600", + "1483108334", + "1483106600", + "1", + "12", + "0", + "-1", + "1734", + "0", + "20808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2280978", + "2280978", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106605", + "1483106605", + "1483108149", + "1483106605", + "1", + "12", + "0", + "-1", + "1544", + "0", + "18528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281011", + "2281011", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106784", + "1483106784", + "1483108271", + "1483106784", + "1", + "12", + "0", + "-1", + "1487", + "0", + "17844", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281027", + "2281027", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106954", + "1483106954", + "1483108679", + "1483106954", + "1", + "12", + "0", + "-1", + "1725", + "0", + "20700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281031", + "2281031", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106984", + "1483106984", + "1483108702", + "1483106984", + "1", + "12", + "0", + "-1", + "1718", + "0", + "20616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281033", + "2281033", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107008", + "1483107008", + "1483108684", + "1483107008", + "1", + "12", + "0", + "-1", + "1676", + "0", + "20112", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281035", + "2281035", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107044", + "1483107044", + "1483108518", + "1483107044", + "1", + "12", + "0", + "-1", + "1474", + "0", + "17688", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281059", + "2281059", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107458", + "1483107458", + "1483109060", + "1483107458", + "1", + "12", + "0", + "-1", + "1602", + "0", + "19224", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281066", + "2281066", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107506", + "1483107506", + "1483109012", + "1483107506", + "1", + "12", + "0", + "-1", + "1506", + "0", + "18072", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281073", + "2281073", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107583", + "1483107583", + "1483109108", + "1483107583", + "1", + "12", + "0", + "-1", + "1525", + "0", + "18300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281087", + "2281087", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107793", + "1483107793", + "1483109385", + "1483107793", + "1", + "12", + "0", + "-1", + "1592", + "0", + "19104", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281089", + "2281089", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107811", + "1483107811", + "1483109380", + "1483107811", + "1", + "12", + "0", + "-1", + "1569", + "0", + "18828", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281094", + "2281094", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107893", + "1483107893", + "1483109675", + "1483107893", + "1", + "12", + "0", + "-1", + "1782", + "0", + "21384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281133", + "2281133", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108208", + "1483108208", + "1483110006", + "1483108208", + "1", + "12", + "0", + "-1", + "1798", + "0", + "21576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281135", + "2281135", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108212", + "1483108212", + "1483109709", + "1483108212", + "1", + "12", + "0", + "-1", + "1497", + "0", + "17964", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281139", + "2281139", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108230", + "1483108230", + "1483109682", + "1483108230", + "1", + "12", + "0", + "-1", + "1452", + "0", + "17424", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281146", + "2281146", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108285", + "1483108285", + "1483109945", + "1483108285", + "1", + "12", + "0", + "-1", + "1660", + "0", + "19920", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281148", + "2281148", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108294", + "1483108294", + "1483109826", + "1483108294", + "1", + "12", + "0", + "-1", + "1532", + "0", + "18384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281150", + "2281150", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108301", + "1483108301", + "1483109992", + "1483108301", + "1", + "12", + "0", + "-1", + "1691", + "0", + "20292", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281152", + "2281152", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108308", + "1483108308", + "1483109798", + "1483108308", + "1", + "12", + "0", + "-1", + "1490", + "0", + "17880", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281154", + "2281154", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108321", + "1483108321", + "1483109551", + "1483108321", + "1", + "12", + "0", + "-1", + "1230", + "0", + "14760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281158", + "2281158", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108369", + "1483108369", + "1483109868", + "1483108369", + "1", + "12", + "0", + "-1", + "1499", + "0", + "17988", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281164", + "2281164", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108407", + "1483108407", + "1483110058", + "1483108407", + "1", + "12", + "0", + "-1", + "1651", + "0", + "19812", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281168", + "2281168", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108463", + "1483108463", + "1483109784", + "1483108463", + "1", + "12", + "0", + "-1", + "1321", + "0", + "15852", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281173", + "2281173", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108500", + "1483108500", + "1483109804", + "1483108500", + "1", + "12", + "0", + "-1", + "1304", + "0", + "15648", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281187", + "2281187", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108620", + "1483108620", + "1483110003", + "1483108620", + "1", + "12", + "0", + "-1", + "1383", + "0", + "16596", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281192", + "2281192", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108650", + "1483108650", + "1483110348", + "1483108650", + "1", + "12", + "0", + "-1", + "1698", + "0", + "20376", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281224", + "2281224", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108863", + "1483108863", + "1483110398", + "1483108863", + "1", + "12", + "0", + "-1", + "1535", + "0", + "18420", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281227", + "2281227", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108895", + "1483108895", + "1483110415", + "1483108895", + "1", + "12", + "0", + "-1", + "1520", + "0", + "18240", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281231", + "2281231", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483108904", + "1483108904", + "1483110521", + "1483108904", + "1", + "12", + "0", + "-1", + "1617", + "0", + "19404", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281238", + "2281238", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109016", + "1483109016", + "1483110647", + "1483109016", + "1", + "12", + "0", + "-1", + "1631", + "0", + "19572", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281288", + "2281288", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109546", + "1483109546", + "1483111200", + "1483109546", + "1", + "12", + "0", + "-1", + "1654", + "0", + "19848", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281346", + "2281346", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109952", + "1483109952", + "1483111401", + "1483109952", + "1", + "12", + "0", + "-1", + "1449", + "0", + "17388", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281354", + "2281354", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483109997", + "1483109997", + "1483111795", + "1483109997", + "1", + "12", + "0", + "-1", + "1798", + "0", + "21576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281362", + "2281362", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110057", + "1483110057", + "1483111673", + "1483110057", + "1", + "12", + "0", + "-1", + "1616", + "0", + "19392", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281364", + "2281364", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110062", + "1483110062", + "1483111757", + "1483110062", + "1", + "12", + "0", + "-1", + "1695", + "0", + "20340", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281400", + "2281400", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110526", + "1483110526", + "1483112314", + "1483110526", + "1", + "12", + "0", + "-1", + "1788", + "0", + "21456", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281403", + "2281403", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110564", + "1483110564", + "1483112085", + "1483110564", + "1", + "12", + "0", + "-1", + "1521", + "0", + "18252", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281409", + "2281409", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110656", + "1483110656", + "1483112230", + "1483110656", + "1", + "12", + "0", + "-1", + "1574", + "0", + "18888", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281417", + "2281417", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110710", + "1483110710", + "1483112462", + "1483110710", + "1", + "12", + "0", + "-1", + "1752", + "0", + "21024", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281423", + "2281423", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110743", + "1483110743", + "1483112357", + "1483110743", + "1", + "12", + "0", + "-1", + "1614", + "0", + "19368", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281426", + "2281426", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110752", + "1483110752", + "1483112544", + "1483110752", + "1", + "12", + "0", + "-1", + "1792", + "0", + "21504", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281431", + "2281431", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110793", + "1483110793", + "1483112347", + "1483110793", + "1", + "12", + "0", + "-1", + "1554", + "0", + "18648", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281433", + "2281433", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110817", + "1483110817", + "1483112410", + "1483110817", + "1", + "12", + "0", + "-1", + "1593", + "0", + "19116", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281435", + "2281435", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110823", + "1483110823", + "1483112519", + "1483110823", + "1", + "12", + "0", + "-1", + "1696", + "0", + "20352", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281438", + "2281438", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483110836", + "1483110836", + "1483112536", + "1483110836", + "1", + "12", + "0", + "-1", + "1700", + "0", + "20400", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281451", + "2281451", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111086", + "1483111086", + "1483112733", + "1483111086", + "1", + "12", + "0", + "-1", + "1647", + "0", + "19764", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281456", + "2281456", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111146", + "1483111146", + "1483112562", + "1483111146", + "1", + "12", + "0", + "-1", + "1416", + "0", + "16992", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281472", + "2281472", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111288", + "1483111288", + "1483113049", + "1483111288", + "1", + "12", + "0", + "-1", + "1761", + "0", + "21132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281478", + "2281478", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111387", + "1483111387", + "1483113167", + "1483111387", + "1", + "12", + "0", + "-1", + "1780", + "0", + "21360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281480", + "2281480", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111396", + "1483111396", + "1483112968", + "1483111396", + "1", + "12", + "0", + "-1", + "1572", + "0", + "18864", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281482", + "2281482", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111414", + "1483111414", + "1483113096", + "1483111414", + "1", + "12", + "0", + "-1", + "1682", + "0", + "20184", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281489", + "2281489", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111577", + "1483111577", + "1483113183", + "1483111577", + "1", + "12", + "0", + "-1", + "1606", + "0", + "19272", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281501", + "2281501", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111687", + "1483111687", + "1483113421", + "1483111687", + "1", + "12", + "0", + "-1", + "1734", + "0", + "20808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281506", + "2281506", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111713", + "1483111713", + "1483113436", + "1483111713", + "1", + "12", + "0", + "-1", + "1723", + "0", + "20676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281514", + "2281514", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111756", + "1483111756", + "1483113266", + "1483111756", + "1", + "12", + "0", + "-1", + "1510", + "0", + "18120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281524", + "2281524", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111799", + "1483111799", + "1483113443", + "1483111799", + "1", + "12", + "0", + "-1", + "1644", + "0", + "19728", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281538", + "2281538", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483111923", + "1483111923", + "1483113615", + "1483111923", + "1", + "12", + "0", + "-1", + "1692", + "0", + "20304", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281548", + "2281548", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112005", + "1483112005", + "1483113522", + "1483112005", + "1", + "12", + "0", + "-1", + "1517", + "0", + "18204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281550", + "2281550", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112012", + "1483112012", + "1483113773", + "1483112012", + "1", + "12", + "0", + "-1", + "1761", + "0", + "21132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281599", + "2281599", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112372", + "1483112372", + "1483114090", + "1483112372", + "1", + "12", + "0", + "-1", + "1718", + "0", + "20616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281602", + "2281602", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112415", + "1483112415", + "1483114203", + "1483112415", + "1", + "12", + "0", + "-1", + "1788", + "0", + "21456", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281620", + "2281620", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112549", + "1483112549", + "1483114110", + "1483112549", + "1", + "12", + "0", + "-1", + "1561", + "0", + "18732", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281622", + "2281622", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112566", + "1483112566", + "1483114360", + "1483112566", + "1", + "12", + "0", + "-1", + "1794", + "0", + "21528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281659", + "2281659", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483112872", + "1483112872", + "1483114668", + "1483112872", + "1", + "12", + "0", + "-1", + "1796", + "0", + "21552", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281668", + "2281668", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113072", + "1483113072", + "1483114638", + "1483113072", + "1", + "12", + "0", + "-1", + "1566", + "0", + "18792", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281692", + "2281692", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113411", + "1483113411", + "1483115011", + "1483113411", + "1", + "12", + "0", + "-1", + "1600", + "0", + "19200", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281696", + "2281696", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113429", + "1483113429", + "1483115210", + "1483113429", + "1", + "12", + "0", + "-1", + "1781", + "0", + "21372", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281714", + "2281714", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113566", + "1483113566", + "1483115338", + "1483113566", + "1", + "12", + "0", + "-1", + "1772", + "0", + "21264", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281717", + "2281717", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113582", + "1483113582", + "1483115327", + "1483113582", + "1", + "12", + "0", + "-1", + "1745", + "0", + "20940", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281728", + "2281728", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113665", + "1483113665", + "1483115040", + "1483113665", + "1", + "12", + "0", + "-1", + "1375", + "0", + "16500", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281730", + "2281730", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113670", + "1483113670", + "1483115279", + "1483113670", + "1", + "12", + "0", + "-1", + "1609", + "0", + "19308", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281732", + "2281732", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113681", + "1483113681", + "1483115277", + "1483113681", + "1", + "12", + "0", + "-1", + "1596", + "0", + "19152", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281736", + "2281736", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113689", + "1483113689", + "1483115248", + "1483113689", + "1", + "12", + "0", + "-1", + "1559", + "0", + "18708", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281740", + "2281740", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113698", + "1483113698", + "1483115343", + "1483113698", + "1", + "12", + "0", + "-1", + "1645", + "0", + "19740", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281748", + "2281748", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113776", + "1483113776", + "1483115267", + "1483113776", + "1", + "12", + "0", + "-1", + "1491", + "0", + "17892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281750", + "2281750", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113783", + "1483113783", + "1483115050", + "1483113783", + "1", + "12", + "0", + "-1", + "1267", + "0", + "15204", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281752", + "2281752", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113816", + "1483113816", + "1483115562", + "1483113816", + "1", + "12", + "0", + "-1", + "1746", + "0", + "20952", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281754", + "2281754", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113822", + "1483113822", + "1483115480", + "1483113822", + "1", + "12", + "0", + "-1", + "1658", + "0", + "19896", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281760", + "2281760", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483113867", + "1483113867", + "1483115606", + "1483113867", + "1", + "12", + "0", + "-1", + "1739", + "0", + "20868", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281777", + "2281777", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114065", + "1483114065", + "1483115842", + "1483114065", + "1", + "12", + "0", + "-1", + "1777", + "0", + "21324", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281791", + "2281791", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114126", + "1483114126", + "1483115645", + "1483114126", + "1", + "12", + "0", + "-1", + "1519", + "0", + "18228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281794", + "2281794", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114206", + "1483114206", + "1483115463", + "1483114206", + "1", + "12", + "0", + "-1", + "1257", + "0", + "15084", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281806", + "2281806", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114289", + "1483114289", + "1483116031", + "1483114289", + "1", + "12", + "0", + "-1", + "1742", + "0", + "20904", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281812", + "2281812", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114368", + "1483114368", + "1483115896", + "1483114368", + "1", + "12", + "0", + "-1", + "1528", + "0", + "18336", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281824", + "2281824", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114434", + "1483114434", + "1483116121", + "1483114434", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281826", + "2281826", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114438", + "1483114438", + "1483115972", + "1483114438", + "1", + "12", + "0", + "-1", + "1534", + "0", + "18408", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281844", + "2281844", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114636", + "1483114636", + "1483116229", + "1483114636", + "1", + "12", + "0", + "-1", + "1593", + "0", + "19116", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281861", + "2281861", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114721", + "1483114721", + "1483116487", + "1483114721", + "1", + "12", + "0", + "-1", + "1766", + "0", + "21192", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281875", + "2281875", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483114939", + "1483114939", + "1483116641", + "1483114939", + "1", + "12", + "0", + "-1", + "1702", + "0", + "20424", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281883", + "2281883", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115045", + "1483115045", + "1483116764", + "1483115045", + "1", + "12", + "0", + "-1", + "1719", + "0", + "20628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281885", + "2281885", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115053", + "1483115053", + "1483116641", + "1483115053", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281887", + "2281887", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115062", + "1483115062", + "1483116537", + "1483115062", + "1", + "12", + "0", + "-1", + "1475", + "0", + "17700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281890", + "2281890", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115090", + "1483115090", + "1483116641", + "1483115090", + "1", + "12", + "0", + "-1", + "1551", + "0", + "18612", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281892", + "2281892", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115094", + "1483115094", + "1483116811", + "1483115094", + "1", + "12", + "0", + "-1", + "1717", + "0", + "20604", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281895", + "2281895", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115132", + "1483115132", + "1483116616", + "1483115132", + "1", + "12", + "0", + "-1", + "1484", + "0", + "17808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281899", + "2281899", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115144", + "1483115144", + "1483116857", + "1483115144", + "1", + "12", + "0", + "-1", + "1713", + "0", + "20556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281916", + "2281916", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115280", + "1483115280", + "1483116864", + "1483115280", + "1", + "12", + "0", + "-1", + "1584", + "0", + "19008", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281927", + "2281927", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115347", + "1483115347", + "1483116766", + "1483115347", + "1", + "12", + "0", + "-1", + "1419", + "0", + "17028", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281930", + "2281930", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115399", + "1483115399", + "1483116876", + "1483115399", + "1", + "12", + "0", + "-1", + "1477", + "0", + "17724", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281934", + "2281934", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115417", + "1483115417", + "1483116907", + "1483115417", + "1", + "12", + "0", + "-1", + "1490", + "0", + "17880", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281941", + "2281941", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115520", + "1483115520", + "1483117081", + "1483115520", + "1", + "12", + "0", + "-1", + "1561", + "0", + "18732", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281943", + "2281943", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115529", + "1483115529", + "1483116907", + "1483115529", + "1", + "12", + "0", + "-1", + "1378", + "0", + "16536", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281947", + "2281947", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115538", + "1483115538", + "1483117105", + "1483115538", + "1", + "12", + "0", + "-1", + "1567", + "0", + "18804", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281949", + "2281949", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115567", + "1483115567", + "1483116907", + "1483115567", + "1", + "12", + "0", + "-1", + "1340", + "0", + "16080", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281953", + "2281953", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115599", + "1483115599", + "1483117025", + "1483115599", + "1", + "12", + "0", + "-1", + "1426", + "0", + "17112", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281956", + "2281956", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115626", + "1483115626", + "1483116953", + "1483115626", + "1", + "12", + "0", + "-1", + "1327", + "0", + "15924", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281958", + "2281958", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115635", + "1483115635", + "1483117219", + "1483115635", + "1", + "12", + "0", + "-1", + "1584", + "0", + "19008", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281960", + "2281960", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115646", + "1483115646", + "1483117319", + "1483115646", + "1", + "12", + "0", + "-1", + "1673", + "0", + "20076", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281962", + "2281962", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115651", + "1483115651", + "1483117353", + "1483115651", + "1", + "12", + "0", + "-1", + "1702", + "0", + "20424", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281964", + "2281964", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115655", + "1483115655", + "1483117025", + "1483115655", + "1", + "12", + "0", + "-1", + "1370", + "0", + "16440", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281968", + "2281968", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115675", + "1483115675", + "1483117025", + "1483115675", + "1", + "12", + "0", + "-1", + "1350", + "0", + "16200", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281972", + "2281972", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115711", + "1483115711", + "1483117025", + "1483115711", + "1", + "12", + "0", + "-1", + "1314", + "0", + "15768", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281982", + "2281982", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115815", + "1483115815", + "1483117025", + "1483115815", + "1", + "12", + "0", + "-1", + "1210", + "0", + "14520", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281992", + "2281992", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483115997", + "1483115997", + "1483117262", + "1483115997", + "1", + "12", + "0", + "-1", + "1265", + "0", + "15180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2281996", + "2281996", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116006", + "1483116006", + "1483117025", + "1483116006", + "1", + "12", + "0", + "-1", + "1019", + "0", + "12228", + "0", + "0:0", + "PREEMPTED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282018", + "2282018", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116087", + "1483116087", + "1483117807", + "1483116087", + "1", + "12", + "0", + "-1", + "1720", + "0", + "20640", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282024", + "2282024", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116131", + "1483116131", + "1483117895", + "1483116131", + "1", + "12", + "0", + "-1", + "1764", + "0", + "21168", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282036", + "2282036", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116176", + "1483116176", + "1483117942", + "1483116176", + "1", + "12", + "0", + "-1", + "1766", + "0", + "21192", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282039", + "2282039", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116210", + "1483116210", + "1483117839", + "1483116210", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282043", + "2282043", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116228", + "1483116228", + "1483117874", + "1483116228", + "1", + "12", + "0", + "-1", + "1646", + "0", + "19752", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282045", + "2282045", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116232", + "1483116232", + "1483118015", + "1483116232", + "1", + "12", + "0", + "-1", + "1783", + "0", + "21396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282057", + "2282057", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116328", + "1483116328", + "1483118121", + "1483116328", + "1", + "12", + "0", + "-1", + "1793", + "0", + "21516", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282062", + "2282062", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116346", + "1483116346", + "1483117825", + "1483116346", + "1", + "12", + "0", + "-1", + "1479", + "0", + "17748", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282075", + "2282075", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116432", + "1483116432", + "1483117905", + "1483116432", + "1", + "12", + "0", + "-1", + "1473", + "0", + "17676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282088", + "2282088", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116514", + "1483116514", + "1483117841", + "1483116514", + "1", + "12", + "0", + "-1", + "1327", + "0", + "15924", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282101", + "2282101", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116633", + "1483116633", + "1483118163", + "1483116633", + "1", + "12", + "0", + "-1", + "1530", + "0", + "18360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282112", + "2282112", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116697", + "1483116697", + "1483118301", + "1483116697", + "1", + "12", + "0", + "-1", + "1604", + "0", + "19248", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282125", + "2282125", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116815", + "1483116815", + "1483118427", + "1483116815", + "1", + "12", + "0", + "-1", + "1612", + "0", + "19344", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282161", + "2282161", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483116998", + "1483116998", + "1483118246", + "1483116998", + "1", + "12", + "0", + "-1", + "1248", + "0", + "14976", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282182", + "2282182", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117107", + "1483117107", + "1483118904", + "1483117107", + "1", + "12", + "0", + "-1", + "1797", + "0", + "21564", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282197", + "2282197", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117266", + "1483117266", + "1483118706", + "1483117266", + "1", + "12", + "0", + "-1", + "1440", + "0", + "17280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282202", + "2282202", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117323", + "1483117323", + "1483118711", + "1483117323", + "1", + "12", + "0", + "-1", + "1388", + "0", + "16656", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282205", + "2282205", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117356", + "1483117356", + "1483118980", + "1483117356", + "1", + "12", + "0", + "-1", + "1624", + "0", + "19488", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282227", + "2282227", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117695", + "1483117695", + "1483119190", + "1483117695", + "1", + "12", + "0", + "-1", + "1495", + "0", + "17940", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282234", + "2282234", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117811", + "1483117811", + "1483119577", + "1483117811", + "1", + "12", + "0", + "-1", + "1766", + "0", + "21192", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282236", + "2282236", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117826", + "1483117826", + "1483119299", + "1483117826", + "1", + "12", + "0", + "-1", + "1473", + "0", + "17676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282238", + "2282238", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117830", + "1483117830", + "1483119606", + "1483117830", + "1", + "12", + "0", + "-1", + "1776", + "0", + "21312", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282243", + "2282243", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117849", + "1483117849", + "1483119437", + "1483117849", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282251", + "2282251", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117903", + "1483117903", + "1483119261", + "1483117903", + "1", + "12", + "0", + "-1", + "1358", + "0", + "16296", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282253", + "2282253", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117910", + "1483117910", + "1483119523", + "1483117910", + "1", + "12", + "0", + "-1", + "1613", + "0", + "19356", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282256", + "2282256", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117941", + "1483117941", + "1483119611", + "1483117941", + "1", + "12", + "0", + "-1", + "1670", + "0", + "20040", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282261", + "2282261", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117966", + "1483117966", + "1483119446", + "1483117966", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282263", + "2282263", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483117978", + "1483117978", + "1483119758", + "1483117978", + "1", + "12", + "0", + "-1", + "1780", + "0", + "21360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282270", + "2282270", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118019", + "1483118019", + "1483119679", + "1483118019", + "1", + "12", + "0", + "-1", + "1660", + "0", + "19920", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282295", + "2282295", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118143", + "1483118143", + "1483119913", + "1483118143", + "1", + "12", + "0", + "-1", + "1770", + "0", + "21240", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282324", + "2282324", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118285", + "1483118285", + "1483120021", + "1483118285", + "1", + "12", + "0", + "-1", + "1736", + "0", + "20832", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282331", + "2282331", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118310", + "1483118310", + "1483119776", + "1483118310", + "1", + "12", + "0", + "-1", + "1466", + "0", + "17592", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282337", + "2282337", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118367", + "1483118367", + "1483120152", + "1483118367", + "1", + "12", + "0", + "-1", + "1785", + "0", + "21420", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282344", + "2282344", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118418", + "1483118418", + "1483119853", + "1483118418", + "1", + "12", + "0", + "-1", + "1435", + "0", + "17220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282346", + "2282346", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118431", + "1483118431", + "1483120064", + "1483118431", + "1", + "12", + "0", + "-1", + "1633", + "0", + "19596", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282396", + "2282396", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118910", + "1483118910", + "1483120628", + "1483118910", + "1", + "12", + "0", + "-1", + "1718", + "0", + "20616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282405", + "2282405", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118945", + "1483118945", + "1483120651", + "1483118945", + "1", + "12", + "0", + "-1", + "1706", + "0", + "20472", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282409", + "2282409", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483118974", + "1483118974", + "1483120432", + "1483118974", + "1", + "12", + "0", + "-1", + "1458", + "0", + "17496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282470", + "2282470", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119569", + "1483119569", + "1483121223", + "1483119569", + "1", + "12", + "0", + "-1", + "1654", + "0", + "19848", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282479", + "2282479", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119611", + "1483119611", + "1483121212", + "1483119611", + "1", + "12", + "0", + "-1", + "1601", + "0", + "19212", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282481", + "2282481", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119616", + "1483119616", + "1483121141", + "1483119616", + "1", + "12", + "0", + "-1", + "1525", + "0", + "18300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282486", + "2282486", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119629", + "1483119629", + "1483120924", + "1483119629", + "1", + "12", + "0", + "-1", + "1295", + "0", + "15540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282490", + "2282490", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119680", + "1483119680", + "1483120972", + "1483119680", + "1", + "12", + "0", + "-1", + "1292", + "0", + "15504", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282496", + "2282496", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119712", + "1483119712", + "1483121446", + "1483119712", + "1", + "12", + "0", + "-1", + "1734", + "0", + "20808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282498", + "2282498", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119716", + "1483119716", + "1483121309", + "1483119716", + "1", + "12", + "0", + "-1", + "1593", + "0", + "19116", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282501", + "2282501", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119759", + "1483119759", + "1483121217", + "1483119759", + "1", + "12", + "0", + "-1", + "1458", + "0", + "17496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282503", + "2282503", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119763", + "1483119763", + "1483121399", + "1483119763", + "1", + "12", + "0", + "-1", + "1636", + "0", + "19632", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282506", + "2282506", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119780", + "1483119780", + "1483121371", + "1483119780", + "1", + "12", + "0", + "-1", + "1591", + "0", + "19092", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282508", + "2282508", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119787", + "1483119787", + "1483121172", + "1483119787", + "1", + "12", + "0", + "-1", + "1385", + "0", + "16620", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282518", + "2282518", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119866", + "1483119866", + "1483121279", + "1483119866", + "1", + "12", + "0", + "-1", + "1413", + "0", + "16956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282531", + "2282531", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483119917", + "1483119917", + "1483121401", + "1483119917", + "1", + "12", + "0", + "-1", + "1484", + "0", + "17808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282542", + "2282542", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120005", + "1483120005", + "1483121634", + "1483120005", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282544", + "2282544", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120025", + "1483120025", + "1483121611", + "1483120025", + "1", + "12", + "0", + "-1", + "1586", + "0", + "19032", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282548", + "2282548", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120068", + "1483120068", + "1483121850", + "1483120068", + "1", + "12", + "0", + "-1", + "1782", + "0", + "21384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282553", + "2282553", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120122", + "1483120122", + "1483121575", + "1483120122", + "1", + "12", + "0", + "-1", + "1453", + "0", + "17436", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282557", + "2282557", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120178", + "1483120178", + "1483121965", + "1483120178", + "1", + "12", + "0", + "-1", + "1787", + "0", + "21444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282580", + "2282580", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120343", + "1483120343", + "1483122118", + "1483120343", + "1", + "12", + "0", + "-1", + "1775", + "0", + "21300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282587", + "2282587", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120414", + "1483120414", + "1483121889", + "1483120414", + "1", + "12", + "0", + "-1", + "1475", + "0", + "17700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282597", + "2282597", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120553", + "1483120553", + "1483122288", + "1483120553", + "1", + "12", + "0", + "-1", + "1735", + "0", + "20820", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282641", + "2282641", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483120953", + "1483120953", + "1483122629", + "1483120953", + "1", + "12", + "0", + "-1", + "1676", + "0", + "20112", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282675", + "2282675", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121176", + "1483121176", + "1483122971", + "1483121176", + "1", + "12", + "0", + "-1", + "1795", + "0", + "21540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282707", + "2282707", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121373", + "1483121373", + "1483123002", + "1483121373", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282711", + "2282711", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121404", + "1483121404", + "1483123127", + "1483121404", + "1", + "12", + "0", + "-1", + "1723", + "0", + "20676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282717", + "2282717", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121429", + "1483121429", + "1483123133", + "1483121429", + "1", + "12", + "0", + "-1", + "1704", + "0", + "20448", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282721", + "2282721", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121450", + "1483121450", + "1483123082", + "1483121450", + "1", + "12", + "0", + "-1", + "1632", + "0", + "19584", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282725", + "2282725", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121462", + "1483121462", + "1483122827", + "1483121462", + "1", + "12", + "0", + "-1", + "1365", + "0", + "16380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282737", + "2282737", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121592", + "1483121592", + "1483123267", + "1483121592", + "1", + "12", + "0", + "-1", + "1675", + "0", + "20100", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282761", + "2282761", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483121892", + "1483121892", + "1483123598", + "1483121892", + "1", + "12", + "0", + "-1", + "1706", + "0", + "20472", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282787", + "2282787", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122232", + "1483122232", + "1483123953", + "1483122232", + "1", + "12", + "0", + "-1", + "1721", + "0", + "20652", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282833", + "2282833", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122632", + "1483122632", + "1483124318", + "1483122632", + "1", + "12", + "0", + "-1", + "1686", + "0", + "20232", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282843", + "2282843", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122686", + "1483122686", + "1483124427", + "1483122686", + "1", + "12", + "0", + "-1", + "1741", + "0", + "20892", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282862", + "2282862", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122887", + "1483122887", + "1483124612", + "1483122887", + "1", + "12", + "0", + "-1", + "1725", + "0", + "20700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282869", + "2282869", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483122942", + "1483122942", + "1483124601", + "1483122942", + "1", + "12", + "0", + "-1", + "1659", + "0", + "19908", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282900", + "2282900", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123209", + "1483123209", + "1483124960", + "1483123209", + "1", + "12", + "0", + "-1", + "1751", + "0", + "21012", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282917", + "2282917", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123313", + "1483123313", + "1483124891", + "1483123313", + "1", + "12", + "0", + "-1", + "1578", + "0", + "18936", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282926", + "2282926", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123374", + "1483123374", + "1483124708", + "1483123374", + "1", + "12", + "0", + "-1", + "1334", + "0", + "16008", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282930", + "2282930", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123383", + "1483123383", + "1483124816", + "1483123383", + "1", + "12", + "0", + "-1", + "1433", + "0", + "17196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282932", + "2282932", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123387", + "1483123387", + "1483125023", + "1483123387", + "1", + "12", + "0", + "-1", + "1636", + "0", + "19632", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282934", + "2282934", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123392", + "1483123392", + "1483125117", + "1483123392", + "1", + "12", + "0", + "-1", + "1725", + "0", + "20700", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282936", + "2282936", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123396", + "1483123396", + "1483125156", + "1483123396", + "1", + "12", + "0", + "-1", + "1760", + "0", + "21120", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282940", + "2282940", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123436", + "1483123436", + "1483125191", + "1483123436", + "1", + "12", + "0", + "-1", + "1755", + "0", + "21060", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282943", + "2282943", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123473", + "1483123473", + "1483125270", + "1483123473", + "1", + "12", + "0", + "-1", + "1797", + "0", + "21564", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282965", + "2282965", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123710", + "1483123710", + "1483125429", + "1483123710", + "1", + "12", + "0", + "-1", + "1719", + "0", + "20628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2282980", + "2282980", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483123957", + "1483123957", + "1483125422", + "1483123957", + "1", + "12", + "0", + "-1", + "1465", + "0", + "17580", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283004", + "2283004", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124329", + "1483124329", + "1483126074", + "1483124329", + "1", + "12", + "0", + "-1", + "1745", + "0", + "20940", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283006", + "2283006", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124340", + "1483124340", + "1483125891", + "1483124340", + "1", + "12", + "0", + "-1", + "1551", + "0", + "18612", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283013", + "2283013", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124408", + "1483124408", + "1483126166", + "1483124408", + "1", + "12", + "0", + "-1", + "1758", + "0", + "21096", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283026", + "2283026", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124576", + "1483124576", + "1483126053", + "1483124576", + "1", + "12", + "0", + "-1", + "1477", + "0", + "17724", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283028", + "2283028", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124605", + "1483124605", + "1483126261", + "1483124605", + "1", + "12", + "0", + "-1", + "1656", + "0", + "19872", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283035", + "2283035", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124640", + "1483124640", + "1483126300", + "1483124640", + "1", + "12", + "0", + "-1", + "1660", + "0", + "19920", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283041", + "2283041", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124704", + "1483124704", + "1483126138", + "1483124704", + "1", + "12", + "0", + "-1", + "1434", + "0", + "17208", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283045", + "2283045", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124713", + "1483124713", + "1483126182", + "1483124713", + "1", + "12", + "0", + "-1", + "1469", + "0", + "17628", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283047", + "2283047", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124718", + "1483124718", + "1483126405", + "1483124718", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283051", + "2283051", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124738", + "1483124738", + "1483126326", + "1483124738", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283069", + "2283069", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483124885", + "1483124885", + "1483126410", + "1483124885", + "1", + "12", + "0", + "-1", + "1525", + "0", + "18300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283091", + "2283091", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125027", + "1483125027", + "1483126419", + "1483125027", + "1", + "12", + "0", + "-1", + "1392", + "0", + "16704", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283095", + "2283095", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125111", + "1483125111", + "1483126725", + "1483125111", + "1", + "12", + "0", + "-1", + "1614", + "0", + "19368", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283097", + "2283097", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125120", + "1483125120", + "1483126389", + "1483125120", + "1", + "12", + "0", + "-1", + "1269", + "0", + "15228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283099", + "2283099", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125125", + "1483125125", + "1483126778", + "1483125125", + "1", + "12", + "0", + "-1", + "1653", + "0", + "19836", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283101", + "2283101", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125150", + "1483125150", + "1483126720", + "1483125150", + "1", + "12", + "0", + "-1", + "1570", + "0", + "18840", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283104", + "2283104", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125159", + "1483125159", + "1483126614", + "1483125159", + "1", + "12", + "0", + "-1", + "1455", + "0", + "17460", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283110", + "2283110", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125196", + "1483125196", + "1483126903", + "1483125196", + "1", + "12", + "0", + "-1", + "1707", + "0", + "20484", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283114", + "2283114", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125210", + "1483125210", + "1483126796", + "1483125210", + "1", + "12", + "0", + "-1", + "1586", + "0", + "19032", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283116", + "2283116", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125230", + "1483125230", + "1483126814", + "1483125230", + "1", + "12", + "0", + "-1", + "1584", + "0", + "19008", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283118", + "2283118", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125235", + "1483125235", + "1483126968", + "1483125235", + "1", + "12", + "0", + "-1", + "1733", + "0", + "20796", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283120", + "2283120", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125242", + "1483125242", + "1483126822", + "1483125242", + "1", + "12", + "0", + "-1", + "1580", + "0", + "18960", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283122", + "2283122", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125264", + "1483125264", + "1483126736", + "1483125264", + "1", + "12", + "0", + "-1", + "1472", + "0", + "17664", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283124", + "2283124", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125269", + "1483125269", + "1483126959", + "1483125269", + "1", + "12", + "0", + "-1", + "1690", + "0", + "20280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283127", + "2283127", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125278", + "1483125278", + "1483126468", + "1483125278", + "1", + "12", + "0", + "-1", + "1190", + "0", + "14280", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283129", + "2283129", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125284", + "1483125284", + "1483126855", + "1483125284", + "1", + "12", + "0", + "-1", + "1571", + "0", + "18852", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283131", + "2283131", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125321", + "1483125321", + "1483126875", + "1483125321", + "1", + "12", + "0", + "-1", + "1554", + "0", + "18648", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283137", + "2283137", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125366", + "1483125366", + "1483126878", + "1483125366", + "1", + "12", + "0", + "-1", + "1512", + "0", + "18144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283151", + "2283151", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125473", + "1483125473", + "1483126800", + "1483125473", + "1", + "12", + "0", + "-1", + "1327", + "0", + "15924", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283155", + "2283155", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125525", + "1483125525", + "1483127007", + "1483125525", + "1", + "12", + "0", + "-1", + "1482", + "0", + "17784", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283167", + "2283167", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125851", + "1483125851", + "1483127057", + "1483125851", + "1", + "12", + "0", + "-1", + "1206", + "0", + "14472", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283169", + "2283169", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125858", + "1483125858", + "1483127466", + "1483125858", + "1", + "12", + "0", + "-1", + "1608", + "0", + "19296", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283171", + "2283171", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125873", + "1483125873", + "1483127432", + "1483125873", + "1", + "12", + "0", + "-1", + "1559", + "0", + "18708", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283174", + "2283174", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125896", + "1483125896", + "1483127240", + "1483125896", + "1", + "12", + "0", + "-1", + "1344", + "0", + "16128", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283176", + "2283176", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125925", + "1483125925", + "1483127341", + "1483125925", + "1", + "12", + "0", + "-1", + "1416", + "0", + "16992", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283178", + "2283178", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125932", + "1483125932", + "1483127512", + "1483125932", + "1", + "12", + "0", + "-1", + "1580", + "0", + "18960", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283180", + "2283180", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125939", + "1483125939", + "1483127396", + "1483125939", + "1", + "12", + "0", + "-1", + "1457", + "0", + "17484", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283182", + "2283182", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483125997", + "1483125997", + "1483127330", + "1483125997", + "1", + "12", + "0", + "-1", + "1333", + "0", + "15996", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283184", + "2283184", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126022", + "1483126022", + "1483127193", + "1483126022", + "1", + "12", + "0", + "-1", + "1171", + "0", + "14052", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283192", + "2283192", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126077", + "1483126077", + "1483127667", + "1483126077", + "1", + "12", + "0", + "-1", + "1590", + "0", + "19080", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283208", + "2283208", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126185", + "1483126185", + "1483127872", + "1483126185", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283215", + "2283215", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126251", + "1483126251", + "1483127860", + "1483126251", + "1", + "12", + "0", + "-1", + "1609", + "0", + "19308", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283219", + "2283219", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126271", + "1483126271", + "1483127989", + "1483126271", + "1", + "12", + "0", + "-1", + "1718", + "0", + "20616", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283221", + "2283221", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126282", + "1483126282", + "1483127745", + "1483126282", + "1", + "12", + "0", + "-1", + "1463", + "0", + "17556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283246", + "2283246", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126470", + "1483126470", + "1483128097", + "1483126470", + "1", + "12", + "0", + "-1", + "1627", + "0", + "19524", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283255", + "2283255", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126565", + "1483126565", + "1483128194", + "1483126565", + "1", + "12", + "0", + "-1", + "1629", + "0", + "19548", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283265", + "2283265", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126625", + "1483126625", + "1483128387", + "1483126625", + "1", + "12", + "0", + "-1", + "1762", + "0", + "21144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283314", + "2283314", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483126956", + "1483126956", + "1483128607", + "1483126956", + "1", + "12", + "0", + "-1", + "1651", + "0", + "19812", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283365", + "2283365", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127350", + "1483127350", + "1483129129", + "1483127350", + "1", + "12", + "0", + "-1", + "1779", + "0", + "21348", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283394", + "2283394", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483127672", + "1483127672", + "1483129145", + "1483127672", + "1", + "12", + "0", + "-1", + "1473", + "0", + "17676", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283449", + "2283449", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128478", + "1483128478", + "1483130141", + "1483128478", + "1", + "12", + "0", + "-1", + "1663", + "0", + "19956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283454", + "2283454", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128501", + "1483128501", + "1483130287", + "1483128501", + "1", + "12", + "0", + "-1", + "1786", + "0", + "21432", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283460", + "2283460", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128528", + "1483128528", + "1483130222", + "1483128528", + "1", + "12", + "0", + "-1", + "1694", + "0", + "20328", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283486", + "2283486", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128743", + "1483128743", + "1483130425", + "1483128743", + "1", + "12", + "0", + "-1", + "1682", + "0", + "20184", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283496", + "2283496", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128807", + "1483128807", + "1483130515", + "1483128807", + "1", + "12", + "0", + "-1", + "1708", + "0", + "20496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283508", + "2283508", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128901", + "1483128901", + "1483130596", + "1483128901", + "1", + "12", + "0", + "-1", + "1695", + "0", + "20340", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283522", + "2283522", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483128969", + "1483128969", + "1483130675", + "1483128969", + "1", + "12", + "0", + "-1", + "1706", + "0", + "20472", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283549", + "2283549", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129245", + "1483129245", + "1483130928", + "1483129245", + "1", + "12", + "0", + "-1", + "1683", + "0", + "20196", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283561", + "2283561", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129403", + "1483129403", + "1483131046", + "1483129403", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283572", + "2283572", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129642", + "1483129642", + "1483131200", + "1483129642", + "1", + "12", + "0", + "-1", + "1558", + "0", + "18696", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283578", + "2283578", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129669", + "1483129669", + "1483131409", + "1483129669", + "1", + "12", + "0", + "-1", + "1740", + "0", + "20880", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283580", + "2283580", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483129684", + "1483129684", + "1483131358", + "1483129684", + "1", + "12", + "0", + "-1", + "1674", + "0", + "20088", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283613", + "2283613", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130097", + "1483130097", + "1483131727", + "1483130097", + "1", + "12", + "0", + "-1", + "1630", + "0", + "19560", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283617", + "2283617", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130106", + "1483130106", + "1483131683", + "1483130106", + "1", + "12", + "0", + "-1", + "1577", + "0", + "18924", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283635", + "2283635", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130315", + "1483130315", + "1483132105", + "1483130315", + "1", + "12", + "0", + "-1", + "1790", + "0", + "21480", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283673", + "2283673", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130599", + "1483130599", + "1483132223", + "1483130599", + "1", + "12", + "0", + "-1", + "1624", + "0", + "19488", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283677", + "2283677", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130608", + "1483130608", + "1483132170", + "1483130608", + "1", + "12", + "0", + "-1", + "1562", + "0", + "18744", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283691", + "2283691", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130700", + "1483130700", + "1483132044", + "1483130700", + "1", + "12", + "0", + "-1", + "1344", + "0", + "16128", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283703", + "2283703", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130796", + "1483130796", + "1483132336", + "1483130796", + "1", + "12", + "0", + "-1", + "1540", + "0", + "18480", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283712", + "2283712", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130907", + "1483130907", + "1483132399", + "1483130907", + "1", + "12", + "0", + "-1", + "1492", + "0", + "17904", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283714", + "2283714", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130929", + "1483130929", + "1483132529", + "1483130929", + "1", + "12", + "0", + "-1", + "1600", + "0", + "19200", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283717", + "2283717", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130965", + "1483130965", + "1483132471", + "1483130965", + "1", + "12", + "0", + "-1", + "1506", + "0", + "18072", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283719", + "2283719", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483130969", + "1483130969", + "1483132326", + "1483130969", + "1", + "12", + "0", + "-1", + "1357", + "0", + "16284", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283731", + "2283731", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131086", + "1483131086", + "1483132720", + "1483131086", + "1", + "12", + "0", + "-1", + "1634", + "0", + "19608", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283735", + "2283735", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131153", + "1483131153", + "1483132834", + "1483131153", + "1", + "12", + "0", + "-1", + "1681", + "0", + "20172", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283743", + "2283743", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131216", + "1483131216", + "1483132758", + "1483131216", + "1", + "12", + "0", + "-1", + "1542", + "0", + "18504", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283750", + "2283750", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131263", + "1483131263", + "1483132663", + "1483131263", + "1", + "12", + "0", + "-1", + "1400", + "0", + "16800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283752", + "2283752", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131270", + "1483131270", + "1483132788", + "1483131270", + "1", + "12", + "0", + "-1", + "1518", + "0", + "18216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283754", + "2283754", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131274", + "1483131274", + "1483132889", + "1483131274", + "1", + "12", + "0", + "-1", + "1615", + "0", + "19380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283759", + "2283759", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131288", + "1483131288", + "1483132835", + "1483131288", + "1", + "12", + "0", + "-1", + "1547", + "0", + "18564", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283762", + "2283762", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131311", + "1483131311", + "1483132805", + "1483131311", + "1", + "12", + "0", + "-1", + "1494", + "0", + "17928", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283764", + "2283764", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131331", + "1483131331", + "1483132701", + "1483131331", + "1", + "12", + "0", + "-1", + "1370", + "0", + "16440", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283770", + "2283770", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131415", + "1483131415", + "1483133195", + "1483131415", + "1", + "12", + "0", + "-1", + "1780", + "0", + "21360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283774", + "2283774", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131473", + "1483131473", + "1483133152", + "1483131473", + "1", + "12", + "0", + "-1", + "1679", + "0", + "20148", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283776", + "2283776", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131486", + "1483131486", + "1483133156", + "1483131486", + "1", + "12", + "0", + "-1", + "1670", + "0", + "20040", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283798", + "2283798", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131848", + "1483131848", + "1483133194", + "1483131848", + "1", + "12", + "0", + "-1", + "1346", + "0", + "16152", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283802", + "2283802", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131957", + "1483131957", + "1483133600", + "1483131957", + "1", + "12", + "0", + "-1", + "1643", + "0", + "19716", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283806", + "2283806", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483131986", + "1483131986", + "1483133513", + "1483131986", + "1", + "12", + "0", + "-1", + "1527", + "0", + "18324", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283829", + "2283829", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132109", + "1483132109", + "1483133891", + "1483132109", + "1", + "12", + "0", + "-1", + "1782", + "0", + "21384", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283860", + "2283860", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132429", + "1483132429", + "1483134098", + "1483132429", + "1", + "12", + "0", + "-1", + "1669", + "0", + "20028", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283867", + "2283867", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132476", + "1483132476", + "1483133987", + "1483132476", + "1", + "12", + "0", + "-1", + "1511", + "0", + "18132", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283878", + "2283878", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132534", + "1483132534", + "1483134026", + "1483132534", + "1", + "12", + "0", + "-1", + "1492", + "0", + "17904", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283882", + "2283882", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132555", + "1483132555", + "1483133968", + "1483132555", + "1", + "12", + "0", + "-1", + "1413", + "0", + "16956", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283890", + "2283890", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132667", + "1483132667", + "1483134205", + "1483132667", + "1", + "12", + "0", + "-1", + "1538", + "0", + "18456", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283892", + "2283892", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132688", + "1483132688", + "1483134343", + "1483132688", + "1", + "12", + "0", + "-1", + "1655", + "0", + "19860", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283902", + "2283902", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132716", + "1483132716", + "1483134389", + "1483132716", + "1", + "12", + "0", + "-1", + "1673", + "0", + "20076", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283904", + "2283904", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132725", + "1483132725", + "1483134206", + "1483132725", + "1", + "12", + "0", + "-1", + "1481", + "0", + "17772", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283908", + "2283908", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132742", + "1483132742", + "1483134205", + "1483132742", + "1", + "12", + "0", + "-1", + "1463", + "0", + "17556", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283912", + "2283912", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132763", + "1483132763", + "1483134259", + "1483132763", + "1", + "12", + "0", + "-1", + "1496", + "0", + "17952", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283915", + "2283915", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483132793", + "1483132793", + "1483134190", + "1483132793", + "1", + "12", + "0", + "-1", + "1397", + "0", + "16764", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283941", + "2283941", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133159", + "1483133159", + "1483134679", + "1483133159", + "1", + "12", + "0", + "-1", + "1520", + "0", + "18240", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283947", + "2283947", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133198", + "1483133198", + "1483134555", + "1483133198", + "1", + "12", + "0", + "-1", + "1357", + "0", + "16284", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283949", + "2283949", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133202", + "1483133202", + "1483134351", + "1483133202", + "1", + "12", + "0", + "-1", + "1149", + "0", + "13788", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283951", + "2283951", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133206", + "1483133206", + "1483134637", + "1483133206", + "1", + "12", + "0", + "-1", + "1431", + "0", + "17172", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283956", + "2283956", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133238", + "1483133238", + "1483134563", + "1483133238", + "1", + "12", + "0", + "-1", + "1325", + "0", + "15900", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283964", + "2283964", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133355", + "1483133355", + "1483134481", + "1483133355", + "1", + "12", + "0", + "-1", + "1126", + "0", + "13512", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283968", + "2283968", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133364", + "1483133364", + "1483134684", + "1483133364", + "1", + "12", + "0", + "-1", + "1320", + "0", + "15840", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283975", + "2283975", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133462", + "1483133462", + "1483135149", + "1483133462", + "1", + "12", + "0", + "-1", + "1687", + "0", + "20244", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2283999", + "2283999", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133758", + "1483133758", + "1483135484", + "1483133758", + "1", + "12", + "0", + "-1", + "1726", + "0", + "20712", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284014", + "2284014", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133944", + "1483133944", + "1483135463", + "1483133944", + "1", + "12", + "0", + "-1", + "1519", + "0", + "18228", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284016", + "2284016", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483133949", + "1483133949", + "1483135736", + "1483133949", + "1", + "12", + "0", + "-1", + "1787", + "0", + "21444", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284033", + "2284033", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134030", + "1483134030", + "1483135826", + "1483134030", + "1", + "12", + "0", + "-1", + "1796", + "0", + "21552", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284087", + "2284087", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134410", + "1483134410", + "1483136124", + "1483134410", + "1", + "12", + "0", + "-1", + "1714", + "0", + "20568", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284095", + "2284095", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134484", + "1483134484", + "1483136060", + "1483134484", + "1", + "12", + "0", + "-1", + "1576", + "0", + "18912", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284101", + "2284101", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134558", + "1483134558", + "1483136127", + "1483134558", + "1", + "12", + "0", + "-1", + "1569", + "0", + "18828", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284105", + "2284105", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134571", + "1483134571", + "1483136221", + "1483134571", + "1", + "12", + "0", + "-1", + "1650", + "0", + "19800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284132", + "2284132", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134777", + "1483134777", + "1483136565", + "1483134777", + "1", + "12", + "0", + "-1", + "1788", + "0", + "21456", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284134", + "2284134", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134802", + "1483134802", + "1483136495", + "1483134802", + "1", + "12", + "0", + "-1", + "1693", + "0", + "20316", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284141", + "2284141", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483134887", + "1483134887", + "1483136483", + "1483134887", + "1", + "12", + "0", + "-1", + "1596", + "0", + "19152", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284203", + "2284203", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135744", + "1483135744", + "1483137452", + "1483135744", + "1", + "12", + "0", + "-1", + "1708", + "0", + "20496", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284208", + "2284208", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135817", + "1483135817", + "1483137572", + "1483135817", + "1", + "12", + "0", + "-1", + "1755", + "0", + "21060", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284215", + "2284215", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483135902", + "1483135902", + "1483137478", + "1483135902", + "1", + "12", + "0", + "-1", + "1576", + "0", + "18912", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284261", + "2284261", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483136211", + "1483136211", + "1483137947", + "1483136211", + "1", + "12", + "0", + "-1", + "1736", + "0", + "20832", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284280", + "2284280", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483136370", + "1483136370", + "1483137799", + "1483136370", + "1", + "12", + "0", + "-1", + "1429", + "0", + "17148", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284282", + "2284282", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483136388", + "1483136388", + "1483137959", + "1483136388", + "1", + "12", + "0", + "-1", + "1571", + "0", + "18852", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284295", + "2284295", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483136498", + "1483136498", + "1483138048", + "1483136498", + "1", + "12", + "0", + "-1", + "1550", + "0", + "18600", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284345", + "2284345", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137049", + "1483137049", + "1483138706", + "1483137049", + "1", + "12", + "0", + "-1", + "1657", + "0", + "19884", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284347", + "2284347", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137056", + "1483137056", + "1483138736", + "1483137056", + "1", + "12", + "0", + "-1", + "1680", + "0", + "20160", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284351", + "2284351", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137072", + "1483137072", + "1483138847", + "1483137072", + "1", + "12", + "0", + "-1", + "1775", + "0", + "21300", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284353", + "2284353", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137097", + "1483137097", + "1483138685", + "1483137097", + "1", + "12", + "0", + "-1", + "1588", + "0", + "19056", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284378", + "2284378", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137346", + "1483137346", + "1483138830", + "1483137346", + "1", + "12", + "0", + "-1", + "1484", + "0", + "17808", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284386", + "2284386", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137483", + "1483137483", + "1483138777", + "1483137483", + "1", + "12", + "0", + "-1", + "1294", + "0", + "15528", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284393", + "2284393", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137578", + "1483137578", + "1483139012", + "1483137578", + "1", + "12", + "0", + "-1", + "1434", + "0", + "17208", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284407", + "2284407", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137720", + "1483137720", + "1483139040", + "1483137720", + "1", + "12", + "0", + "-1", + "1320", + "0", + "15840", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284412", + "2284412", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137797", + "1483137797", + "1483139454", + "1483137797", + "1", + "12", + "0", + "-1", + "1657", + "0", + "19884", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284416", + "2284416", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137813", + "1483137813", + "1483139452", + "1483137813", + "1", + "12", + "0", + "-1", + "1639", + "0", + "19668", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284428", + "2284428", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483137959", + "1483137959", + "1483139609", + "1483137959", + "1", + "12", + "0", + "-1", + "1650", + "0", + "19800", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284444", + "2284444", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138070", + "1483138070", + "1483139464", + "1483138070", + "1", + "12", + "0", + "-1", + "1394", + "0", + "16728", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284455", + "2284455", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138174", + "1483138174", + "1483139673", + "1483138174", + "1", + "12", + "0", + "-1", + "1499", + "0", + "17988", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284473", + "2284473", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138325", + "1483138325", + "1483139870", + "1483138325", + "1", + "12", + "0", + "-1", + "1545", + "0", + "18540", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284477", + "2284477", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138378", + "1483138378", + "1483140113", + "1483138378", + "1", + "12", + "0", + "-1", + "1735", + "0", + "20820", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284479", + "2284479", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138411", + "1483138411", + "1483139970", + "1483138411", + "1", + "12", + "0", + "-1", + "1559", + "0", + "18708", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284499", + "2284499", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138559", + "1483138559", + "1483140184", + "1483138559", + "1", + "12", + "0", + "-1", + "1625", + "0", + "19500", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284519", + "2284519", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138691", + "1483138691", + "1483140191", + "1483138691", + "1", + "12", + "0", + "-1", + "1500", + "0", + "18000", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284531", + "2284531", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138775", + "1483138775", + "1483140539", + "1483138775", + "1", + "12", + "0", + "-1", + "1764", + "0", + "21168", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284533", + "2284533", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138779", + "1483138779", + "1483140236", + "1483138779", + "1", + "12", + "0", + "-1", + "1457", + "0", + "17484", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284552", + "2284552", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483138889", + "1483138889", + "1483140484", + "1483138889", + "1", + "12", + "0", + "-1", + "1595", + "0", + "19140", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284563", + "2284563", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139044", + "1483139044", + "1483140410", + "1483139044", + "1", + "12", + "0", + "-1", + "1366", + "0", + "16392", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284581", + "2284581", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139253", + "1483139253", + "1483140706", + "1483139253", + "1", + "12", + "0", + "-1", + "1453", + "0", + "17436", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284587", + "2284587", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139313", + "1483139313", + "1483140790", + "1483139313", + "1", + "12", + "0", + "-1", + "1477", + "0", + "17724", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284590", + "2284590", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139369", + "1483139369", + "1483140917", + "1483139369", + "1", + "12", + "0", + "-1", + "1548", + "0", + "18576", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284594", + "2284594", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139420", + "1483139420", + "1483140855", + "1483139420", + "1", + "12", + "0", + "-1", + "1435", + "0", + "17220", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284601", + "2284601", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139468", + "1483139468", + "1483141004", + "1483139468", + "1", + "12", + "0", + "-1", + "1536", + "0", + "18432", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284603", + "2284603", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139473", + "1483139473", + "1483140853", + "1483139473", + "1", + "12", + "0", + "-1", + "1380", + "0", + "16560", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284606", + "2284606", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139516", + "1483139516", + "1483140881", + "1483139516", + "1", + "12", + "0", + "-1", + "1365", + "0", + "16380", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284608", + "2284608", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139532", + "1483139532", + "1483141146", + "1483139532", + "1", + "12", + "0", + "-1", + "1614", + "0", + "19368", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284610", + "2284610", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139538", + "1483139538", + "1483141303", + "1483139538", + "1", + "12", + "0", + "-1", + "1765", + "0", + "21180", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284612", + "2284612", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139543", + "1483139543", + "1483140985", + "1483139543", + "1", + "12", + "0", + "-1", + "1442", + "0", + "17304", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284614", + "2284614", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139570", + "1483139570", + "1483141082", + "1483139570", + "1", + "12", + "0", + "-1", + "1512", + "0", + "18144", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284638", + "2284638", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139949", + "1483139949", + "1483141671", + "1483139949", + "1", + "12", + "0", + "-1", + "1722", + "0", + "20664", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284642", + "2284642", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483139976", + "1483139976", + "1483141739", + "1483139976", + "1", + "12", + "0", + "-1", + "1763", + "0", + "21156", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284729", + "2284729", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140598", + "1483140598", + "1483142378", + "1483140598", + "1", + "12", + "0", + "-1", + "1780", + "0", + "21360", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284739", + "2284739", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140695", + "1483140695", + "1483142175", + "1483140695", + "1", + "12", + "0", + "-1", + "1480", + "0", + "17760", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284743", + "2284743", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140713", + "1483140713", + "1483142270", + "1483140713", + "1", + "12", + "0", + "-1", + "1557", + "0", + "18684", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284746", + "2284746", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140746", + "1483140746", + "1483142264", + "1483140746", + "1", + "12", + "0", + "-1", + "1518", + "0", + "18216", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284752", + "2284752", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483140806", + "1483140806", + "1483142339", + "1483140806", + "1", + "12", + "0", + "-1", + "1533", + "0", + "18396", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284787", + "2284787", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141050", + "1483141050", + "1483142743", + "1483141050", + "1", + "12", + "0", + "-1", + "1693", + "0", + "20316", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284791", + "2284791", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141063", + "1483141063", + "1483142613", + "1483141063", + "1", + "12", + "0", + "-1", + "1550", + "0", + "18600", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284794", + "2284794", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141086", + "1483141086", + "1483142778", + "1483141086", + "1", + "12", + "0", + "-1", + "1692", + "0", + "20304", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284815", + "2284815", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141399", + "1483141399", + "1483142859", + "1483141399", + "1", + "12", + "0", + "-1", + "1460", + "0", + "17520", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284820", + "2284820", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141433", + "1483141433", + "1483142861", + "1483141433", + "1", + "12", + "0", + "-1", + "1428", + "0", + "17136", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284841", + "2284841", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483141813", + "1483141813", + "1483143480", + "1483141813", + "1", + "12", + "0", + "-1", + "1667", + "0", + "20004", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284849", + "2284849", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483142032", + "1483142032", + "1483143678", + "1483142032", + "1", + "12", + "0", + "-1", + "1646", + "0", + "19752", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284861", + "2284861", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483142150", + "1483142150", + "1483143931", + "1483142150", + "1", + "12", + "0", + "-1", + "1781", + "0", + "21372", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "2284869", + "2284869", + "Frearson", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483142222", + "1483142222", + "1483143981", + "1483142222", + "1", + "12", + "0", + "-1", + "1759", + "0", + "21108", + "0", + "0:0", + "COMPLETED", + "12", + "2147486648Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "6110882", + "6110882", + "Robertson", + "UTC", + "", + "Stint, Little", + "Screwdriver", + "green-grape", + "1483121066", + "1483121066", + "1483121375", + "1483121066", + "1", + "12", + "0", + "-1", + "309", + "0", + "3708", + "0", + "0:0", + "CANCELLED by 284980", + "12", + "2147486448Mn", + "3600", + "potbrood", + "Mathematical and Physical Sciences", + "Astronomical Sciences", + "Galactic Astronomy" + ], + [ + "6111541", + "6111541", + "Robertson", + "UTC", + "", + "Bunting, Reed", + "Screwdriver", + "green-grape", + "1483129553", + "1483129553", + "1483131190", + "1483129553", + "1", + "12", + "0", + "-1", + "1637", + "0", + "19644", + "0", + "0:0", + "COMPLETED", + "12", + "2147486448Mn", + "3600", + "potbrood", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "6111777", + "6111777", + "Robertson", + "UTC", + "", + "Warbler, Sardinian", + "Screwdriver", + "green-grape", + "1483130935", + "1483130935", + "1483132386", + "1483130935", + "1", + "12", + "0", + "-1", + "1451", + "0", + "17412", + "0", + "0:0", + "COMPLETED", + "12", + "2147486448Mn", + "3600", + "potbrood", + "Mathematical and Physical Sciences", + "Chemistry", + "Physical Chemistry" + ], + [ + "6108322", + "6108322", + "Robertson", + "UTC", + "", + "Partridge, Red-legged", + "Screwdriver", + "green-grape", + "1483056653", + "1483056653", + "1483056887", + "1483056653", + "1", + "16", + "0", + "-1", + "234", + "0", + "3744", + "0", + "0:0", + "COMPLETED", + "16", + "2147486448Mn", + "3600", + "potbrood", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Law and Social Sciences" + ], + [ + "6108327", + "6108327", + "Robertson", + "UTC", + "", + "Warbler, Golden-winged", + "Screwdriver", + "green-grape", + "1483057009", + "1483057009", + "1483057050", + "1483057009", + "2", + "24", + "0", + "-1", + "41", + "0", + "984", + "0", + "0:0", + "CANCELLED by 333296", + "24", + "2147486448Mn", + "3600", + "potbrood", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Economics" + ], + [ + "181610", + "181610", + "Phillips", + "UTC", + "", + "Swift, Alpine", + "Screwdriver", + "coconut-cream", + "1483133995", + "1483133995", + "1483134352", + "1483133995", + "4", + "32", + "0", + "-1", + "357", + "0", + "11424", + "0", + "0:0", + "COMPLETED", + "32", + "7000Mn", + "37800", + "crumpet", + "Mathematical and Physical Sciences", + "Chemistry", + "Organic and Macromolecular Chemistry" + ], + [ + "181778", + "181778", + "Phillips", + "UTC", + "", + "Swift, Alpine", + "Screwdriver", + "coconut-cream", + "1483135368", + "1483135368", + "1483135473", + "1483135368", + "8", + "64", + "0", + "-1", + "105", + "0", + "6720", + "0", + "0:0", + "COMPLETED", + "64", + "7000Mn", + "37800", + "crumpet", + "Mathematical and Physical Sciences", + "Chemistry", + "Organic and Macromolecular Chemistry" + ], + [ + "6110473", + "6110473", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118705", + "1483118707", + "1483118934", + "1483118705", + "1", + "1", + "0", + "-1", + "227", + "2", + "227", + "0", + "0:0", + "CANCELLED by 425535", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6110475", + "6110475", + "Robertson", + "UTC", + "", + "Harrier, Hen", + "Screwdriver", + "curry", + "1483118717", + "1483118724", + "1483119004", + "1483118717", + "1", + "1", + "0", + "-1", + "280", + "7", + "280", + "0", + "0:0", + "CANCELLED by 425535", + "1", + "48000Mn", + "172800", + "white", + "Computer and Information Science and Engineering", + "Computer and Computation Research", + "Computer and Computation Theory" + ], + [ + "6108787", + "6108787", + "Robertson", + "UTC", + "", + "Moorhen", + "Screwdriver", + "curry", + "1483074101", + "1483074118", + "1483074878", + "1483074101", + "1", + "1", + "0", + "-1", + "760", + "17", + "760", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "19800", + "white", + "Computer and Information Science and Engineering", + "Microelectronic Information Processing Systems", + "Systems Prototyping and Fabrication" + ], + [ + "1009174", + "1009174", + "Posidriv", + "UTC", + "", + "Sparrow, Savannah", + "Screwdriver", + "banana-cream", + "1483121514", + "1483121536", + "1483121627", + "1483121514", + "1", + "1", + "0", + "-1", + "91", + "22", + "91", + "0", + "0:0", + "COMPLETED", + "1", + "40000Mn", + "86400", + "cornbread", + "Mathematical and Physical Sciences", + "Astronomical Sciences", + "Galactic Astronomy" + ], + [ + "1004599", + "1004599", + "Posidriv", + "UTC", + "", + "Sparrow, Savannah", + "Screwdriver", + "bavarian-cream", + "1483060706", + "1483060708", + "1483060780", + "1483060706", + "1", + "1", + "0", + "-1", + "72", + "2", + "72", + "0", + "0:0", + "COMPLETED", + "1", + "40000Mn", + "86400", + "cornbread", + "Mathematical and Physical Sciences", + "Astronomical Sciences", + "Galactic Astronomy" + ], + [ + "6109629[4]", + "6109629", + "Robertson", + "UTC", + "", + "Treecreeper, Short-toed", + "Screwdriver", + "green-grape", + "1483109925", + "1483109926", + "1483111176", + "1483109926", + "1", + "1", + "0", + "-1", + "1250", + "1", + "1250", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Biological Sciences", + "Molecular Biosciences", + "Cell Biology" + ], + [ + "6109629[1]", + "6109630", + "Robertson", + "UTC", + "", + "Treecreeper, Short-toed", + "Screwdriver", + "green-grape", + "1483109925", + "1483109926", + "1483110239", + "1483109926", + "1", + "1", + "0", + "-1", + "313", + "1", + "313", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Biological Sciences", + "Molecular Biosciences", + "Cell Biology" + ], + [ + "6109629[2]", + "6109631", + "Robertson", + "UTC", + "", + "Treecreeper, Short-toed", + "Screwdriver", + "green-grape", + "1483109925", + "1483109926", + "1483110554", + "1483109926", + "1", + "1", + "0", + "-1", + "628", + "1", + "628", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Biological Sciences", + "Molecular Biosciences", + "Cell Biology" + ], + [ + "6109629[3]", + "6109632", + "Robertson", + "UTC", + "", + "Treecreeper, Short-toed", + "Screwdriver", + "green-grape", + "1483109925", + "1483109926", + "1483110865", + "1483109926", + "1", + "1", + "0", + "-1", + "939", + "1", + "939", + "0", + "0:0", + "COMPLETED", + "1", + "2147486448Mn", + "3600", + "potbrood", + "Biological Sciences", + "Molecular Biosciences", + "Cell Biology" + ], + [ + "6109116", + "6109116", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483095768", + "1483095789", + "1483095843", + "1483095768", + "1", + "1", + "0", + "-1", + "54", + "21", + "54", + "0", + "0:0", + "COMPLETED", + "1", + "2000Mn", + "18000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6110898[19]", + "6110911", + "Robertson", + "UTC", + "", + "Grey, Southern", + "Screwdriver", + "curry", + "1483121756", + "1483121757", + "1483123058", + "1483121756", + "1", + "1", + "0", + "-1", + "1301", + "1", + "1301", + "0", + "0:0", + "COMPLETED", + "1", + "8000Mn", + "36000", + "white", + "Geosciences", + "Polar Programs", + "Polar Meteorology" + ], + [ + "6108553", + "6108553", + "Robertson", + "UTC", + "", + "Warbler, Golden-winged", + "Screwdriver", + "green-grape", + "1483064928", + "1483064930", + "1483065048", + "1483064928", + "1", + "1", + "0", + "-1", + "118", + "2", + "118", + "0", + "0:0", + "COMPLETED", + "1", + "48000Mn", + "3600", + "potbrood", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Economics" + ], + [ + "968141", + "968141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055965", + "1483055966", + "1483056017", + "1483055965", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968149", + "968149", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483055991", + "1483055992", + "1483056023", + "1483055991", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968155", + "968155", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056006", + "1483056007", + "1483056052", + "1483056006", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968157", + "968157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056008", + "1483056010", + "1483056051", + "1483056008", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968159", + "968159", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056018", + "1483056019", + "1483056058", + "1483056018", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968165", + "968165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056025", + "1483056027", + "1483056077", + "1483056025", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968169", + "968169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056052", + "1483056055", + "1483056089", + "1483056052", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968173", + "968173", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056059", + "1483056061", + "1483056098", + "1483056059", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968175", + "968175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056071", + "1483056072", + "1483056108", + "1483056071", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968197", + "968197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056141", + "1483056142", + "1483056185", + "1483056141", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968214", + "968214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056186", + "1483056187", + "1483056229", + "1483056186", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968226", + "968226", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056230", + "1483056231", + "1483056284", + "1483056230", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968230", + "968230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056235", + "1483056238", + "1483056292", + "1483056235", + "1", + "8", + "0", + "-1", + "54", + "3", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968236", + "968236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056261", + "1483056262", + "1483056300", + "1483056261", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968246", + "968246", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056288", + "1483056291", + "1483056331", + "1483056288", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968248", + "968248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056293", + "1483056295", + "1483056365", + "1483056293", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968250", + "968250", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056300", + "1483056301", + "1483056364", + "1483056300", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968256", + "968256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056309", + "1483056311", + "1483056345", + "1483056309", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968258", + "968258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056312", + "1483056314", + "1483056385", + "1483056312", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968264", + "968264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056345", + "1483056346", + "1483056379", + "1483056345", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968266", + "968266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056364", + "1483056365", + "1483056399", + "1483056364", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968270", + "968270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056366", + "1483056368", + "1483056410", + "1483056366", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968280", + "968280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056410", + "1483056411", + "1483056441", + "1483056410", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968288", + "968288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056440", + "1483056441", + "1483056485", + "1483056440", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968306", + "968306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056485", + "1483056486", + "1483056536", + "1483056485", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968320", + "968320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056537", + "1483056538", + "1483056592", + "1483056537", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968322", + "968322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056539", + "1483056541", + "1483056578", + "1483056539", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968324", + "968324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056542", + "1483056544", + "1483056589", + "1483056542", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968326", + "968326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056555", + "1483056556", + "1483056609", + "1483056555", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968330", + "968330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056557", + "1483056559", + "1483056598", + "1483056557", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968338", + "968338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056593", + "1483056595", + "1483056637", + "1483056593", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968340", + "968340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056599", + "1483056600", + "1483056661", + "1483056599", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968342", + "968342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056605", + "1483056606", + "1483056657", + "1483056605", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968344", + "968344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056610", + "1483056611", + "1483056752", + "1483056610", + "1", + "8", + "0", + "-1", + "141", + "1", + "1128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968346", + "968346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056616", + "1483056617", + "1483056655", + "1483056616", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968348", + "968348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056619", + "1483056620", + "1483056693", + "1483056619", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968350", + "968350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056637", + "1483056638", + "1483056683", + "1483056637", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968358", + "968358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056662", + "1483056663", + "1483056707", + "1483056662", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968364", + "968364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056683", + "1483056684", + "1483056732", + "1483056683", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968379", + "968379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056724", + "1483056725", + "1483056764", + "1483056724", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968385", + "968385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056734", + "1483056735", + "1483056779", + "1483056734", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968387", + "968387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056735", + "1483056736", + "1483056776", + "1483056735", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968393", + "968393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056757", + "1483056759", + "1483056827", + "1483056757", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968395", + "968395", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056764", + "1483056765", + "1483056815", + "1483056764", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968403", + "968403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056801", + "1483056802", + "1483056835", + "1483056801", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968417", + "968417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056836", + "1483056838", + "1483056874", + "1483056836", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968433", + "968433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056875", + "1483056876", + "1483056907", + "1483056875", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968435", + "968435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056877", + "1483056878", + "1483056964", + "1483056877", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968441", + "968441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056883", + "1483056884", + "1483056944", + "1483056883", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968443", + "968443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056884", + "1483056887", + "1483056917", + "1483056884", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968454", + "968454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056914", + "1483056915", + "1483056972", + "1483056914", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968456", + "968456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056918", + "1483056919", + "1483056977", + "1483056918", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968469", + "968469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056956", + "1483056957", + "1483057004", + "1483056956", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968471", + "968471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056964", + "1483056965", + "1483057009", + "1483056964", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968473", + "968473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056968", + "1483056969", + "1483057001", + "1483056968", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968475", + "968475", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056973", + "1483056974", + "1483057048", + "1483056973", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968477", + "968477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056975", + "1483056977", + "1483057049", + "1483056975", + "1", + "8", + "0", + "-1", + "72", + "2", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968479", + "968479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483056978", + "1483056980", + "1483057127", + "1483056978", + "1", + "8", + "0", + "-1", + "147", + "2", + "1176", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968483", + "968483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057001", + "1483057002", + "1483057078", + "1483057001", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968485", + "968485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057004", + "1483057005", + "1483057080", + "1483057004", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968487", + "968487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057009", + "1483057010", + "1483057047", + "1483057009", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968491", + "968491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057049", + "1483057050", + "1483057081", + "1483057049", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968493", + "968493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057050", + "1483057051", + "1483057083", + "1483057050", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968496", + "968496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057077", + "1483057078", + "1483057117", + "1483057077", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968498", + "968498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057079", + "1483057081", + "1483057115", + "1483057079", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968502", + "968502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057082", + "1483057084", + "1483057142", + "1483057082", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968520", + "968520", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057144", + "1483057146", + "1483057185", + "1483057144", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968540", + "968540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057221", + "1483057222", + "1483057252", + "1483057221", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968556", + "968556", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057283", + "1483057284", + "1483057333", + "1483057283", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968562", + "968562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057298", + "1483057299", + "1483057345", + "1483057298", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968564", + "968564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057299", + "1483057300", + "1483057348", + "1483057299", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968566", + "968566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057303", + "1483057304", + "1483057345", + "1483057303", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968568", + "968568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057313", + "1483057315", + "1483057388", + "1483057313", + "1", + "8", + "0", + "-1", + "73", + "2", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968570", + "968570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057321", + "1483057322", + "1483057394", + "1483057321", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968574", + "968574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057333", + "1483057335", + "1483057374", + "1483057333", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968584", + "968584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057349", + "1483057350", + "1483057404", + "1483057349", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968592", + "968592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057377", + "1483057378", + "1483057415", + "1483057377", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968598", + "968598", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057395", + "1483057396", + "1483057438", + "1483057395", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968602", + "968602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057402", + "1483057403", + "1483057437", + "1483057402", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968604", + "968604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057404", + "1483057406", + "1483057439", + "1483057404", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968614", + "968614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057439", + "1483057441", + "1483057512", + "1483057439", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968616", + "968616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057443", + "1483057444", + "1483057515", + "1483057443", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968620", + "968620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057462", + "1483057463", + "1483057513", + "1483057462", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968622", + "968622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057476", + "1483057477", + "1483057554", + "1483057476", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968624", + "968624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057504", + "1483057505", + "1483057581", + "1483057504", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968628", + "968628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057513", + "1483057515", + "1483057575", + "1483057513", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968650", + "968650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057597", + "1483057600", + "1483057655", + "1483057597", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968656", + "968656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057631", + "1483057633", + "1483057686", + "1483057631", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968660", + "968660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057648", + "1483057649", + "1483057704", + "1483057648", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968662", + "968662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057655", + "1483057656", + "1483057719", + "1483057655", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968664", + "968664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057658", + "1483057659", + "1483057841", + "1483057658", + "1", + "8", + "0", + "-1", + "182", + "1", + "1456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968668", + "968668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057667", + "1483057669", + "1483057730", + "1483057667", + "1", + "8", + "0", + "-1", + "61", + "2", + "488", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968670", + "968670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057683", + "1483057684", + "1483057776", + "1483057683", + "1", + "8", + "0", + "-1", + "92", + "1", + "736", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968672", + "968672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057686", + "1483057687", + "1483057735", + "1483057686", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968674", + "968674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057704", + "1483057705", + "1483057742", + "1483057704", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968676", + "968676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057719", + "1483057720", + "1483057767", + "1483057719", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968684", + "968684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057755", + "1483057756", + "1483057793", + "1483057755", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968688", + "968688", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057766", + "1483057767", + "1483057799", + "1483057766", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968690", + "968690", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057768", + "1483057770", + "1483057822", + "1483057768", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968708", + "968708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057823", + "1483057825", + "1483057857", + "1483057823", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968710", + "968710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057828", + "1483057829", + "1483057903", + "1483057828", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968714", + "968714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057842", + "1483057843", + "1483057914", + "1483057842", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968720", + "968720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057857", + "1483057860", + "1483057890", + "1483057857", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968738", + "968738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057914", + "1483057915", + "1483057952", + "1483057914", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968746", + "968746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057929", + "1483057931", + "1483057970", + "1483057929", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968752", + "968752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057938", + "1483057939", + "1483057970", + "1483057938", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968754", + "968754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057941", + "1483057942", + "1483057972", + "1483057941", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968758", + "968758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057951", + "1483057952", + "1483057988", + "1483057951", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968760", + "968760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057953", + "1483057955", + "1483058024", + "1483057953", + "1", + "8", + "0", + "-1", + "69", + "2", + "552", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968762", + "968762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483057970", + "1483057971", + "1483058028", + "1483057970", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968778", + "968778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058020", + "1483058023", + "1483058057", + "1483058020", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968802", + "968802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058069", + "1483058070", + "1483058191", + "1483058069", + "1", + "8", + "0", + "-1", + "121", + "1", + "968", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968804", + "968804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058081", + "1483058082", + "1483058115", + "1483058081", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968806", + "968806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058085", + "1483058086", + "1483058117", + "1483058085", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968808", + "968808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058093", + "1483058095", + "1483058133", + "1483058093", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968811", + "968811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058094", + "1483058095", + "1483058129", + "1483058094", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968813", + "968813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058097", + "1483058098", + "1483058134", + "1483058097", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968819", + "968819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058130", + "1483058131", + "1483058166", + "1483058130", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968821", + "968821", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058133", + "1483058134", + "1483058181", + "1483058133", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968831", + "968831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058166", + "1483058167", + "1483058208", + "1483058166", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968837", + "968837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058178", + "1483058180", + "1483058217", + "1483058178", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968839", + "968839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058181", + "1483058183", + "1483058218", + "1483058181", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968841", + "968841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058192", + "1483058193", + "1483058246", + "1483058192", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968845", + "968845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058199", + "1483058201", + "1483058261", + "1483058199", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968851", + "968851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058217", + "1483058218", + "1483058283", + "1483058217", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968853", + "968853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058219", + "1483058220", + "1483058282", + "1483058219", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968855", + "968855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058246", + "1483058247", + "1483058278", + "1483058246", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968866", + "968866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058284", + "1483058286", + "1483058334", + "1483058284", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968886", + "968886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058337", + "1483058338", + "1483058385", + "1483058337", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968892", + "968892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058360", + "1483058361", + "1483058489", + "1483058360", + "1", + "8", + "0", + "-1", + "128", + "1", + "1024", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968894", + "968894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058363", + "1483058364", + "1483058399", + "1483058363", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968902", + "968902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058398", + "1483058399", + "1483058459", + "1483058398", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968904", + "968904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058399", + "1483058402", + "1483058432", + "1483058399", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968906", + "968906", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058418", + "1483058419", + "1483058461", + "1483058418", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968908", + "968908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058431", + "1483058432", + "1483058462", + "1483058431", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968910", + "968910", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058433", + "1483058435", + "1483058473", + "1483058433", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968914", + "968914", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058460", + "1483058461", + "1483058493", + "1483058460", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968916", + "968916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058461", + "1483058462", + "1483058504", + "1483058461", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968918", + "968918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058463", + "1483058464", + "1483058529", + "1483058463", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968922", + "968922", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058480", + "1483058481", + "1483058516", + "1483058480", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968930", + "968930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058504", + "1483058505", + "1483058554", + "1483058504", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968936", + "968936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058517", + "1483058518", + "1483058556", + "1483058517", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968938", + "968938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058518", + "1483058520", + "1483058622", + "1483058518", + "1", + "8", + "0", + "-1", + "102", + "2", + "816", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968940", + "968940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058530", + "1483058531", + "1483058578", + "1483058530", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968942", + "968942", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058555", + "1483058556", + "1483058607", + "1483058555", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968944", + "968944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058557", + "1483058558", + "1483058641", + "1483058557", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968946", + "968946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058558", + "1483058559", + "1483058629", + "1483058558", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968950", + "968950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058564", + "1483058565", + "1483058635", + "1483058564", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968964", + "968964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058635", + "1483058636", + "1483058710", + "1483058635", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968978", + "968978", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058685", + "1483058686", + "1483058769", + "1483058685", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968980", + "968980", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058688", + "1483058689", + "1483058771", + "1483058688", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968982", + "968982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058691", + "1483058692", + "1483058782", + "1483058691", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968986", + "968986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058709", + "1483058710", + "1483058778", + "1483058709", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968988", + "968988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058710", + "1483058711", + "1483058807", + "1483058710", + "1", + "8", + "0", + "-1", + "96", + "1", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "968994", + "968994", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058771", + "1483058773", + "1483058827", + "1483058771", + "1", + "8", + "0", + "-1", + "54", + "2", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969000", + "969000", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058808", + "1483058809", + "1483058844", + "1483058808", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969002", + "969002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058826", + "1483058827", + "1483058860", + "1483058826", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969004", + "969004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058827", + "1483058830", + "1483058902", + "1483058827", + "1", + "8", + "0", + "-1", + "72", + "3", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969006", + "969006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058832", + "1483058833", + "1483058897", + "1483058832", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969008", + "969008", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058838", + "1483058839", + "1483058910", + "1483058838", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969012", + "969012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058844", + "1483058845", + "1483058887", + "1483058844", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969014", + "969014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058846", + "1483058848", + "1483058913", + "1483058846", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969026", + "969026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058898", + "1483058900", + "1483058958", + "1483058898", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969028", + "969028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058903", + "1483058904", + "1483058978", + "1483058903", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969032", + "969032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058914", + "1483058915", + "1483058963", + "1483058914", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969034", + "969034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058922", + "1483058923", + "1483058988", + "1483058922", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969040", + "969040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058958", + "1483058959", + "1483059100", + "1483058958", + "1", + "8", + "0", + "-1", + "141", + "1", + "1128", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969042", + "969042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058963", + "1483058964", + "1483059100", + "1483058963", + "1", + "8", + "0", + "-1", + "136", + "1", + "1088", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969046", + "969046", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058978", + "1483058979", + "1483059107", + "1483058978", + "1", + "8", + "0", + "-1", + "128", + "1", + "1024", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969048", + "969048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483058988", + "1483058989", + "1483059109", + "1483058988", + "1", + "8", + "0", + "-1", + "120", + "1", + "960", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969054", + "969054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059071", + "1483059072", + "1483059211", + "1483059071", + "1", + "8", + "0", + "-1", + "139", + "1", + "1112", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969058", + "969058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059100", + "1483059101", + "1483059235", + "1483059100", + "1", + "8", + "0", + "-1", + "134", + "1", + "1072", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969064", + "969064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059109", + "1483059110", + "1483059226", + "1483059109", + "1", + "8", + "0", + "-1", + "116", + "1", + "928", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969082", + "969082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059238", + "1483059239", + "1483059405", + "1483059238", + "1", + "8", + "0", + "-1", + "166", + "1", + "1328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969086", + "969086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059293", + "1483059295", + "1483059343", + "1483059293", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969090", + "969090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059343", + "1483059344", + "1483059393", + "1483059343", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969094", + "969094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059378", + "1483059379", + "1483059419", + "1483059378", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969096", + "969096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059385", + "1483059386", + "1483059440", + "1483059385", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969098", + "969098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059393", + "1483059394", + "1483059447", + "1483059393", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969100", + "969100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059396", + "1483059397", + "1483059452", + "1483059396", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969104", + "969104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059406", + "1483059407", + "1483059456", + "1483059406", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969106", + "969106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059420", + "1483059421", + "1483059468", + "1483059420", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969108", + "969108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059441", + "1483059442", + "1483059489", + "1483059441", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969110", + "969110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059448", + "1483059449", + "1483059497", + "1483059448", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969112", + "969112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059453", + "1483059454", + "1483059494", + "1483059453", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969114", + "969114", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059457", + "1483059458", + "1483059500", + "1483059457", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969116", + "969116", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059468", + "1483059469", + "1483059522", + "1483059468", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969122", + "969122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059490", + "1483059491", + "1483059633", + "1483059490", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969130", + "969130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059523", + "1483059524", + "1483059564", + "1483059523", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969132", + "969132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059539", + "1483059540", + "1483059612", + "1483059539", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969134", + "969134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059563", + "1483059564", + "1483059637", + "1483059563", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969136", + "969136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059565", + "1483059567", + "1483059606", + "1483059565", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969142", + "969142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059597", + "1483059598", + "1483059676", + "1483059597", + "1", + "8", + "0", + "-1", + "78", + "1", + "624", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969144", + "969144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059603", + "1483059604", + "1483059680", + "1483059603", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969164", + "969164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059678", + "1483059680", + "1483059776", + "1483059678", + "1", + "8", + "0", + "-1", + "96", + "2", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969168", + "969168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059685", + "1483059686", + "1483059854", + "1483059685", + "1", + "8", + "0", + "-1", + "168", + "1", + "1344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969170", + "969170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059705", + "1483059706", + "1483059761", + "1483059705", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969172", + "969172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059707", + "1483059709", + "1483059755", + "1483059707", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969178", + "969178", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059726", + "1483059727", + "1483059794", + "1483059726", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969180", + "969180", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059755", + "1483059756", + "1483059826", + "1483059755", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969182", + "969182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059761", + "1483059762", + "1483059815", + "1483059761", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969184", + "969184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059776", + "1483059777", + "1483059819", + "1483059776", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969186", + "969186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059794", + "1483059795", + "1483059830", + "1483059794", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969188", + "969188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059815", + "1483059816", + "1483059891", + "1483059815", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969190", + "969190", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059817", + "1483059819", + "1483059894", + "1483059817", + "1", + "8", + "0", + "-1", + "75", + "2", + "600", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969192", + "969192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059820", + "1483059822", + "1483059882", + "1483059820", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969196", + "969196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059831", + "1483059832", + "1483059893", + "1483059831", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969210", + "969210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059892", + "1483059893", + "1483059973", + "1483059892", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969212", + "969212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059893", + "1483059894", + "1483059985", + "1483059893", + "1", + "8", + "0", + "-1", + "91", + "1", + "728", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969220", + "969220", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059901", + "1483059902", + "1483059998", + "1483059901", + "1", + "8", + "0", + "-1", + "96", + "1", + "768", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969228", + "969228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059974", + "1483059975", + "1483060014", + "1483059974", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969234", + "969234", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483059999", + "1483060002", + "1483060032", + "1483059999", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969237", + "969237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060000", + "1483060002", + "1483060048", + "1483060000", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969239", + "969239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060014", + "1483060015", + "1483060045", + "1483060014", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969249", + "969249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060049", + "1483060051", + "1483060098", + "1483060049", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969253", + "969253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060061", + "1483060063", + "1483060095", + "1483060061", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969255", + "969255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060066", + "1483060067", + "1483060139", + "1483060066", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969261", + "969261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060077", + "1483060078", + "1483060125", + "1483060077", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969265", + "969265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060095", + "1483060096", + "1483060175", + "1483060095", + "1", + "8", + "0", + "-1", + "79", + "1", + "632", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969267", + "969267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060098", + "1483060099", + "1483060129", + "1483060098", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969271", + "969271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060121", + "1483060122", + "1483060161", + "1483060121", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969273", + "969273", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060126", + "1483060127", + "1483060171", + "1483060126", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969277", + "969277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060137", + "1483060138", + "1483060182", + "1483060137", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969279", + "969279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060140", + "1483060141", + "1483060172", + "1483060140", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969281", + "969281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060155", + "1483060156", + "1483060191", + "1483060155", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969295", + "969295", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060191", + "1483060192", + "1483060225", + "1483060191", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969297", + "969297", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060209", + "1483060210", + "1483060248", + "1483060209", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969299", + "969299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060215", + "1483060216", + "1483060281", + "1483060215", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969301", + "969301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060218", + "1483060219", + "1483060287", + "1483060218", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969303", + "969303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060223", + "1483060224", + "1483060296", + "1483060223", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969305", + "969305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060224", + "1483060225", + "1483060367", + "1483060224", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969323", + "969323", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060316", + "1483060317", + "1483060351", + "1483060316", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969325", + "969325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060318", + "1483060320", + "1483060365", + "1483060318", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969327", + "969327", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060331", + "1483060332", + "1483060384", + "1483060331", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969329", + "969329", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060333", + "1483060335", + "1483060369", + "1483060333", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969331", + "969331", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060338", + "1483060339", + "1483060372", + "1483060338", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969343", + "969343", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060372", + "1483060375", + "1483060424", + "1483060372", + "1", + "8", + "0", + "-1", + "49", + "3", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969345", + "969345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060384", + "1483060385", + "1483060419", + "1483060384", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969347", + "969347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060393", + "1483060394", + "1483060470", + "1483060393", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969359", + "969359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060425", + "1483060426", + "1483060469", + "1483060425", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969365", + "969365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060457", + "1483060459", + "1483060509", + "1483060457", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969371", + "969371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060470", + "1483060472", + "1483060513", + "1483060470", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969374", + "969374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060471", + "1483060472", + "1483060527", + "1483060471", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969378", + "969378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060491", + "1483060492", + "1483060551", + "1483060491", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969380", + "969380", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060510", + "1483060511", + "1483060543", + "1483060510", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969382", + "969382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060514", + "1483060515", + "1483060548", + "1483060514", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969386", + "969386", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060543", + "1483060544", + "1483060591", + "1483060543", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969388", + "969388", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060544", + "1483060546", + "1483060595", + "1483060544", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969392", + "969392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060549", + "1483060550", + "1483060594", + "1483060549", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969396", + "969396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060554", + "1483060555", + "1483060695", + "1483060554", + "1", + "8", + "0", + "-1", + "140", + "1", + "1120", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969398", + "969398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060585", + "1483060586", + "1483060637", + "1483060585", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969400", + "969400", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060592", + "1483060593", + "1483060640", + "1483060592", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969404", + "969404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060595", + "1483060596", + "1483060628", + "1483060595", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969406", + "969406", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060620", + "1483060621", + "1483060669", + "1483060620", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969408", + "969408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060628", + "1483060629", + "1483060664", + "1483060628", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969415", + "969415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060641", + "1483060642", + "1483060673", + "1483060641", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969427", + "969427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060674", + "1483060675", + "1483060708", + "1483060674", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969431", + "969431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060695", + "1483060696", + "1483060729", + "1483060695", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969433", + "969433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060698", + "1483060699", + "1483060730", + "1483060698", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969437", + "969437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060708", + "1483060709", + "1483060755", + "1483060708", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969441", + "969441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060713", + "1483060714", + "1483060828", + "1483060713", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969447", + "969447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060730", + "1483060731", + "1483060778", + "1483060730", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969461", + "969461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060775", + "1483060776", + "1483060813", + "1483060775", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969463", + "969463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060778", + "1483060779", + "1483060809", + "1483060778", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969481", + "969481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060833", + "1483060834", + "1483060887", + "1483060833", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969491", + "969491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060859", + "1483060862", + "1483060895", + "1483060859", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969493", + "969493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060863", + "1483060865", + "1483060899", + "1483060863", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969495", + "969495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060870", + "1483060871", + "1483060904", + "1483060870", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969497", + "969497", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060877", + "1483060878", + "1483060915", + "1483060877", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969499", + "969499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060887", + "1483060888", + "1483060921", + "1483060887", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969503", + "969503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060900", + "1483060901", + "1483060936", + "1483060900", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969507", + "969507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060915", + "1483060916", + "1483060950", + "1483060915", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969509", + "969509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060922", + "1483060923", + "1483060954", + "1483060922", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969511", + "969511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060924", + "1483060926", + "1483060961", + "1483060924", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969513", + "969513", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060926", + "1483060929", + "1483060968", + "1483060926", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969515", + "969515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060937", + "1483060938", + "1483060974", + "1483060937", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969525", + "969525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060969", + "1483060970", + "1483061011", + "1483060969", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969533", + "969533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060981", + "1483060982", + "1483061137", + "1483060981", + "1", + "8", + "0", + "-1", + "155", + "1", + "1240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969535", + "969535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483060997", + "1483060998", + "1483061066", + "1483060997", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969541", + "969541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061014", + "1483061016", + "1483061048", + "1483061014", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969543", + "969543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061048", + "1483061049", + "1483061080", + "1483061048", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969545", + "969545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061053", + "1483061054", + "1483061085", + "1483061053", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969551", + "969551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061066", + "1483061067", + "1483061102", + "1483061066", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969557", + "969557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061085", + "1483061086", + "1483061130", + "1483061085", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969561", + "969561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061093", + "1483061095", + "1483061157", + "1483061093", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969565", + "969565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061120", + "1483061121", + "1483061155", + "1483061120", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969575", + "969575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061153", + "1483061155", + "1483061235", + "1483061153", + "1", + "8", + "0", + "-1", + "80", + "2", + "640", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969577", + "969577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061156", + "1483061157", + "1483061220", + "1483061156", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969589", + "969589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061177", + "1483061179", + "1483061212", + "1483061177", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969595", + "969595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061213", + "1483061215", + "1483061247", + "1483061213", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969599", + "969599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061222", + "1483061224", + "1483061258", + "1483061222", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969607", + "969607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061236", + "1483061237", + "1483061282", + "1483061236", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969613", + "969613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061259", + "1483061260", + "1483061290", + "1483061259", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969615", + "969615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061271", + "1483061272", + "1483061309", + "1483061271", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969617", + "969617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061277", + "1483061278", + "1483061318", + "1483061277", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969619", + "969619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061283", + "1483061284", + "1483061319", + "1483061283", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969621", + "969621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061290", + "1483061291", + "1483061332", + "1483061290", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969624", + "969624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061291", + "1483061294", + "1483061440", + "1483061291", + "1", + "8", + "0", + "-1", + "146", + "3", + "1168", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969626", + "969626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061310", + "1483061311", + "1483061374", + "1483061310", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969634", + "969634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061320", + "1483061322", + "1483061352", + "1483061320", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969636", + "969636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061333", + "1483061335", + "1483061365", + "1483061333", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969638", + "969638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061353", + "1483061354", + "1483061400", + "1483061353", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969642", + "969642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061365", + "1483061366", + "1483061414", + "1483061365", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969644", + "969644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061374", + "1483061375", + "1483061405", + "1483061374", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969646", + "969646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061385", + "1483061386", + "1483061417", + "1483061385", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969652", + "969652", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061406", + "1483061407", + "1483061468", + "1483061406", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969664", + "969664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061441", + "1483061442", + "1483061481", + "1483061441", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969666", + "969666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061444", + "1483061445", + "1483061524", + "1483061444", + "1", + "8", + "0", + "-1", + "79", + "1", + "632", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969676", + "969676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061481", + "1483061482", + "1483061529", + "1483061481", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969684", + "969684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061511", + "1483061512", + "1483061550", + "1483061511", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969702", + "969702", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061585", + "1483061586", + "1483061640", + "1483061585", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969708", + "969708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061593", + "1483061594", + "1483061658", + "1483061593", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969714", + "969714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061615", + "1483061616", + "1483061681", + "1483061615", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969716", + "969716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061616", + "1483061619", + "1483061808", + "1483061616", + "1", + "8", + "0", + "-1", + "189", + "3", + "1512", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969720", + "969720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061641", + "1483061642", + "1483061759", + "1483061641", + "1", + "8", + "0", + "-1", + "117", + "1", + "936", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969725", + "969725", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061651", + "1483061652", + "1483061685", + "1483061651", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969733", + "969733", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061686", + "1483061687", + "1483061730", + "1483061686", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969735", + "969735", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061687", + "1483061690", + "1483061725", + "1483061687", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969739", + "969739", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061710", + "1483061711", + "1483061743", + "1483061710", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969745", + "969745", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061727", + "1483061730", + "1483061780", + "1483061727", + "1", + "8", + "0", + "-1", + "50", + "3", + "400", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969763", + "969763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061781", + "1483061783", + "1483061823", + "1483061781", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969767", + "969767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061808", + "1483061809", + "1483061850", + "1483061808", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969769", + "969769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061812", + "1483061815", + "1483061849", + "1483061812", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969775", + "969775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061825", + "1483061827", + "1483061858", + "1483061825", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969779", + "969779", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061849", + "1483061850", + "1483061888", + "1483061849", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969781", + "969781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061850", + "1483061851", + "1483061888", + "1483061850", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969787", + "969787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061858", + "1483061860", + "1483061891", + "1483061858", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969797", + "969797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061895", + "1483061897", + "1483061933", + "1483061895", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969799", + "969799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061917", + "1483061918", + "1483061954", + "1483061917", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969801", + "969801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061919", + "1483061920", + "1483061960", + "1483061919", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969803", + "969803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061920", + "1483061921", + "1483061954", + "1483061920", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969810", + "969810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061933", + "1483061935", + "1483061980", + "1483061933", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969824", + "969824", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061986", + "1483061987", + "1483062020", + "1483061986", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969828", + "969828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483061999", + "1483062000", + "1483062036", + "1483061999", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969854", + "969854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062060", + "1483062061", + "1483062104", + "1483062060", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969862", + "969862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062103", + "1483062104", + "1483062135", + "1483062103", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969866", + "969866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062107", + "1483062108", + "1483062146", + "1483062107", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969870", + "969870", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062128", + "1483062129", + "1483062168", + "1483062128", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969878", + "969878", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062147", + "1483062150", + "1483062201", + "1483062147", + "1", + "8", + "0", + "-1", + "51", + "3", + "408", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969880", + "969880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062157", + "1483062158", + "1483062194", + "1483062157", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969886", + "969886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062177", + "1483062178", + "1483062210", + "1483062177", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969898", + "969898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062210", + "1483062211", + "1483062342", + "1483062210", + "1", + "8", + "0", + "-1", + "131", + "1", + "1048", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969904", + "969904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062229", + "1483062230", + "1483062269", + "1483062229", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "0:0", + "COMPLETED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969912", + "969912", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062262", + "1483062263", + "1483062296", + "1483062262", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969918", + "969918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062270", + "1483062272", + "1483062308", + "1483062270", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969938", + "969938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062328", + "1483062329", + "1483062367", + "1483062328", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969942", + "969942", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062330", + "1483062332", + "1483062368", + "1483062330", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969948", + "969948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062354", + "1483062355", + "1483062426", + "1483062354", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969950", + "969950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062367", + "1483062368", + "1483062405", + "1483062367", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969952", + "969952", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062369", + "1483062371", + "1483062402", + "1483062369", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969956", + "969956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062385", + "1483062388", + "1483062422", + "1483062385", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969958", + "969958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062389", + "1483062391", + "1483062457", + "1483062389", + "1", + "8", + "0", + "-1", + "66", + "2", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969964", + "969964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062423", + "1483062424", + "1483062488", + "1483062423", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969972", + "969972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062443", + "1483062444", + "1483062492", + "1483062443", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969976", + "969976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062457", + "1483062458", + "1483062506", + "1483062457", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969984", + "969984", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062488", + "1483062489", + "1483062566", + "1483062488", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969986", + "969986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062492", + "1483062493", + "1483062567", + "1483062492", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969988", + "969988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062496", + "1483062497", + "1483062539", + "1483062496", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969990", + "969990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062498", + "1483062500", + "1483062639", + "1483062498", + "1", + "8", + "0", + "-1", + "139", + "2", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969992", + "969992", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062507", + "1483062508", + "1483062565", + "1483062507", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969997", + "969997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062539", + "1483062540", + "1483062582", + "1483062539", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "969999", + "969999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062559", + "1483062560", + "1483062603", + "1483062559", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970003", + "970003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062566", + "1483062567", + "1483062605", + "1483062566", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970007", + "970007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062568", + "1483062570", + "1483062633", + "1483062568", + "1", + "8", + "0", + "-1", + "63", + "2", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970015", + "970015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062606", + "1483062607", + "1483062648", + "1483062606", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970017", + "970017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062608", + "1483062610", + "1483062687", + "1483062608", + "1", + "8", + "0", + "-1", + "77", + "2", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970023", + "970023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062641", + "1483062643", + "1483062675", + "1483062641", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970033", + "970033", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062676", + "1483062678", + "1483062774", + "1483062676", + "1", + "8", + "0", + "-1", + "96", + "2", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970039", + "970039", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062688", + "1483062689", + "1483062741", + "1483062688", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970043", + "970043", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062697", + "1483062698", + "1483062743", + "1483062697", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970047", + "970047", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062708", + "1483062709", + "1483062754", + "1483062708", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970051", + "970051", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062741", + "1483062742", + "1483062785", + "1483062741", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970053", + "970053", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062744", + "1483062745", + "1483062807", + "1483062744", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970055", + "970055", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062755", + "1483062756", + "1483062814", + "1483062755", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970060", + "970060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062768", + "1483062769", + "1483062820", + "1483062768", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970062", + "970062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062775", + "1483062776", + "1483062851", + "1483062775", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970064", + "970064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062785", + "1483062786", + "1483062820", + "1483062785", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970066", + "970066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062807", + "1483062808", + "1483062849", + "1483062807", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970070", + "970070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062820", + "1483062821", + "1483062875", + "1483062820", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970076", + "970076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062843", + "1483062844", + "1483062894", + "1483062843", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970080", + "970080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062849", + "1483062850", + "1483063019", + "1483062849", + "1", + "8", + "0", + "-1", + "169", + "1", + "1352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970082", + "970082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062850", + "1483062851", + "1483062907", + "1483062850", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970084", + "970084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062851", + "1483062854", + "1483062954", + "1483062851", + "1", + "8", + "0", + "-1", + "100", + "3", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970086", + "970086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062868", + "1483062869", + "1483062967", + "1483062868", + "1", + "8", + "0", + "-1", + "98", + "1", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970088", + "970088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062875", + "1483062876", + "1483063018", + "1483062875", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970092", + "970092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062908", + "1483062909", + "1483063051", + "1483062908", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970098", + "970098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483062967", + "1483062968", + "1483063094", + "1483062967", + "1", + "8", + "0", + "-1", + "126", + "1", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970100", + "970100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063018", + "1483063019", + "1483063167", + "1483063018", + "1", + "8", + "0", + "-1", + "148", + "1", + "1184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970102", + "970102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063019", + "1483063022", + "1483063175", + "1483063019", + "1", + "8", + "0", + "-1", + "153", + "3", + "1224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970106", + "970106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063035", + "1483063037", + "1483063183", + "1483063035", + "1", + "8", + "0", + "-1", + "146", + "2", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970122", + "970122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063176", + "1483063177", + "1483063357", + "1483063176", + "1", + "8", + "0", + "-1", + "180", + "1", + "1440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970124", + "970124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063184", + "1483063185", + "1483063353", + "1483063184", + "1", + "8", + "0", + "-1", + "168", + "1", + "1344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970133", + "970133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063213", + "1483063214", + "1483063356", + "1483063213", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970141", + "970141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063307", + "1483063308", + "1483063359", + "1483063307", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970149", + "970149", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063358", + "1483063360", + "1483063410", + "1483063358", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970157", + "970157", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063407", + "1483063408", + "1483063458", + "1483063407", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970163", + "970163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063417", + "1483063419", + "1483063468", + "1483063417", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970167", + "970167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063440", + "1483063441", + "1483063502", + "1483063440", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970171", + "970171", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063459", + "1483063461", + "1483063552", + "1483063459", + "1", + "8", + "0", + "-1", + "91", + "2", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970177", + "970177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063470", + "1483063472", + "1483063546", + "1483063470", + "1", + "8", + "0", + "-1", + "74", + "2", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970185", + "970185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063553", + "1483063555", + "1483063599", + "1483063553", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970193", + "970193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063577", + "1483063578", + "1483063651", + "1483063577", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970195", + "970195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063587", + "1483063588", + "1483063663", + "1483063587", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970197", + "970197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063599", + "1483063600", + "1483063641", + "1483063599", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970199", + "970199", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063600", + "1483063603", + "1483063647", + "1483063600", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970201", + "970201", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063612", + "1483063615", + "1483063652", + "1483063612", + "1", + "8", + "0", + "-1", + "37", + "3", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970205", + "970205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063626", + "1483063628", + "1483063700", + "1483063626", + "1", + "8", + "0", + "-1", + "72", + "2", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970209", + "970209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063641", + "1483063642", + "1483063704", + "1483063641", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970211", + "970211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063647", + "1483063648", + "1483063690", + "1483063647", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970213", + "970213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063651", + "1483063652", + "1483063709", + "1483063651", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970215", + "970215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063653", + "1483063655", + "1483063712", + "1483063653", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970217", + "970217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063664", + "1483063665", + "1483063765", + "1483063664", + "1", + "8", + "0", + "-1", + "100", + "1", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970223", + "970223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063691", + "1483063692", + "1483063797", + "1483063691", + "1", + "8", + "0", + "-1", + "105", + "1", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970227", + "970227", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063704", + "1483063705", + "1483063752", + "1483063704", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970231", + "970231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063713", + "1483063714", + "1483063761", + "1483063713", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970235", + "970235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063752", + "1483063753", + "1483063815", + "1483063752", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970239", + "970239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063762", + "1483063763", + "1483063812", + "1483063762", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970243", + "970243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063778", + "1483063779", + "1483063844", + "1483063778", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970249", + "970249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063812", + "1483063813", + "1483063852", + "1483063812", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970261", + "970261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063845", + "1483063847", + "1483063917", + "1483063845", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970263", + "970263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063852", + "1483063853", + "1483063935", + "1483063852", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970265", + "970265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063853", + "1483063854", + "1483064027", + "1483063853", + "1", + "8", + "0", + "-1", + "173", + "1", + "1384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970277", + "970277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063920", + "1483063921", + "1483063951", + "1483063920", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970281", + "970281", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063936", + "1483063938", + "1483063970", + "1483063936", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970285", + "970285", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063958", + "1483063959", + "1483064009", + "1483063958", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970289", + "970289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063971", + "1483063972", + "1483064022", + "1483063971", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970293", + "970293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483063973", + "1483063975", + "1483064014", + "1483063973", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970305", + "970305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064021", + "1483064022", + "1483064056", + "1483064021", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970307", + "970307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064023", + "1483064025", + "1483064057", + "1483064023", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970309", + "970309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064025", + "1483064027", + "1483064077", + "1483064025", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970311", + "970311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064027", + "1483064028", + "1483064160", + "1483064027", + "1", + "8", + "0", + "-1", + "132", + "1", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970313", + "970313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064032", + "1483064035", + "1483064083", + "1483064032", + "1", + "8", + "0", + "-1", + "48", + "3", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970323", + "970323", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064077", + "1483064078", + "1483064110", + "1483064077", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970325", + "970325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064083", + "1483064084", + "1483064120", + "1483064083", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970327", + "970327", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064091", + "1483064092", + "1483064122", + "1483064091", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970331", + "970331", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064101", + "1483064102", + "1483064146", + "1483064101", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970337", + "970337", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064120", + "1483064121", + "1483064157", + "1483064120", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970344", + "970344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064147", + "1483064150", + "1483064181", + "1483064147", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970350", + "970350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064157", + "1483064158", + "1483064198", + "1483064157", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970354", + "970354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064169", + "1483064170", + "1483064234", + "1483064169", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970358", + "970358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064173", + "1483064174", + "1483064210", + "1483064173", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970368", + "970368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064213", + "1483064215", + "1483064248", + "1483064213", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970382", + "970382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064263", + "1483064265", + "1483064297", + "1483064263", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970396", + "970396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064315", + "1483064316", + "1483064360", + "1483064315", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970402", + "970402", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064321", + "1483064323", + "1483064437", + "1483064321", + "1", + "8", + "0", + "-1", + "114", + "2", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970404", + "970404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064328", + "1483064329", + "1483064367", + "1483064328", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970408", + "970408", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064339", + "1483064340", + "1483064370", + "1483064339", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970410", + "970410", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064360", + "1483064361", + "1483064398", + "1483064360", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970412", + "970412", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064361", + "1483064364", + "1483064406", + "1483064361", + "1", + "8", + "0", + "-1", + "42", + "3", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970422", + "970422", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064399", + "1483064401", + "1483064440", + "1483064399", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970424", + "970424", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064401", + "1483064402", + "1483064452", + "1483064401", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970446", + "970446", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064460", + "1483064461", + "1483064501", + "1483064460", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970448", + "970448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064464", + "1483064465", + "1483064595", + "1483064464", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970458", + "970458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064501", + "1483064502", + "1483064532", + "1483064501", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970460", + "970460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064505", + "1483064506", + "1483064540", + "1483064505", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970464", + "970464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064510", + "1483064511", + "1483064548", + "1483064510", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970472", + "970472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064533", + "1483064535", + "1483064581", + "1483064533", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970490", + "970490", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064584", + "1483064585", + "1483064626", + "1483064584", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970494", + "970494", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064596", + "1483064597", + "1483064683", + "1483064596", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970496", + "970496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064598", + "1483064600", + "1483064640", + "1483064598", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970498", + "970498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064600", + "1483064603", + "1483064648", + "1483064600", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970500", + "970500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064609", + "1483064610", + "1483064643", + "1483064609", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970515", + "970515", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064649", + "1483064650", + "1483064691", + "1483064649", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970519", + "970519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064656", + "1483064657", + "1483064698", + "1483064656", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970521", + "970521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064658", + "1483064660", + "1483064691", + "1483064658", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970532", + "970532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064691", + "1483064692", + "1483064731", + "1483064691", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970536", + "970536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064698", + "1483064699", + "1483064746", + "1483064698", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970538", + "970538", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064703", + "1483064704", + "1483064822", + "1483064703", + "1", + "8", + "0", + "-1", + "118", + "1", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970540", + "970540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064707", + "1483064708", + "1483064738", + "1483064707", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970542", + "970542", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064709", + "1483064711", + "1483064752", + "1483064709", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970548", + "970548", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064738", + "1483064739", + "1483064779", + "1483064738", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970552", + "970552", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064753", + "1483064755", + "1483064786", + "1483064753", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970554", + "970554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064756", + "1483064758", + "1483064800", + "1483064756", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970558", + "970558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064774", + "1483064775", + "1483064829", + "1483064774", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970566", + "970566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064787", + "1483064788", + "1483064830", + "1483064787", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970578", + "970578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064831", + "1483064833", + "1483064877", + "1483064831", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970580", + "970580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064839", + "1483064840", + "1483064889", + "1483064839", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970582", + "970582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064842", + "1483064843", + "1483064889", + "1483064842", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970584", + "970584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064844", + "1483064846", + "1483064956", + "1483064844", + "1", + "8", + "0", + "-1", + "110", + "2", + "880", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970588", + "970588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064865", + "1483064866", + "1483064907", + "1483064865", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970592", + "970592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064877", + "1483064878", + "1483064917", + "1483064877", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970626", + "970626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064966", + "1483064967", + "1483065026", + "1483064966", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970628", + "970628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064968", + "1483064970", + "1483065078", + "1483064968", + "1", + "8", + "0", + "-1", + "108", + "2", + "864", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970632", + "970632", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064989", + "1483064990", + "1483065043", + "1483064989", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970634", + "970634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483064991", + "1483064992", + "1483065034", + "1483064991", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970636", + "970636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065010", + "1483065011", + "1483065054", + "1483065010", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970638", + "970638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065018", + "1483065019", + "1483065064", + "1483065018", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970650", + "970650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065064", + "1483065066", + "1483065113", + "1483065064", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970654", + "970654", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065070", + "1483065071", + "1483065114", + "1483065070", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970667", + "970667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065093", + "1483065094", + "1483065129", + "1483065093", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970671", + "970671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065106", + "1483065107", + "1483065152", + "1483065106", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970673", + "970673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065107", + "1483065110", + "1483065246", + "1483065107", + "1", + "8", + "0", + "-1", + "136", + "3", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970677", + "970677", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065114", + "1483065115", + "1483065168", + "1483065114", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970679", + "970679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065130", + "1483065131", + "1483065168", + "1483065130", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970681", + "970681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065144", + "1483065145", + "1483065177", + "1483065144", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970683", + "970683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065152", + "1483065153", + "1483065185", + "1483065152", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970692", + "970692", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065177", + "1483065178", + "1483065233", + "1483065177", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970694", + "970694", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065181", + "1483065182", + "1483065217", + "1483065181", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970696", + "970696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065186", + "1483065187", + "1483065220", + "1483065186", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970700", + "970700", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065192", + "1483065193", + "1483065227", + "1483065192", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970712", + "970712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065233", + "1483065235", + "1483065279", + "1483065233", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970714", + "970714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065243", + "1483065244", + "1483065297", + "1483065243", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970716", + "970716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065246", + "1483065247", + "1483065285", + "1483065246", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970732", + "970732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065298", + "1483065300", + "1483065357", + "1483065298", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970740", + "970740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065358", + "1483065359", + "1483065428", + "1483065358", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970742", + "970742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065362", + "1483065363", + "1483065432", + "1483065362", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970744", + "970744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065363", + "1483065366", + "1483065426", + "1483065363", + "1", + "8", + "0", + "-1", + "60", + "3", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970746", + "970746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065372", + "1483065373", + "1483065434", + "1483065372", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970748", + "970748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065383", + "1483065384", + "1483065447", + "1483065383", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970752", + "970752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065422", + "1483065423", + "1483065477", + "1483065422", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970754", + "970754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065427", + "1483065428", + "1483065482", + "1483065427", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970756", + "970756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065429", + "1483065431", + "1483065487", + "1483065429", + "1", + "8", + "0", + "-1", + "56", + "2", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970758", + "970758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065431", + "1483065433", + "1483065517", + "1483065431", + "1", + "8", + "0", + "-1", + "84", + "2", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970762", + "970762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065434", + "1483065437", + "1483065534", + "1483065434", + "1", + "8", + "0", + "-1", + "97", + "3", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970764", + "970764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065448", + "1483065449", + "1483065623", + "1483065448", + "1", + "8", + "0", + "-1", + "174", + "1", + "1392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970766", + "970766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065477", + "1483065478", + "1483065583", + "1483065477", + "1", + "8", + "0", + "-1", + "105", + "1", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970768", + "970768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065483", + "1483065484", + "1483065589", + "1483065483", + "1", + "8", + "0", + "-1", + "105", + "1", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970774", + "970774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065534", + "1483065535", + "1483065566", + "1483065534", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970784", + "970784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065568", + "1483065570", + "1483065618", + "1483065568", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970792", + "970792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065590", + "1483065591", + "1483065624", + "1483065590", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970804", + "970804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065624", + "1483065627", + "1483065676", + "1483065624", + "1", + "8", + "0", + "-1", + "49", + "3", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970810", + "970810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065641", + "1483065643", + "1483065722", + "1483065641", + "1", + "8", + "0", + "-1", + "79", + "2", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970814", + "970814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065654", + "1483065655", + "1483065696", + "1483065654", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970829", + "970829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065697", + "1483065698", + "1483065745", + "1483065697", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970833", + "970833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065706", + "1483065708", + "1483065752", + "1483065706", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970850", + "970850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065753", + "1483065754", + "1483065809", + "1483065753", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970854", + "970854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065756", + "1483065757", + "1483065881", + "1483065756", + "1", + "8", + "0", + "-1", + "124", + "1", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970856", + "970856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065767", + "1483065768", + "1483065802", + "1483065767", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970858", + "970858", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065768", + "1483065769", + "1483065817", + "1483065768", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970874", + "970874", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065823", + "1483065824", + "1483065866", + "1483065823", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970884", + "970884", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065854", + "1483065855", + "1483065888", + "1483065854", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970894", + "970894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065881", + "1483065882", + "1483065917", + "1483065881", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970896", + "970896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065883", + "1483065885", + "1483065941", + "1483065883", + "1", + "8", + "0", + "-1", + "56", + "2", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970900", + "970900", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065889", + "1483065891", + "1483066008", + "1483065889", + "1", + "8", + "0", + "-1", + "117", + "2", + "936", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970902", + "970902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065896", + "1483065897", + "1483065945", + "1483065896", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970904", + "970904", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065902", + "1483065903", + "1483065943", + "1483065902", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970912", + "970912", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065941", + "1483065942", + "1483065978", + "1483065941", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970922", + "970922", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483065966", + "1483065967", + "1483066010", + "1483065966", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970940", + "970940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066014", + "1483066015", + "1483066052", + "1483066014", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970942", + "970942", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066016", + "1483066018", + "1483066050", + "1483066016", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970946", + "970946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066022", + "1483066024", + "1483066108", + "1483066022", + "1", + "8", + "0", + "-1", + "84", + "2", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970954", + "970954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066051", + "1483066052", + "1483066094", + "1483066051", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970968", + "970968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066095", + "1483066096", + "1483066140", + "1483066095", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970970", + "970970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066096", + "1483066099", + "1483066129", + "1483066096", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970973", + "970973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066096", + "1483066099", + "1483066143", + "1483066096", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970987", + "970987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066130", + "1483066131", + "1483066166", + "1483066130", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970992", + "970992", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066141", + "1483066142", + "1483066177", + "1483066141", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "970994", + "970994", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066143", + "1483066145", + "1483066189", + "1483066143", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971000", + "971000", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066167", + "1483066168", + "1483066225", + "1483066167", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971004", + "971004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066178", + "1483066179", + "1483066214", + "1483066178", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971006", + "971006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066180", + "1483066181", + "1483066220", + "1483066180", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971010", + "971010", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066194", + "1483066195", + "1483066230", + "1483066194", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971012", + "971012", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066209", + "1483066210", + "1483066261", + "1483066209", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971016", + "971016", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066216", + "1483066218", + "1483066256", + "1483066216", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971026", + "971026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066256", + "1483066257", + "1483066290", + "1483066256", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971028", + "971028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066257", + "1483066259", + "1483066291", + "1483066257", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971030", + "971030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066260", + "1483066261", + "1483066301", + "1483066260", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971032", + "971032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066261", + "1483066262", + "1483066331", + "1483066261", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971036", + "971036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066263", + "1483066265", + "1483066411", + "1483066263", + "1", + "8", + "0", + "-1", + "146", + "2", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971038", + "971038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066279", + "1483066280", + "1483066329", + "1483066279", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971050", + "971050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066332", + "1483066333", + "1483066396", + "1483066332", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971062", + "971062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066363", + "1483066364", + "1483066406", + "1483066363", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971064", + "971064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066373", + "1483066374", + "1483066412", + "1483066373", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971078", + "971078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066413", + "1483066415", + "1483066475", + "1483066413", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971082", + "971082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066422", + "1483066423", + "1483066583", + "1483066422", + "1", + "8", + "0", + "-1", + "160", + "1", + "1280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971084", + "971084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066433", + "1483066435", + "1483066489", + "1483066433", + "1", + "8", + "0", + "-1", + "54", + "2", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971090", + "971090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066466", + "1483066467", + "1483066504", + "1483066466", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971092", + "971092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066471", + "1483066472", + "1483066505", + "1483066471", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971094", + "971094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066476", + "1483066477", + "1483066527", + "1483066476", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971096", + "971096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066490", + "1483066491", + "1483066533", + "1483066490", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971102", + "971102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066504", + "1483066505", + "1483066544", + "1483066504", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971104", + "971104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066506", + "1483066508", + "1483066576", + "1483066506", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971106", + "971106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066522", + "1483066523", + "1483066591", + "1483066522", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971108", + "971108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066528", + "1483066529", + "1483066578", + "1483066528", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971110", + "971110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066533", + "1483066534", + "1483066575", + "1483066533", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971112", + "971112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066544", + "1483066545", + "1483066578", + "1483066544", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971122", + "971122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066579", + "1483066580", + "1483066652", + "1483066579", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971126", + "971126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066591", + "1483066592", + "1483066649", + "1483066591", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971130", + "971130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066607", + "1483066608", + "1483066653", + "1483066607", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971132", + "971132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066614", + "1483066615", + "1483066692", + "1483066614", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971142", + "971142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066653", + "1483066656", + "1483066785", + "1483066653", + "1", + "8", + "0", + "-1", + "129", + "3", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971144", + "971144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066663", + "1483066664", + "1483066786", + "1483066663", + "1", + "8", + "0", + "-1", + "122", + "1", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971150", + "971150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066699", + "1483066701", + "1483066836", + "1483066699", + "1", + "8", + "0", + "-1", + "135", + "2", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971158", + "971158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066786", + "1483066787", + "1483066864", + "1483066786", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971162", + "971162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066787", + "1483066788", + "1483066901", + "1483066787", + "1", + "8", + "0", + "-1", + "113", + "1", + "904", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971179", + "971179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066885", + "1483066886", + "1483067010", + "1483066885", + "1", + "8", + "0", + "-1", + "124", + "1", + "992", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971185", + "971185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483066922", + "1483066930", + "1483067010", + "1483066922", + "1", + "8", + "0", + "-1", + "80", + "8", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971189", + "971189", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067005", + "1483067010", + "1483067110", + "1483067005", + "1", + "8", + "0", + "-1", + "100", + "5", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971194", + "971194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067094", + "1483067110", + "1483067178", + "1483067094", + "1", + "8", + "0", + "-1", + "68", + "16", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971197", + "971197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067197", + "1483067203", + "1483067281", + "1483067197", + "1", + "8", + "0", + "-1", + "78", + "6", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971200", + "971200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067307", + "1483067314", + "1483067377", + "1483067307", + "1", + "8", + "0", + "-1", + "63", + "7", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971202", + "971202", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067327", + "1483067331", + "1483067380", + "1483067327", + "1", + "8", + "0", + "-1", + "49", + "4", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971205", + "971205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067336", + "1483067337", + "1483067424", + "1483067336", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971207", + "971207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067365", + "1483067369", + "1483067448", + "1483067365", + "1", + "8", + "0", + "-1", + "79", + "4", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971210", + "971210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067405", + "1483067406", + "1483067477", + "1483067405", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971212", + "971212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067422", + "1483067424", + "1483067499", + "1483067422", + "1", + "8", + "0", + "-1", + "75", + "2", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971216", + "971216", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067453", + "1483067461", + "1483067549", + "1483067453", + "1", + "8", + "0", + "-1", + "88", + "8", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971223", + "971223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067524", + "1483067527", + "1483067592", + "1483067524", + "1", + "8", + "0", + "-1", + "65", + "3", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971225", + "971225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067544", + "1483067549", + "1483067607", + "1483067544", + "1", + "8", + "0", + "-1", + "58", + "5", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971228", + "971228", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067591", + "1483067592", + "1483067633", + "1483067591", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971230", + "971230", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067603", + "1483067606", + "1483067646", + "1483067603", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971233", + "971233", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067621", + "1483067624", + "1483067686", + "1483067621", + "1", + "8", + "0", + "-1", + "62", + "3", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971235", + "971235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067622", + "1483067624", + "1483067690", + "1483067622", + "1", + "8", + "0", + "-1", + "66", + "2", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971237", + "971237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067624", + "1483067629", + "1483067676", + "1483067624", + "1", + "8", + "0", + "-1", + "47", + "5", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971241", + "971241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067655", + "1483067662", + "1483067694", + "1483067655", + "1", + "8", + "0", + "-1", + "32", + "7", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971243", + "971243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067663", + "1483067665", + "1483067697", + "1483067663", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971264", + "971264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067686", + "1483067689", + "1483067750", + "1483067686", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971266", + "971266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067690", + "1483067691", + "1483067760", + "1483067690", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971290", + "971290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067750", + "1483067751", + "1483067810", + "1483067750", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971292", + "971292", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067754", + "1483067756", + "1483067803", + "1483067754", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971296", + "971296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067762", + "1483067764", + "1483067854", + "1483067762", + "1", + "8", + "0", + "-1", + "90", + "2", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971304", + "971304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067809", + "1483067810", + "1483067903", + "1483067809", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971312", + "971312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067855", + "1483067856", + "1483067896", + "1483067855", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971330", + "971330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067903", + "1483067904", + "1483067937", + "1483067903", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971341", + "971341", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067920", + "1483067921", + "1483067957", + "1483067920", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971343", + "971343", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067922", + "1483067923", + "1483067953", + "1483067922", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971347", + "971347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067928", + "1483067929", + "1483067964", + "1483067928", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971351", + "971351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483067943", + "1483067944", + "1483067991", + "1483067943", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971383", + "971383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068020", + "1483068022", + "1483068060", + "1483068020", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971385", + "971385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068034", + "1483068035", + "1483068066", + "1483068034", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971389", + "971389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068041", + "1483068042", + "1483068163", + "1483068041", + "1", + "8", + "0", + "-1", + "121", + "1", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971413", + "971413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068099", + "1483068100", + "1483068132", + "1483068099", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971450", + "971450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068188", + "1483068189", + "1483068222", + "1483068188", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971452", + "971452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068193", + "1483068194", + "1483068236", + "1483068193", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971466", + "971466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068223", + "1483068226", + "1483068283", + "1483068223", + "1", + "8", + "0", + "-1", + "57", + "3", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971468", + "971468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068227", + "1483068228", + "1483068274", + "1483068227", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971470", + "971470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068228", + "1483068229", + "1483068351", + "1483068228", + "1", + "8", + "0", + "-1", + "122", + "1", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971472", + "971472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068237", + "1483068238", + "1483068280", + "1483068237", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971474", + "971474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068244", + "1483068245", + "1483068290", + "1483068244", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971476", + "971476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068247", + "1483068248", + "1483068306", + "1483068247", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971482", + "971482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068284", + "1483068285", + "1483068323", + "1483068284", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971488", + "971488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068307", + "1483068308", + "1483068338", + "1483068307", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971490", + "971490", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068309", + "1483068311", + "1483068344", + "1483068309", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971504", + "971504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068338", + "1483068339", + "1483068377", + "1483068338", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971506", + "971506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068344", + "1483068345", + "1483068380", + "1483068344", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971508", + "971508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068346", + "1483068348", + "1483068439", + "1483068346", + "1", + "8", + "0", + "-1", + "91", + "2", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971510", + "971510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068351", + "1483068352", + "1483068386", + "1483068351", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971512", + "971512", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068354", + "1483068356", + "1483068390", + "1483068354", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971543", + "971543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068425", + "1483068426", + "1483068484", + "1483068425", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971547", + "971547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068440", + "1483068441", + "1483068472", + "1483068440", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971573", + "971573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068510", + "1483068511", + "1483068573", + "1483068510", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971583", + "971583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068523", + "1483068524", + "1483068585", + "1483068523", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971585", + "971585", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068535", + "1483068536", + "1483068577", + "1483068535", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971591", + "971591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068574", + "1483068575", + "1483068620", + "1483068574", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971601", + "971601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068595", + "1483068596", + "1483068630", + "1483068595", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971605", + "971605", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068602", + "1483068603", + "1483068648", + "1483068602", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971607", + "971607", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068615", + "1483068616", + "1483068659", + "1483068615", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971609", + "971609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068621", + "1483068622", + "1483068733", + "1483068621", + "1", + "8", + "0", + "-1", + "111", + "1", + "888", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971611", + "971611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068630", + "1483068631", + "1483068664", + "1483068630", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971618", + "971618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068648", + "1483068651", + "1483068697", + "1483068648", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971628", + "971628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068694", + "1483068695", + "1483068729", + "1483068694", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971636", + "971636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068706", + "1483068707", + "1483068758", + "1483068706", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971642", + "971642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068729", + "1483068730", + "1483068769", + "1483068729", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971648", + "971648", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068734", + "1483068736", + "1483068781", + "1483068734", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971660", + "971660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068780", + "1483068781", + "1483068828", + "1483068780", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971662", + "971662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068781", + "1483068782", + "1483068821", + "1483068781", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971676", + "971676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068821", + "1483068822", + "1483068866", + "1483068821", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971682", + "971682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068828", + "1483068829", + "1483068877", + "1483068828", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971696", + "971696", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068890", + "1483068891", + "1483068988", + "1483068890", + "1", + "8", + "0", + "-1", + "97", + "1", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971698", + "971698", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068899", + "1483068900", + "1483068978", + "1483068899", + "1", + "8", + "0", + "-1", + "78", + "1", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971706", + "971706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068954", + "1483068956", + "1483068987", + "1483068954", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971716", + "971716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068987", + "1483068988", + "1483069105", + "1483068987", + "1", + "8", + "0", + "-1", + "117", + "1", + "936", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971718", + "971718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483068988", + "1483068991", + "1483069024", + "1483068988", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971722", + "971722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069006", + "1483069007", + "1483069043", + "1483069006", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971736", + "971736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069044", + "1483069045", + "1483069093", + "1483069044", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971738", + "971738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069057", + "1483069058", + "1483069165", + "1483069057", + "1", + "8", + "0", + "-1", + "107", + "1", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971741", + "971741", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069058", + "1483069061", + "1483069117", + "1483069058", + "1", + "8", + "0", + "-1", + "56", + "3", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971761", + "971761", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069118", + "1483069119", + "1483069150", + "1483069118", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971775", + "971775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069151", + "1483069153", + "1483069253", + "1483069151", + "1", + "8", + "0", + "-1", + "100", + "2", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971781", + "971781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069166", + "1483069169", + "1483069208", + "1483069166", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971785", + "971785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069177", + "1483069178", + "1483069220", + "1483069177", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971791", + "971791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069195", + "1483069196", + "1483069310", + "1483069195", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971797", + "971797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069222", + "1483069224", + "1483069262", + "1483069222", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971799", + "971799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069225", + "1483069227", + "1483069264", + "1483069225", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971803", + "971803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069254", + "1483069256", + "1483069294", + "1483069254", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971807", + "971807", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069262", + "1483069264", + "1483069310", + "1483069262", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971809", + "971809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069265", + "1483069267", + "1483069335", + "1483069265", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971813", + "971813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069295", + "1483069298", + "1483069377", + "1483069295", + "1", + "8", + "0", + "-1", + "79", + "3", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971817", + "971817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069311", + "1483069312", + "1483069461", + "1483069311", + "1", + "8", + "0", + "-1", + "149", + "1", + "1192", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971819", + "971819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069336", + "1483069337", + "1483069426", + "1483069336", + "1", + "8", + "0", + "-1", + "89", + "1", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971825", + "971825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069366", + "1483069369", + "1483069443", + "1483069366", + "1", + "8", + "0", + "-1", + "74", + "3", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971827", + "971827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069378", + "1483069379", + "1483069524", + "1483069378", + "1", + "8", + "0", + "-1", + "145", + "1", + "1160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971829", + "971829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069388", + "1483069389", + "1483069430", + "1483069388", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971831", + "971831", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069426", + "1483069427", + "1483069484", + "1483069426", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971845", + "971845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069510", + "1483069511", + "1483069567", + "1483069510", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971853", + "971853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069541", + "1483069542", + "1483069622", + "1483069541", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971875", + "971875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069614", + "1483069616", + "1483069646", + "1483069614", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971893", + "971893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069660", + "1483069662", + "1483069740", + "1483069660", + "1", + "8", + "0", + "-1", + "78", + "2", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971895", + "971895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069666", + "1483069667", + "1483069699", + "1483069666", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971897", + "971897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069683", + "1483069684", + "1483069714", + "1483069683", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971907", + "971907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069700", + "1483069701", + "1483069737", + "1483069700", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971919", + "971919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069729", + "1483069730", + "1483069763", + "1483069729", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971937", + "971937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069758", + "1483069760", + "1483069790", + "1483069758", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971939", + "971939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069760", + "1483069761", + "1483069824", + "1483069760", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971941", + "971941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069761", + "1483069764", + "1483069797", + "1483069761", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971945", + "971945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069771", + "1483069772", + "1483069806", + "1483069771", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971967", + "971967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069817", + "1483069819", + "1483069858", + "1483069817", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971985", + "971985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069851", + "1483069853", + "1483069917", + "1483069851", + "1", + "8", + "0", + "-1", + "64", + "2", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "971991", + "971991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069869", + "1483069870", + "1483069910", + "1483069869", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972011", + "972011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069920", + "1483069922", + "1483069958", + "1483069920", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972036", + "972036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483069959", + "1483069962", + "1483070002", + "1483069959", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972076", + "972076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070036", + "1483070037", + "1483070105", + "1483070036", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972078", + "972078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070037", + "1483070039", + "1483070073", + "1483070037", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972080", + "972080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070039", + "1483070040", + "1483070074", + "1483070039", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972100", + "972100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070089", + "1483070090", + "1483070120", + "1483070089", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972148", + "972148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070188", + "1483070189", + "1483070222", + "1483070188", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972168", + "972168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070229", + "1483070230", + "1483070298", + "1483070229", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972172", + "972172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070233", + "1483070234", + "1483070269", + "1483070233", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972174", + "972174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070236", + "1483070237", + "1483070281", + "1483070236", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972194", + "972194", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070296", + "1483070299", + "1483070337", + "1483070296", + "1", + "8", + "0", + "-1", + "38", + "3", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972196", + "972196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070299", + "1483070301", + "1483070337", + "1483070299", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972208", + "972208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070328", + "1483070329", + "1483070369", + "1483070328", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972215", + "972215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070338", + "1483070341", + "1483070376", + "1483070338", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972217", + "972217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070338", + "1483070341", + "1483070373", + "1483070338", + "1", + "8", + "0", + "-1", + "32", + "3", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972219", + "972219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070342", + "1483070344", + "1483070390", + "1483070342", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972241", + "972241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070402", + "1483070403", + "1483070448", + "1483070402", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972253", + "972253", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070425", + "1483070426", + "1483070458", + "1483070425", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972255", + "972255", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070431", + "1483070432", + "1483070465", + "1483070431", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972257", + "972257", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070432", + "1483070435", + "1483070471", + "1483070432", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972261", + "972261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070443", + "1483070444", + "1483070478", + "1483070443", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972263", + "972263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070448", + "1483070449", + "1483070482", + "1483070448", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972265", + "972265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070459", + "1483070460", + "1483070492", + "1483070459", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972287", + "972287", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070509", + "1483070512", + "1483070552", + "1483070509", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972299", + "972299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070540", + "1483070541", + "1483070571", + "1483070540", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972301", + "972301", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070541", + "1483070542", + "1483070574", + "1483070541", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972305", + "972305", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070547", + "1483070548", + "1483070610", + "1483070547", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972307", + "972307", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070550", + "1483070551", + "1483070586", + "1483070550", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972309", + "972309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070553", + "1483070554", + "1483070590", + "1483070553", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972311", + "972311", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070556", + "1483070557", + "1483070587", + "1483070556", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972313", + "972313", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070571", + "1483070572", + "1483070629", + "1483070571", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972315", + "972315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070575", + "1483070576", + "1483070633", + "1483070575", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972320", + "972320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070588", + "1483070590", + "1483070625", + "1483070588", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972328", + "972328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070612", + "1483070613", + "1483070674", + "1483070612", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972330", + "972330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070620", + "1483070621", + "1483070674", + "1483070620", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972332", + "972332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070625", + "1483070626", + "1483070659", + "1483070625", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972334", + "972334", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070630", + "1483070631", + "1483070687", + "1483070630", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972340", + "972340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070659", + "1483070660", + "1483070702", + "1483070659", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972342", + "972342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070664", + "1483070665", + "1483070697", + "1483070664", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972346", + "972346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070674", + "1483070675", + "1483070734", + "1483070674", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972348", + "972348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070675", + "1483070676", + "1483070762", + "1483070675", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972350", + "972350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070688", + "1483070689", + "1483070854", + "1483070688", + "1", + "8", + "0", + "-1", + "165", + "1", + "1320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972352", + "972352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070697", + "1483070698", + "1483070795", + "1483070697", + "1", + "8", + "0", + "-1", + "97", + "1", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972354", + "972354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070702", + "1483070703", + "1483070798", + "1483070702", + "1", + "8", + "0", + "-1", + "95", + "1", + "760", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972376", + "972376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070790", + "1483070791", + "1483070821", + "1483070790", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972392", + "972392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070821", + "1483070822", + "1483070876", + "1483070821", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972401", + "972401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070838", + "1483070839", + "1483070875", + "1483070838", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972437", + "972437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070905", + "1483070907", + "1483070937", + "1483070905", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972439", + "972439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070915", + "1483070916", + "1483070946", + "1483070915", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972441", + "972441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070916", + "1483070917", + "1483071028", + "1483070916", + "1", + "8", + "0", + "-1", + "111", + "1", + "888", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972443", + "972443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070917", + "1483070919", + "1483070950", + "1483070917", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972447", + "972447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070938", + "1483070939", + "1483070983", + "1483070938", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972461", + "972461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070976", + "1483070977", + "1483071009", + "1483070976", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972467", + "972467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483070981", + "1483070983", + "1483071018", + "1483070981", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972481", + "972481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071019", + "1483071021", + "1483071053", + "1483071019", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972485", + "972485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071022", + "1483071023", + "1483071058", + "1483071022", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972491", + "972491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071028", + "1483071031", + "1483071078", + "1483071028", + "1", + "8", + "0", + "-1", + "47", + "3", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972507", + "972507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071076", + "1483071077", + "1483071107", + "1483071076", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972529", + "972529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071117", + "1483071119", + "1483071158", + "1483071117", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972533", + "972533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071125", + "1483071126", + "1483071216", + "1483071125", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972537", + "972537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071131", + "1483071132", + "1483071162", + "1483071131", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972545", + "972545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071157", + "1483071158", + "1483071193", + "1483071157", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972574", + "972574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071209", + "1483071210", + "1483071262", + "1483071209", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972578", + "972578", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071216", + "1483071217", + "1483071301", + "1483071216", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972582", + "972582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071218", + "1483071220", + "1483071258", + "1483071218", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972593", + "972593", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071259", + "1483071260", + "1483071304", + "1483071259", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972595", + "972595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071263", + "1483071264", + "1483071297", + "1483071263", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972597", + "972597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071266", + "1483071267", + "1483071319", + "1483071266", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972601", + "972601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071285", + "1483071286", + "1483071338", + "1483071285", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972609", + "972609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071304", + "1483071306", + "1483071350", + "1483071304", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972613", + "972613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071320", + "1483071321", + "1483071363", + "1483071320", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972615", + "972615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071325", + "1483071326", + "1483071370", + "1483071325", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972619", + "972619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071335", + "1483071336", + "1483071404", + "1483071335", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972623", + "972623", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071351", + "1483071352", + "1483071455", + "1483071351", + "1", + "8", + "0", + "-1", + "103", + "1", + "824", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972627", + "972627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071364", + "1483071366", + "1483071417", + "1483071364", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972629", + "972629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071371", + "1483071372", + "1483071418", + "1483071371", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972635", + "972635", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071417", + "1483071418", + "1483071448", + "1483071417", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972645", + "972645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071436", + "1483071438", + "1483071468", + "1483071436", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972649", + "972649", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071449", + "1483071450", + "1483071512", + "1483071449", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972651", + "972651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071456", + "1483071457", + "1483071505", + "1483071456", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972663", + "972663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071489", + "1483071491", + "1483071525", + "1483071489", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972667", + "972667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071494", + "1483071495", + "1483071533", + "1483071494", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972673", + "972673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071504", + "1483071506", + "1483071549", + "1483071504", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972683", + "972683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071533", + "1483071536", + "1483071566", + "1483071533", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972695", + "972695", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071562", + "1483071564", + "1483071604", + "1483071562", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972709", + "972709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071605", + "1483071606", + "1483071642", + "1483071605", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972712", + "972712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071605", + "1483071606", + "1483071654", + "1483071605", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972714", + "972714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071608", + "1483071609", + "1483071690", + "1483071608", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972716", + "972716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071612", + "1483071613", + "1483071659", + "1483071612", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972722", + "972722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071620", + "1483071621", + "1483071695", + "1483071620", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972724", + "972724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071643", + "1483071644", + "1483071709", + "1483071643", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972726", + "972726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071655", + "1483071657", + "1483071722", + "1483071655", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972734", + "972734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071691", + "1483071692", + "1483071764", + "1483071691", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972738", + "972738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071697", + "1483071699", + "1483071770", + "1483071697", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972744", + "972744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071736", + "1483071737", + "1483071807", + "1483071736", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972748", + "972748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071766", + "1483071768", + "1483071838", + "1483071766", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972756", + "972756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071835", + "1483071837", + "1483071917", + "1483071835", + "1", + "8", + "0", + "-1", + "80", + "2", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972760", + "972760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071838", + "1483071840", + "1483071985", + "1483071838", + "1", + "8", + "0", + "-1", + "145", + "2", + "1160", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972763", + "972763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071839", + "1483071840", + "1483071991", + "1483071839", + "1", + "8", + "0", + "-1", + "151", + "1", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972765", + "972765", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071841", + "1483071843", + "1483071920", + "1483071841", + "1", + "8", + "0", + "-1", + "77", + "2", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972775", + "972775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071920", + "1483071921", + "1483071957", + "1483071920", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972785", + "972785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071958", + "1483071960", + "1483072001", + "1483071958", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972791", + "972791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483071969", + "1483071971", + "1483072010", + "1483071969", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972806", + "972806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072011", + "1483072013", + "1483072068", + "1483072011", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972808", + "972808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072020", + "1483072021", + "1483072089", + "1483072020", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972812", + "972812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072034", + "1483072035", + "1483072075", + "1483072034", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972814", + "972814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072062", + "1483072063", + "1483072107", + "1483072062", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972816", + "972816", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072068", + "1483072069", + "1483072103", + "1483072068", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972818", + "972818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072072", + "1483072073", + "1483072134", + "1483072072", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972820", + "972820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072075", + "1483072077", + "1483072109", + "1483072075", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972822", + "972822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072089", + "1483072090", + "1483072139", + "1483072089", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972824", + "972824", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072103", + "1483072104", + "1483072152", + "1483072103", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972826", + "972826", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072108", + "1483072109", + "1483072144", + "1483072108", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972828", + "972828", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072109", + "1483072112", + "1483072144", + "1483072109", + "1", + "8", + "0", + "-1", + "32", + "3", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972836", + "972836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072135", + "1483072137", + "1483072170", + "1483072135", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972843", + "972843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072145", + "1483072148", + "1483072219", + "1483072145", + "1", + "8", + "0", + "-1", + "71", + "3", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972845", + "972845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072152", + "1483072153", + "1483072219", + "1483072152", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972849", + "972849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072170", + "1483072171", + "1483072292", + "1483072170", + "1", + "8", + "0", + "-1", + "121", + "1", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972853", + "972853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072184", + "1483072185", + "1483072259", + "1483072184", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972872", + "972872", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072249", + "1483072252", + "1483072285", + "1483072249", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972890", + "972890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072309", + "1483072312", + "1483072353", + "1483072309", + "1", + "8", + "0", + "-1", + "41", + "3", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972892", + "972892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072312", + "1483072314", + "1483072351", + "1483072312", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972894", + "972894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072320", + "1483072321", + "1483072406", + "1483072320", + "1", + "8", + "0", + "-1", + "85", + "1", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972898", + "972898", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072322", + "1483072324", + "1483072376", + "1483072322", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972902", + "972902", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072352", + "1483072354", + "1483072389", + "1483072352", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972916", + "972916", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072406", + "1483072408", + "1483072458", + "1483072406", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972918", + "972918", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072409", + "1483072411", + "1483072450", + "1483072409", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972922", + "972922", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072416", + "1483072418", + "1483072449", + "1483072416", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972934", + "972934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072459", + "1483072460", + "1483072517", + "1483072459", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972936", + "972936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072463", + "1483072464", + "1483072516", + "1483072463", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972940", + "972940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072475", + "1483072476", + "1483072605", + "1483072475", + "1", + "8", + "0", + "-1", + "129", + "1", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972944", + "972944", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072482", + "1483072484", + "1483072523", + "1483072482", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972948", + "972948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072514", + "1483072515", + "1483072548", + "1483072514", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972950", + "972950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072516", + "1483072518", + "1483072562", + "1483072516", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972953", + "972953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072517", + "1483072518", + "1483072552", + "1483072517", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972963", + "972963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072552", + "1483072553", + "1483072587", + "1483072552", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972967", + "972967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072562", + "1483072563", + "1483072596", + "1483072562", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972983", + "972983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072598", + "1483072599", + "1483072663", + "1483072598", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "972995", + "972995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072641", + "1483072642", + "1483072680", + "1483072641", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973004", + "973004", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072677", + "1483072678", + "1483072726", + "1483072677", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973006", + "973006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072679", + "1483072681", + "1483072731", + "1483072679", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973014", + "973014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072693", + "1483072695", + "1483072729", + "1483072693", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973024", + "973024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072729", + "1483072730", + "1483072787", + "1483072729", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973026", + "973026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072731", + "1483072733", + "1483072801", + "1483072731", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973028", + "973028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072735", + "1483072737", + "1483072802", + "1483072735", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973032", + "973032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072762", + "1483072763", + "1483072801", + "1483072762", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973034", + "973034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072767", + "1483072768", + "1483072812", + "1483072767", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973036", + "973036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072788", + "1483072789", + "1483072856", + "1483072788", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973038", + "973038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072801", + "1483072802", + "1483072833", + "1483072801", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973044", + "973044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072812", + "1483072813", + "1483072846", + "1483072812", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973050", + "973050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072834", + "1483072835", + "1483072876", + "1483072834", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973052", + "973052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072847", + "1483072848", + "1483072893", + "1483072847", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973054", + "973054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072855", + "1483072857", + "1483072894", + "1483072855", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973056", + "973056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072857", + "1483072860", + "1483072893", + "1483072857", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973058", + "973058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072863", + "1483072864", + "1483072913", + "1483072863", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973062", + "973062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072876", + "1483072877", + "1483072907", + "1483072876", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973070", + "973070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072902", + "1483072903", + "1483072948", + "1483072902", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973072", + "973072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072908", + "1483072909", + "1483072951", + "1483072908", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973076", + "973076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072914", + "1483072916", + "1483073050", + "1483072914", + "1", + "8", + "0", + "-1", + "134", + "2", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973078", + "973078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072916", + "1483072917", + "1483072955", + "1483072916", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973080", + "973080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072919", + "1483072920", + "1483072989", + "1483072919", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973096", + "973096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072995", + "1483072996", + "1483073038", + "1483072995", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973098", + "973098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483072998", + "1483072999", + "1483073030", + "1483072998", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973100", + "973100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073000", + "1483073002", + "1483073038", + "1483073000", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973106", + "973106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073030", + "1483073031", + "1483073062", + "1483073030", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973108", + "973108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073031", + "1483073034", + "1483073073", + "1483073031", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973119", + "973119", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073059", + "1483073061", + "1483073119", + "1483073059", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973121", + "973121", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073063", + "1483073064", + "1483073194", + "1483073063", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973125", + "973125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073073", + "1483073074", + "1483073137", + "1483073073", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973160", + "973160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073164", + "1483073166", + "1483073215", + "1483073164", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973166", + "973166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073184", + "1483073185", + "1483073304", + "1483073184", + "1", + "8", + "0", + "-1", + "119", + "1", + "952", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973168", + "973168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073195", + "1483073196", + "1483073233", + "1483073195", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973172", + "973172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073203", + "1483073204", + "1483073255", + "1483073203", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973176", + "973176", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073215", + "1483073217", + "1483073247", + "1483073215", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973184", + "973184", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073256", + "1483073257", + "1483073287", + "1483073256", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973188", + "973188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073258", + "1483073259", + "1483073313", + "1483073258", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973192", + "973192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073269", + "1483073270", + "1483073300", + "1483073269", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973198", + "973198", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073301", + "1483073302", + "1483073340", + "1483073301", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973204", + "973204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073313", + "1483073315", + "1483073357", + "1483073313", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973206", + "973206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073315", + "1483073316", + "1483073365", + "1483073315", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973212", + "973212", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073329", + "1483073330", + "1483073468", + "1483073329", + "1", + "8", + "0", + "-1", + "138", + "1", + "1104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973214", + "973214", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073336", + "1483073337", + "1483073378", + "1483073336", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973232", + "973232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073407", + "1483073409", + "1483073449", + "1483073407", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973242", + "973242", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073433", + "1483073434", + "1483073464", + "1483073433", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973252", + "973252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073470", + "1483073471", + "1483073508", + "1483073470", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973254", + "973254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073471", + "1483073472", + "1483073517", + "1483073471", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973264", + "973264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073510", + "1483073512", + "1483073577", + "1483073510", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973266", + "973266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073517", + "1483073518", + "1483073554", + "1483073517", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973268", + "973268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073526", + "1483073527", + "1483073557", + "1483073526", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973270", + "973270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073543", + "1483073544", + "1483073593", + "1483073543", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973272", + "973272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073555", + "1483073556", + "1483073586", + "1483073555", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973278", + "973278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073582", + "1483073583", + "1483073628", + "1483073582", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973280", + "973280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073584", + "1483073586", + "1483073640", + "1483073584", + "1", + "8", + "0", + "-1", + "54", + "2", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973282", + "973282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073587", + "1483073589", + "1483073623", + "1483073587", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973284", + "973284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073594", + "1483073595", + "1483073631", + "1483073594", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973286", + "973286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073601", + "1483073602", + "1483073636", + "1483073601", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973288", + "973288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073618", + "1483073619", + "1483073662", + "1483073618", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973300", + "973300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073654", + "1483073655", + "1483073699", + "1483073654", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973302", + "973302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073657", + "1483073658", + "1483073726", + "1483073657", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973304", + "973304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073660", + "1483073661", + "1483073800", + "1483073660", + "1", + "8", + "0", + "-1", + "139", + "1", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973306", + "973306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073662", + "1483073664", + "1483073715", + "1483073662", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973309", + "973309", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073663", + "1483073664", + "1483073736", + "1483073663", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973315", + "973315", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073699", + "1483073700", + "1483073730", + "1483073699", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973323", + "973323", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073715", + "1483073716", + "1483073754", + "1483073715", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973333", + "973333", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073736", + "1483073737", + "1483073769", + "1483073736", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973343", + "973343", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073771", + "1483073773", + "1483073807", + "1483073771", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973345", + "973345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073774", + "1483073776", + "1483073823", + "1483073774", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973347", + "973347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073777", + "1483073779", + "1483073848", + "1483073777", + "1", + "8", + "0", + "-1", + "69", + "2", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973349", + "973349", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073780", + "1483073782", + "1483073918", + "1483073780", + "1", + "8", + "0", + "-1", + "136", + "2", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973369", + "973369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073849", + "1483073851", + "1483073893", + "1483073849", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973371", + "973371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073877", + "1483073878", + "1483073948", + "1483073877", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973373", + "973373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073879", + "1483073881", + "1483073928", + "1483073879", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973375", + "973375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073891", + "1483073892", + "1483073948", + "1483073891", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973377", + "973377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073894", + "1483073895", + "1483073956", + "1483073894", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973381", + "973381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073901", + "1483073902", + "1483073956", + "1483073901", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973385", + "973385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073928", + "1483073929", + "1483073984", + "1483073928", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973387", + "973387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073948", + "1483073949", + "1483073985", + "1483073948", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973390", + "973390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073949", + "1483073952", + "1483074051", + "1483073949", + "1", + "8", + "0", + "-1", + "99", + "3", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973394", + "973394", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073957", + "1483073960", + "1483074138", + "1483073957", + "1", + "8", + "0", + "-1", + "178", + "3", + "1424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973398", + "973398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483073974", + "1483073976", + "1483074083", + "1483073974", + "1", + "8", + "0", + "-1", + "107", + "2", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973414", + "973414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074052", + "1483074053", + "1483074099", + "1483074052", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973416", + "973416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074071", + "1483074072", + "1483074108", + "1483074071", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973418", + "973418", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074075", + "1483074076", + "1483074109", + "1483074075", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973422", + "973422", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074084", + "1483074085", + "1483074132", + "1483074084", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973430", + "973430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074114", + "1483074117", + "1483074156", + "1483074114", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973432", + "973432", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074124", + "1483074125", + "1483074163", + "1483074124", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973436", + "973436", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074133", + "1483074135", + "1483074170", + "1483074133", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973444", + "973444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074163", + "1483074164", + "1483074231", + "1483074163", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973462", + "973462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074230", + "1483074231", + "1483074277", + "1483074230", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973464", + "973464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074232", + "1483074234", + "1483074280", + "1483074232", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973476", + "973476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074262", + "1483074265", + "1483074302", + "1483074262", + "1", + "8", + "0", + "-1", + "37", + "3", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973480", + "973480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074271", + "1483074272", + "1483074310", + "1483074271", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973484", + "973484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074278", + "1483074280", + "1483074335", + "1483074278", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973486", + "973486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074280", + "1483074281", + "1483074374", + "1483074280", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973488", + "973488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074281", + "1483074283", + "1483074321", + "1483074281", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973492", + "973492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074302", + "1483074303", + "1483074350", + "1483074302", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973506", + "973506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074336", + "1483074337", + "1483074368", + "1483074336", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973508", + "973508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074337", + "1483074340", + "1483074381", + "1483074337", + "1", + "8", + "0", + "-1", + "41", + "3", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973522", + "973522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074375", + "1483074376", + "1483074408", + "1483074375", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973524", + "973524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074376", + "1483074377", + "1483074411", + "1483074376", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973528", + "973528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074382", + "1483074383", + "1483074414", + "1483074382", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973532", + "973532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074393", + "1483074394", + "1483074466", + "1483074393", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973540", + "973540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074415", + "1483074417", + "1483074454", + "1483074415", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973568", + "973568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074478", + "1483074480", + "1483074513", + "1483074478", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973572", + "973572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074491", + "1483074493", + "1483074552", + "1483074491", + "1", + "8", + "0", + "-1", + "59", + "2", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973574", + "973574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074494", + "1483074496", + "1483074553", + "1483074494", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973576", + "973576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074497", + "1483074499", + "1483074609", + "1483074497", + "1", + "8", + "0", + "-1", + "110", + "2", + "880", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973592", + "973592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074563", + "1483074564", + "1483074595", + "1483074563", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973600", + "973600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074578", + "1483074579", + "1483074634", + "1483074578", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973602", + "973602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074579", + "1483074581", + "1483074634", + "1483074579", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973606", + "973606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074595", + "1483074597", + "1483074632", + "1483074595", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973608", + "973608", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074598", + "1483074600", + "1483074636", + "1483074598", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973612", + "973612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074612", + "1483074613", + "1483074657", + "1483074612", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973616", + "973616", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074634", + "1483074635", + "1483074676", + "1483074634", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973618", + "973618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074635", + "1483074636", + "1483074671", + "1483074635", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973623", + "973623", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074638", + "1483074640", + "1483074682", + "1483074638", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973631", + "973631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074659", + "1483074660", + "1483074717", + "1483074659", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973637", + "973637", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074682", + "1483074683", + "1483074735", + "1483074682", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973641", + "973641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074707", + "1483074708", + "1483074769", + "1483074707", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973643", + "973643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074708", + "1483074709", + "1483074750", + "1483074708", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973645", + "973645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074716", + "1483074717", + "1483074747", + "1483074716", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973647", + "973647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074718", + "1483074720", + "1483074755", + "1483074718", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973663", + "973663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074770", + "1483074772", + "1483074851", + "1483074770", + "1", + "8", + "0", + "-1", + "79", + "2", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973665", + "973665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074775", + "1483074777", + "1483074854", + "1483074775", + "1", + "8", + "0", + "-1", + "77", + "2", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973671", + "973671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074792", + "1483074793", + "1483074875", + "1483074792", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973683", + "973683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074853", + "1483074854", + "1483074893", + "1483074853", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973689", + "973689", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074871", + "1483074872", + "1483074941", + "1483074871", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973691", + "973691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074876", + "1483074877", + "1483074920", + "1483074876", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973693", + "973693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074877", + "1483074880", + "1483074932", + "1483074877", + "1", + "8", + "0", + "-1", + "52", + "3", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973695", + "973695", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074886", + "1483074887", + "1483074926", + "1483074886", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973697", + "973697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074894", + "1483074897", + "1483074945", + "1483074894", + "1", + "8", + "0", + "-1", + "48", + "3", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973699", + "973699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074903", + "1483074904", + "1483074941", + "1483074903", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973705", + "973705", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074921", + "1483074923", + "1483074973", + "1483074921", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973707", + "973707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074926", + "1483074927", + "1483074968", + "1483074926", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973709", + "973709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074932", + "1483074933", + "1483075023", + "1483074932", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973713", + "973713", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074942", + "1483074944", + "1483075104", + "1483074942", + "1", + "8", + "0", + "-1", + "160", + "2", + "1280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973716", + "973716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074943", + "1483074944", + "1483075036", + "1483074943", + "1", + "8", + "0", + "-1", + "92", + "1", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973718", + "973718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074946", + "1483074947", + "1483075037", + "1483074946", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973722", + "973722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483074968", + "1483074969", + "1483075014", + "1483074968", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973728", + "973728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075015", + "1483075017", + "1483075066", + "1483075015", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973730", + "973730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075023", + "1483075024", + "1483075067", + "1483075023", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973734", + "973734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075037", + "1483075038", + "1483075097", + "1483075037", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973740", + "973740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075068", + "1483075069", + "1483075123", + "1483075068", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973746", + "973746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075100", + "1483075101", + "1483075134", + "1483075100", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973752", + "973752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075122", + "1483075123", + "1483075176", + "1483075122", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973754", + "973754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075124", + "1483075126", + "1483075186", + "1483075124", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973756", + "973756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075128", + "1483075129", + "1483075213", + "1483075128", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973758", + "973758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075135", + "1483075137", + "1483075294", + "1483075135", + "1", + "8", + "0", + "-1", + "157", + "2", + "1256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973762", + "973762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075148", + "1483075149", + "1483075238", + "1483075148", + "1", + "8", + "0", + "-1", + "89", + "1", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973773", + "973773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075186", + "1483075187", + "1483075302", + "1483075186", + "1", + "8", + "0", + "-1", + "115", + "1", + "920", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973779", + "973779", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075213", + "1483075215", + "1483075352", + "1483075213", + "1", + "8", + "0", + "-1", + "137", + "2", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973789", + "973789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075295", + "1483075296", + "1483075426", + "1483075295", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973791", + "973791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075302", + "1483075303", + "1483075421", + "1483075302", + "1", + "8", + "0", + "-1", + "118", + "1", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973793", + "973793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075306", + "1483075307", + "1483075373", + "1483075306", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973799", + "973799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075352", + "1483075353", + "1483075512", + "1483075352", + "1", + "8", + "0", + "-1", + "159", + "1", + "1272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973805", + "973805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075375", + "1483075377", + "1483075528", + "1483075375", + "1", + "8", + "0", + "-1", + "151", + "2", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973809", + "973809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075422", + "1483075423", + "1483075592", + "1483075422", + "1", + "8", + "0", + "-1", + "169", + "1", + "1352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973811", + "973811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075424", + "1483075426", + "1483075470", + "1483075424", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973813", + "973813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075426", + "1483075429", + "1483075491", + "1483075426", + "1", + "8", + "0", + "-1", + "62", + "3", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973815", + "973815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075471", + "1483075472", + "1483075525", + "1483075471", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973819", + "973819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075492", + "1483075494", + "1483075547", + "1483075492", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973821", + "973821", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075512", + "1483075513", + "1483075547", + "1483075512", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973825", + "973825", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075529", + "1483075530", + "1483075577", + "1483075529", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973829", + "973829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075548", + "1483075549", + "1483075596", + "1483075548", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973839", + "973839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075596", + "1483075597", + "1483075652", + "1483075596", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973847", + "973847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075611", + "1483075612", + "1483075674", + "1483075611", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973857", + "973857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075672", + "1483075673", + "1483075742", + "1483075672", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973859", + "973859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075675", + "1483075677", + "1483075719", + "1483075675", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973877", + "973877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075740", + "1483075741", + "1483075776", + "1483075740", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973879", + "973879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075743", + "1483075744", + "1483075774", + "1483075743", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973881", + "973881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075756", + "1483075757", + "1483075793", + "1483075756", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973885", + "973885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075767", + "1483075768", + "1483075810", + "1483075767", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973887", + "973887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075775", + "1483075776", + "1483075808", + "1483075775", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973889", + "973889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075776", + "1483075779", + "1483075823", + "1483075776", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973891", + "973891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075789", + "1483075790", + "1483075870", + "1483075789", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973893", + "973893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075793", + "1483075794", + "1483075884", + "1483075793", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973895", + "973895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075794", + "1483075797", + "1483075961", + "1483075794", + "1", + "8", + "0", + "-1", + "164", + "3", + "1312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973897", + "973897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075809", + "1483075810", + "1483075867", + "1483075809", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973899", + "973899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075810", + "1483075813", + "1483075909", + "1483075810", + "1", + "8", + "0", + "-1", + "96", + "3", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973903", + "973903", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075823", + "1483075826", + "1483075893", + "1483075823", + "1", + "8", + "0", + "-1", + "67", + "3", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973909", + "973909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075871", + "1483075872", + "1483075939", + "1483075871", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973911", + "973911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075884", + "1483075885", + "1483075946", + "1483075884", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973913", + "973913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075893", + "1483075894", + "1483075936", + "1483075893", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973919", + "973919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075936", + "1483075939", + "1483076003", + "1483075936", + "1", + "8", + "0", + "-1", + "64", + "3", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973921", + "973921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075939", + "1483075942", + "1483076012", + "1483075939", + "1", + "8", + "0", + "-1", + "70", + "3", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973927", + "973927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483075961", + "1483075962", + "1483076005", + "1483075961", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973947", + "973947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076063", + "1483076064", + "1483076155", + "1483076063", + "1", + "8", + "0", + "-1", + "91", + "1", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973951", + "973951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076073", + "1483076074", + "1483076105", + "1483076073", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973955", + "973955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076104", + "1483076106", + "1483076157", + "1483076104", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973961", + "973961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076129", + "1483076130", + "1483076170", + "1483076129", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973965", + "973965", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076132", + "1483076133", + "1483076168", + "1483076132", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973983", + "973983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076171", + "1483076172", + "1483076243", + "1483076171", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973985", + "973985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076181", + "1483076182", + "1483076241", + "1483076181", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973987", + "973987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076183", + "1483076184", + "1483076323", + "1483076183", + "1", + "8", + "0", + "-1", + "139", + "1", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973989", + "973989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076184", + "1483076185", + "1483076238", + "1483076184", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "973997", + "973997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076231", + "1483076232", + "1483076279", + "1483076231", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974009", + "974009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076268", + "1483076269", + "1483076320", + "1483076268", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974011", + "974011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076275", + "1483076277", + "1483076308", + "1483076275", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974017", + "974017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076299", + "1483076300", + "1483076331", + "1483076299", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974023", + "974023", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076320", + "1483076321", + "1483076353", + "1483076320", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974032", + "974032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076332", + "1483076334", + "1483076473", + "1483076332", + "1", + "8", + "0", + "-1", + "139", + "2", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974034", + "974034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076338", + "1483076339", + "1483076389", + "1483076338", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974044", + "974044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076385", + "1483076386", + "1483076437", + "1483076385", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974054", + "974054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076423", + "1483076424", + "1483076472", + "1483076423", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974056", + "974056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076427", + "1483076428", + "1483076468", + "1483076427", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974058", + "974058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076428", + "1483076431", + "1483076485", + "1483076428", + "1", + "8", + "0", + "-1", + "54", + "3", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974060", + "974060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076438", + "1483076439", + "1483076473", + "1483076438", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974062", + "974062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076446", + "1483076447", + "1483076490", + "1483076446", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974070", + "974070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076474", + "1483076476", + "1483076521", + "1483076474", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974072", + "974072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076486", + "1483076487", + "1483076535", + "1483076486", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974074", + "974074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076490", + "1483076491", + "1483076553", + "1483076490", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974078", + "974078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076500", + "1483076502", + "1483076639", + "1483076500", + "1", + "8", + "0", + "-1", + "137", + "2", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974080", + "974080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076504", + "1483076505", + "1483076545", + "1483076504", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974084", + "974084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076522", + "1483076523", + "1483076596", + "1483076522", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974086", + "974086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076536", + "1483076537", + "1483076573", + "1483076536", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974088", + "974088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076545", + "1483076546", + "1483076586", + "1483076545", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974092", + "974092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076567", + "1483076568", + "1483076605", + "1483076567", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974104", + "974104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076596", + "1483076599", + "1483076650", + "1483076596", + "1", + "8", + "0", + "-1", + "51", + "3", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974108", + "974108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076610", + "1483076611", + "1483076656", + "1483076610", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974115", + "974115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076639", + "1483076642", + "1483076684", + "1483076639", + "1", + "8", + "0", + "-1", + "42", + "3", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974125", + "974125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076666", + "1483076668", + "1483076716", + "1483076666", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974127", + "974127", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076684", + "1483076685", + "1483076760", + "1483076684", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974145", + "974145", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076761", + "1483076763", + "1483076797", + "1483076761", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974151", + "974151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076789", + "1483076790", + "1483076837", + "1483076789", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974160", + "974160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076803", + "1483076805", + "1483076845", + "1483076803", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974164", + "974164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076811", + "1483076812", + "1483076876", + "1483076811", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974166", + "974166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076822", + "1483076823", + "1483076858", + "1483076822", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974168", + "974168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076825", + "1483076826", + "1483076956", + "1483076825", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974170", + "974170", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076837", + "1483076838", + "1483076875", + "1483076837", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974172", + "974172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076838", + "1483076841", + "1483076882", + "1483076838", + "1", + "8", + "0", + "-1", + "41", + "3", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974174", + "974174", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076846", + "1483076847", + "1483076913", + "1483076846", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974186", + "974186", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076902", + "1483076903", + "1483076935", + "1483076902", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974206", + "974206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076954", + "1483076955", + "1483076988", + "1483076954", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974208", + "974208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076957", + "1483076958", + "1483077010", + "1483076957", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974210", + "974210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076959", + "1483076960", + "1483076993", + "1483076959", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974213", + "974213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076960", + "1483076961", + "1483077090", + "1483076960", + "1", + "8", + "0", + "-1", + "129", + "1", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974215", + "974215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076960", + "1483076961", + "1483076997", + "1483076960", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974221", + "974221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076988", + "1483076989", + "1483077020", + "1483076988", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974223", + "974223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483076993", + "1483076994", + "1483077027", + "1483076993", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974231", + "974231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077020", + "1483077021", + "1483077067", + "1483077020", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974237", + "974237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077032", + "1483077034", + "1483077071", + "1483077032", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974241", + "974241", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077055", + "1483077057", + "1483077090", + "1483077055", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974243", + "974243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077059", + "1483077060", + "1483077113", + "1483077059", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974260", + "974260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077097", + "1483077098", + "1483077147", + "1483077097", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974262", + "974262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077113", + "1483077114", + "1483077170", + "1483077113", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974264", + "974264", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077134", + "1483077135", + "1483077191", + "1483077134", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974266", + "974266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077148", + "1483077149", + "1483077185", + "1483077148", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974268", + "974268", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077155", + "1483077156", + "1483077186", + "1483077155", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974270", + "974270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077159", + "1483077160", + "1483077211", + "1483077159", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974272", + "974272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077171", + "1483077172", + "1483077213", + "1483077171", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974276", + "974276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077186", + "1483077187", + "1483077227", + "1483077186", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974278", + "974278", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077192", + "1483077193", + "1483077226", + "1483077192", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974280", + "974280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077212", + "1483077213", + "1483077272", + "1483077212", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974282", + "974282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077214", + "1483077216", + "1483077260", + "1483077214", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974284", + "974284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077216", + "1483077219", + "1483077278", + "1483077216", + "1", + "8", + "0", + "-1", + "59", + "3", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974286", + "974286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077226", + "1483077227", + "1483077275", + "1483077226", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974290", + "974290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077237", + "1483077238", + "1483077269", + "1483077237", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974298", + "974298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077272", + "1483077273", + "1483077335", + "1483077272", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974300", + "974300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077276", + "1483077277", + "1483077328", + "1483077276", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974304", + "974304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077279", + "1483077280", + "1483077424", + "1483077279", + "1", + "8", + "0", + "-1", + "144", + "1", + "1152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974308", + "974308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077290", + "1483077291", + "1483077370", + "1483077290", + "1", + "8", + "0", + "-1", + "79", + "1", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974310", + "974310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077320", + "1483077321", + "1483077374", + "1483077320", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974316", + "974316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077347", + "1483077348", + "1483077378", + "1483077347", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974347", + "974347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077444", + "1483077447", + "1483077500", + "1483077444", + "1", + "8", + "0", + "-1", + "53", + "3", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974351", + "974351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077451", + "1483077453", + "1483077496", + "1483077451", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974359", + "974359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077485", + "1483077486", + "1483077517", + "1483077485", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974361", + "974361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077497", + "1483077498", + "1483077531", + "1483077497", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974363", + "974363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077501", + "1483077502", + "1483077538", + "1483077501", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974369", + "974369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077518", + "1483077520", + "1483077554", + "1483077518", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974373", + "974373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077531", + "1483077532", + "1483077567", + "1483077531", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974375", + "974375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077539", + "1483077540", + "1483077598", + "1483077539", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974377", + "974377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077540", + "1483077543", + "1483077600", + "1483077540", + "1", + "8", + "0", + "-1", + "57", + "3", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974379", + "974379", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077544", + "1483077546", + "1483077580", + "1483077544", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974385", + "974385", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077567", + "1483077568", + "1483077615", + "1483077567", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974391", + "974391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077580", + "1483077582", + "1483077657", + "1483077580", + "1", + "8", + "0", + "-1", + "75", + "2", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974393", + "974393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077584", + "1483077585", + "1483077656", + "1483077584", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974397", + "974397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077601", + "1483077602", + "1483077663", + "1483077601", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974399", + "974399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077616", + "1483077617", + "1483077653", + "1483077616", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974405", + "974405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077657", + "1483077658", + "1483077731", + "1483077657", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974415", + "974415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077699", + "1483077701", + "1483077756", + "1483077699", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974429", + "974429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077747", + "1483077748", + "1483077808", + "1483077747", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974433", + "974433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077767", + "1483077768", + "1483077830", + "1483077767", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974439", + "974439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077802", + "1483077803", + "1483077905", + "1483077802", + "1", + "8", + "0", + "-1", + "102", + "1", + "816", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974443", + "974443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077808", + "1483077809", + "1483077924", + "1483077808", + "1", + "8", + "0", + "-1", + "115", + "1", + "920", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974454", + "974454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077851", + "1483077852", + "1483077883", + "1483077851", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974464", + "974464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077895", + "1483077897", + "1483077948", + "1483077895", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974466", + "974466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077905", + "1483077906", + "1483077936", + "1483077905", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974476", + "974476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077941", + "1483077942", + "1483077973", + "1483077941", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974478", + "974478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077948", + "1483077949", + "1483077984", + "1483077948", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974483", + "974483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077959", + "1483077960", + "1483078007", + "1483077959", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974485", + "974485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077962", + "1483077963", + "1483078098", + "1483077962", + "1", + "8", + "0", + "-1", + "135", + "1", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974489", + "974489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077985", + "1483077986", + "1483078020", + "1483077985", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974493", + "974493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483077991", + "1483077992", + "1483078032", + "1483077991", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974505", + "974505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078033", + "1483078034", + "1483078066", + "1483078033", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974509", + "974509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078039", + "1483078040", + "1483078080", + "1483078039", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974525", + "974525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078090", + "1483078093", + "1483078129", + "1483078090", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974529", + "974529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078098", + "1483078099", + "1483078163", + "1483078098", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974533", + "974533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078110", + "1483078112", + "1483078157", + "1483078110", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974535", + "974535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078112", + "1483078115", + "1483078152", + "1483078112", + "1", + "8", + "0", + "-1", + "37", + "3", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974553", + "974553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078182", + "1483078183", + "1483078217", + "1483078182", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974561", + "974561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078209", + "1483078210", + "1483078244", + "1483078209", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974567", + "974567", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078216", + "1483078217", + "1483078250", + "1483078216", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974569", + "974569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078217", + "1483078220", + "1483078250", + "1483078217", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974573", + "974573", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078231", + "1483078234", + "1483078271", + "1483078231", + "1", + "8", + "0", + "-1", + "37", + "3", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974575", + "974575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078234", + "1483078237", + "1483078284", + "1483078234", + "1", + "8", + "0", + "-1", + "47", + "3", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974589", + "974589", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078274", + "1483078275", + "1483078305", + "1483078274", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974609", + "974609", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078314", + "1483078315", + "1483078351", + "1483078314", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974618", + "974618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078338", + "1483078339", + "1483078374", + "1483078338", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974624", + "974624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078354", + "1483078355", + "1483078395", + "1483078354", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974628", + "974628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078368", + "1483078369", + "1483078413", + "1483078368", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974634", + "974634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078375", + "1483078377", + "1483078422", + "1483078375", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974642", + "974642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078399", + "1483078402", + "1483078451", + "1483078399", + "1", + "8", + "0", + "-1", + "49", + "3", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974644", + "974644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078413", + "1483078414", + "1483078457", + "1483078413", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974646", + "974646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078417", + "1483078418", + "1483078450", + "1483078417", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974650", + "974650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078423", + "1483078424", + "1483078457", + "1483078423", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974662", + "974662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078453", + "1483078454", + "1483078488", + "1483078453", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974669", + "974669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078475", + "1483078476", + "1483078532", + "1483078475", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974671", + "974671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078478", + "1483078479", + "1483078522", + "1483078478", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974677", + "974677", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078497", + "1483078498", + "1483078529", + "1483078497", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974687", + "974687", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078531", + "1483078532", + "1483078565", + "1483078531", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974691", + "974691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078532", + "1483078533", + "1483078570", + "1483078532", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974693", + "974693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078551", + "1483078552", + "1483078611", + "1483078551", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974695", + "974695", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078556", + "1483078558", + "1483078590", + "1483078556", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974697", + "974697", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078558", + "1483078561", + "1483078614", + "1483078558", + "1", + "8", + "0", + "-1", + "53", + "3", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974699", + "974699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078565", + "1483078566", + "1483078599", + "1483078565", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974701", + "974701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078567", + "1483078569", + "1483078610", + "1483078567", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974705", + "974705", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078591", + "1483078592", + "1483078628", + "1483078591", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974707", + "974707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078598", + "1483078599", + "1483078664", + "1483078598", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974709", + "974709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078600", + "1483078602", + "1483078673", + "1483078600", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974717", + "974717", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078611", + "1483078613", + "1483078701", + "1483078611", + "1", + "8", + "0", + "-1", + "88", + "2", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974719", + "974719", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078615", + "1483078618", + "1483078704", + "1483078615", + "1", + "8", + "0", + "-1", + "86", + "3", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974721", + "974721", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078629", + "1483078630", + "1483078670", + "1483078629", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974727", + "974727", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078665", + "1483078666", + "1483078737", + "1483078665", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974729", + "974729", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078667", + "1483078669", + "1483078706", + "1483078667", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974731", + "974731", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078670", + "1483078672", + "1483078723", + "1483078670", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974733", + "974733", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078674", + "1483078675", + "1483078718", + "1483078674", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974735", + "974735", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078701", + "1483078702", + "1483078751", + "1483078701", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974737", + "974737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078704", + "1483078705", + "1483078773", + "1483078704", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974739", + "974739", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078706", + "1483078708", + "1483078750", + "1483078706", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974747", + "974747", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078750", + "1483078751", + "1483078785", + "1483078750", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974749", + "974749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078752", + "1483078754", + "1483078816", + "1483078752", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974753", + "974753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078768", + "1483078769", + "1483078854", + "1483078768", + "1", + "8", + "0", + "-1", + "85", + "1", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974761", + "974761", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078786", + "1483078788", + "1483078845", + "1483078786", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974763", + "974763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078789", + "1483078790", + "1483078842", + "1483078789", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974769", + "974769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078842", + "1483078843", + "1483078912", + "1483078842", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974777", + "974777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078872", + "1483078873", + "1483078932", + "1483078872", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974782", + "974782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078891", + "1483078892", + "1483078945", + "1483078891", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974784", + "974784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078912", + "1483078913", + "1483078986", + "1483078912", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974794", + "974794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078960", + "1483078961", + "1483079020", + "1483078960", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974798", + "974798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078973", + "1483078975", + "1483079019", + "1483078973", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974801", + "974801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078973", + "1483078975", + "1483079030", + "1483078973", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974803", + "974803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078975", + "1483078978", + "1483079141", + "1483078975", + "1", + "8", + "0", + "-1", + "163", + "3", + "1304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974805", + "974805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078987", + "1483078988", + "1483079056", + "1483078987", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974809", + "974809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483078998", + "1483078999", + "1483079092", + "1483078998", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974811", + "974811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079019", + "1483079020", + "1483079156", + "1483079019", + "1", + "8", + "0", + "-1", + "136", + "1", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974813", + "974813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079021", + "1483079023", + "1483079159", + "1483079021", + "1", + "8", + "0", + "-1", + "136", + "2", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974815", + "974815", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079031", + "1483079032", + "1483079170", + "1483079031", + "1", + "8", + "0", + "-1", + "138", + "1", + "1104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974817", + "974817", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079057", + "1483079058", + "1483079195", + "1483079057", + "1", + "8", + "0", + "-1", + "137", + "1", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974827", + "974827", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079142", + "1483079143", + "1483079291", + "1483079142", + "1", + "8", + "0", + "-1", + "148", + "1", + "1184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974829", + "974829", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079155", + "1483079156", + "1483079298", + "1483079155", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974833", + "974833", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079160", + "1483079161", + "1483079295", + "1483079160", + "1", + "8", + "0", + "-1", + "134", + "1", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974835", + "974835", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079170", + "1483079171", + "1483079285", + "1483079170", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974837", + "974837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079195", + "1483079196", + "1483079272", + "1483079195", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974859", + "974859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079298", + "1483079299", + "1483079344", + "1483079298", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974871", + "974871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079392", + "1483079394", + "1483079451", + "1483079392", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974875", + "974875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079413", + "1483079414", + "1483079477", + "1483079413", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974879", + "974879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079438", + "1483079441", + "1483079485", + "1483079438", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974881", + "974881", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079442", + "1483079444", + "1483079486", + "1483079442", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974883", + "974883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079445", + "1483079447", + "1483079488", + "1483079445", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974885", + "974885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079451", + "1483079452", + "1483079497", + "1483079451", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974887", + "974887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079468", + "1483079469", + "1483079513", + "1483079468", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974889", + "974889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079477", + "1483079478", + "1483079541", + "1483079477", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974891", + "974891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079485", + "1483079486", + "1483079548", + "1483079485", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974893", + "974893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079486", + "1483079489", + "1483079537", + "1483079486", + "1", + "8", + "0", + "-1", + "48", + "3", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974895", + "974895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079489", + "1483079492", + "1483079653", + "1483079489", + "1", + "8", + "0", + "-1", + "161", + "3", + "1288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974897", + "974897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079498", + "1483079499", + "1483079567", + "1483079498", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974901", + "974901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079513", + "1483079514", + "1483079601", + "1483079513", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974907", + "974907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079538", + "1483079539", + "1483079614", + "1483079538", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974909", + "974909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079541", + "1483079542", + "1483079592", + "1483079541", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974911", + "974911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079548", + "1483079549", + "1483079616", + "1483079548", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974917", + "974917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079592", + "1483079593", + "1483079673", + "1483079592", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974919", + "974919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079601", + "1483079602", + "1483079642", + "1483079601", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974923", + "974923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079615", + "1483079616", + "1483079662", + "1483079615", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974925", + "974925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079617", + "1483079619", + "1483079690", + "1483079617", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974927", + "974927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079642", + "1483079643", + "1483079677", + "1483079642", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974929", + "974929", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079653", + "1483079654", + "1483079702", + "1483079653", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974933", + "974933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079673", + "1483079674", + "1483079714", + "1483079673", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974935", + "974935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079677", + "1483079678", + "1483079766", + "1483079677", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974937", + "974937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079686", + "1483079687", + "1483079745", + "1483079686", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974943", + "974943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079704", + "1483079706", + "1483079773", + "1483079704", + "1", + "8", + "0", + "-1", + "67", + "2", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974951", + "974951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079766", + "1483079767", + "1483079813", + "1483079766", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974961", + "974961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079814", + "1483079815", + "1483079892", + "1483079814", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974967", + "974967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079831", + "1483079833", + "1483079909", + "1483079831", + "1", + "8", + "0", + "-1", + "76", + "2", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974969", + "974969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079846", + "1483079847", + "1483079921", + "1483079846", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974971", + "974971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079849", + "1483079850", + "1483079919", + "1483079849", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974973", + "974973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079873", + "1483079874", + "1483079911", + "1483079873", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974975", + "974975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079893", + "1483079894", + "1483079925", + "1483079893", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974977", + "974977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079895", + "1483079897", + "1483079944", + "1483079895", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974979", + "974979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079910", + "1483079911", + "1483079976", + "1483079910", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974981", + "974981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079912", + "1483079914", + "1483079965", + "1483079912", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974985", + "974985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079922", + "1483079923", + "1483080019", + "1483079922", + "1", + "8", + "0", + "-1", + "96", + "1", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974989", + "974989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079945", + "1483079946", + "1483080010", + "1483079945", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974991", + "974991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079966", + "1483079967", + "1483080066", + "1483079966", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974995", + "974995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483079977", + "1483079978", + "1483080011", + "1483079977", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "974999", + "974999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080012", + "1483080014", + "1483080048", + "1483080012", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975003", + "975003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080019", + "1483080020", + "1483080052", + "1483080019", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975009", + "975009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080042", + "1483080044", + "1483080091", + "1483080042", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975013", + "975013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080053", + "1483080054", + "1483080088", + "1483080053", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975015", + "975015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080066", + "1483080067", + "1483080104", + "1483080066", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975026", + "975026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080096", + "1483080099", + "1483080153", + "1483080096", + "1", + "8", + "0", + "-1", + "54", + "3", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975028", + "975028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080104", + "1483080105", + "1483080136", + "1483080104", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975032", + "975032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080111", + "1483080113", + "1483080239", + "1483080111", + "1", + "8", + "0", + "-1", + "126", + "2", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975038", + "975038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080136", + "1483080137", + "1483080172", + "1483080136", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975040", + "975040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080151", + "1483080152", + "1483080188", + "1483080151", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975044", + "975044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080154", + "1483080155", + "1483080186", + "1483080154", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975072", + "975072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080238", + "1483080240", + "1483080275", + "1483080238", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975074", + "975074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080240", + "1483080241", + "1483080303", + "1483080240", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975076", + "975076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080244", + "1483080245", + "1483080306", + "1483080244", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975078", + "975078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080245", + "1483080248", + "1483080375", + "1483080245", + "1", + "8", + "0", + "-1", + "127", + "3", + "1016", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975080", + "975080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080249", + "1483080251", + "1483080283", + "1483080249", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975082", + "975082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080260", + "1483080261", + "1483080303", + "1483080260", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975088", + "975088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080284", + "1483080285", + "1483080322", + "1483080284", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975090", + "975090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080299", + "1483080300", + "1483080331", + "1483080299", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975098", + "975098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080323", + "1483080324", + "1483080366", + "1483080323", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975100", + "975100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080328", + "1483080329", + "1483080376", + "1483080328", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975102", + "975102", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080330", + "1483080332", + "1483080373", + "1483080330", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975104", + "975104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080332", + "1483080335", + "1483080365", + "1483080332", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975106", + "975106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080336", + "1483080338", + "1483080370", + "1483080336", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975118", + "975118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080377", + "1483080378", + "1483080431", + "1483080377", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975125", + "975125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080392", + "1483080395", + "1483080437", + "1483080392", + "1", + "8", + "0", + "-1", + "42", + "3", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975143", + "975143", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080440", + "1483080441", + "1483080481", + "1483080440", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975149", + "975149", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080457", + "1483080458", + "1483080495", + "1483080457", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975151", + "975151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080458", + "1483080461", + "1483080492", + "1483080458", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975163", + "975163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080493", + "1483080495", + "1483080547", + "1483080493", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975166", + "975166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080493", + "1483080495", + "1483080538", + "1483080493", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975168", + "975168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080496", + "1483080498", + "1483080623", + "1483080496", + "1", + "8", + "0", + "-1", + "125", + "2", + "1000", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975172", + "975172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080512", + "1483080513", + "1483080563", + "1483080512", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975182", + "975182", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080549", + "1483080550", + "1483080590", + "1483080549", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975188", + "975188", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080571", + "1483080572", + "1483080611", + "1483080571", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975192", + "975192", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080579", + "1483080580", + "1483080621", + "1483080579", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975196", + "975196", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080590", + "1483080591", + "1483080623", + "1483080590", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975207", + "975207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080622", + "1483080623", + "1483080670", + "1483080622", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975209", + "975209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080623", + "1483080625", + "1483080657", + "1483080623", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975211", + "975211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080623", + "1483080625", + "1483080670", + "1483080623", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975213", + "975213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080625", + "1483080626", + "1483080744", + "1483080625", + "1", + "8", + "0", + "-1", + "118", + "1", + "944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975217", + "975217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080632", + "1483080634", + "1483080693", + "1483080632", + "1", + "8", + "0", + "-1", + "59", + "2", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975256", + "975256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080738", + "1483080739", + "1483080780", + "1483080738", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975266", + "975266", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080748", + "1483080749", + "1483080795", + "1483080748", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975284", + "975284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080817", + "1483080818", + "1483080867", + "1483080817", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975286", + "975286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080820", + "1483080821", + "1483080865", + "1483080820", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975300", + "975300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080866", + "1483080867", + "1483080911", + "1483080866", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975302", + "975302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080867", + "1483080868", + "1483080911", + "1483080867", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975316", + "975316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080912", + "1483080914", + "1483080951", + "1483080912", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975318", + "975318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080916", + "1483080917", + "1483080948", + "1483080916", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975324", + "975324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080941", + "1483080943", + "1483080973", + "1483080941", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975328", + "975328", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080951", + "1483080952", + "1483080983", + "1483080951", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975330", + "975330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483080952", + "1483080953", + "1483080995", + "1483080952", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975344", + "975344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081001", + "1483081002", + "1483081040", + "1483081001", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975346", + "975346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081002", + "1483081003", + "1483081047", + "1483081002", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975348", + "975348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081008", + "1483081009", + "1483081074", + "1483081008", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975355", + "975355", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081029", + "1483081030", + "1483081064", + "1483081029", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975359", + "975359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081048", + "1483081049", + "1483081084", + "1483081048", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975365", + "975365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081065", + "1483081066", + "1483081108", + "1483081065", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975369", + "975369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081081", + "1483081082", + "1483081123", + "1483081081", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975371", + "975371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081081", + "1483081082", + "1483081121", + "1483081081", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975373", + "975373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081083", + "1483081084", + "1483081120", + "1483081083", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975377", + "975377", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081096", + "1483081097", + "1483081132", + "1483081096", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975389", + "975389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081131", + "1483081132", + "1483081178", + "1483081131", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975391", + "975391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081132", + "1483081135", + "1483081187", + "1483081132", + "1", + "8", + "0", + "-1", + "52", + "3", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975397", + "975397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081145", + "1483081147", + "1483081193", + "1483081145", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975403", + "975403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081178", + "1483081179", + "1483081217", + "1483081178", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975405", + "975405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081184", + "1483081185", + "1483081225", + "1483081184", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975411", + "975411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081193", + "1483081194", + "1483081237", + "1483081193", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975421", + "975421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081225", + "1483081226", + "1483081271", + "1483081225", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975440", + "975440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081271", + "1483081273", + "1483081395", + "1483081271", + "1", + "8", + "0", + "-1", + "122", + "2", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975452", + "975452", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081325", + "1483081326", + "1483081387", + "1483081325", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975454", + "975454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081326", + "1483081329", + "1483081383", + "1483081326", + "1", + "8", + "0", + "-1", + "54", + "3", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975456", + "975456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081337", + "1483081338", + "1483081391", + "1483081337", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975458", + "975458", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081346", + "1483081347", + "1483081388", + "1483081346", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975462", + "975462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081380", + "1483081381", + "1483081442", + "1483081380", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975464", + "975464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081383", + "1483081384", + "1483081450", + "1483081383", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975472", + "975472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081392", + "1483081394", + "1483081451", + "1483081392", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975474", + "975474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081395", + "1483081397", + "1483081448", + "1483081395", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975478", + "975478", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081442", + "1483081443", + "1483081495", + "1483081442", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975480", + "975480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081444", + "1483081445", + "1483081525", + "1483081444", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975486", + "975486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081450", + "1483081451", + "1483081621", + "1483081450", + "1", + "8", + "0", + "-1", + "170", + "1", + "1360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975488", + "975488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081451", + "1483081452", + "1483081553", + "1483081451", + "1", + "8", + "0", + "-1", + "101", + "1", + "808", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975492", + "975492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081496", + "1483081498", + "1483081582", + "1483081496", + "1", + "8", + "0", + "-1", + "84", + "2", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975502", + "975502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081537", + "1483081538", + "1483081575", + "1483081537", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975506", + "975506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081553", + "1483081554", + "1483081599", + "1483081553", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975511", + "975511", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081556", + "1483081558", + "1483081590", + "1483081556", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975525", + "975525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081602", + "1483081603", + "1483081637", + "1483081602", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975531", + "975531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081621", + "1483081622", + "1483081725", + "1483081621", + "1", + "8", + "0", + "-1", + "103", + "1", + "824", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975533", + "975533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081622", + "1483081624", + "1483081659", + "1483081622", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975543", + "975543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081667", + "1483081668", + "1483081698", + "1483081667", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975547", + "975547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081674", + "1483081675", + "1483081711", + "1483081674", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975554", + "975554", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081698", + "1483081699", + "1483081732", + "1483081698", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975556", + "975556", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081700", + "1483081702", + "1483081737", + "1483081700", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975558", + "975558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081703", + "1483081705", + "1483081739", + "1483081703", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975570", + "975570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081735", + "1483081738", + "1483081782", + "1483081735", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975572", + "975572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081738", + "1483081739", + "1483081797", + "1483081738", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975576", + "975576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081744", + "1483081745", + "1483081855", + "1483081744", + "1", + "8", + "0", + "-1", + "110", + "1", + "880", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975582", + "975582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081753", + "1483081756", + "1483081787", + "1483081753", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975584", + "975584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081768", + "1483081769", + "1483081804", + "1483081768", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975588", + "975588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081783", + "1483081786", + "1483081822", + "1483081783", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975590", + "975590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081787", + "1483081789", + "1483081824", + "1483081787", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975596", + "975596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081816", + "1483081817", + "1483081849", + "1483081816", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975598", + "975598", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081820", + "1483081821", + "1483081860", + "1483081820", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975600", + "975600", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081821", + "1483081822", + "1483081861", + "1483081821", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975604", + "975604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081824", + "1483081827", + "1483081857", + "1483081824", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975618", + "975618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081861", + "1483081864", + "1483081909", + "1483081861", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975622", + "975622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081877", + "1483081878", + "1483081994", + "1483081877", + "1", + "8", + "0", + "-1", + "116", + "1", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975626", + "975626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081880", + "1483081881", + "1483081925", + "1483081880", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975634", + "975634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081911", + "1483081912", + "1483081946", + "1483081911", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975638", + "975638", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081917", + "1483081918", + "1483081951", + "1483081917", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975642", + "975642", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081934", + "1483081935", + "1483081976", + "1483081934", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975646", + "975646", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081941", + "1483081942", + "1483081978", + "1483081941", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975650", + "975650", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081946", + "1483081948", + "1483081981", + "1483081946", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975662", + "975662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081982", + "1483081984", + "1483082019", + "1483081982", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975668", + "975668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483081995", + "1483081996", + "1483082110", + "1483081995", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975680", + "975680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082028", + "1483082029", + "1483082063", + "1483082028", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975708", + "975708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082093", + "1483082094", + "1483082127", + "1483082093", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975710", + "975710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082097", + "1483082098", + "1483082136", + "1483082097", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975712", + "975712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082101", + "1483082102", + "1483082141", + "1483082101", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975714", + "975714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082105", + "1483082106", + "1483082201", + "1483082105", + "1", + "8", + "0", + "-1", + "95", + "1", + "760", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975716", + "975716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082111", + "1483082112", + "1483082144", + "1483082111", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975718", + "975718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082114", + "1483082115", + "1483082149", + "1483082114", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975724", + "975724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082137", + "1483082138", + "1483082181", + "1483082137", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975728", + "975728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082145", + "1483082146", + "1483082178", + "1483082145", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975732", + "975732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082165", + "1483082166", + "1483082200", + "1483082165", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975734", + "975734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082178", + "1483082179", + "1483082236", + "1483082178", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975736", + "975736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082179", + "1483082181", + "1483082217", + "1483082179", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975738", + "975738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082181", + "1483082182", + "1483082236", + "1483082181", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975752", + "975752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082236", + "1483082237", + "1483082271", + "1483082236", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975762", + "975762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082256", + "1483082259", + "1483082299", + "1483082256", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975764", + "975764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082271", + "1483082272", + "1483082350", + "1483082271", + "1", + "8", + "0", + "-1", + "78", + "1", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975766", + "975766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082279", + "1483082280", + "1483082317", + "1483082279", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975771", + "975771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082297", + "1483082298", + "1483082344", + "1483082297", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975773", + "975773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082300", + "1483082301", + "1483082347", + "1483082300", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975775", + "975775", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082317", + "1483082318", + "1483082352", + "1483082317", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975783", + "975783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082346", + "1483082348", + "1483082397", + "1483082346", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975787", + "975787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082350", + "1483082351", + "1483082394", + "1483082350", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975792", + "975792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082352", + "1483082354", + "1483082384", + "1483082352", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975796", + "975796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082385", + "1483082386", + "1483082419", + "1483082385", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975798", + "975798", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082388", + "1483082389", + "1483082456", + "1483082388", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975802", + "975802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082395", + "1483082397", + "1483082464", + "1483082395", + "1", + "8", + "0", + "-1", + "67", + "2", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975808", + "975808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082412", + "1483082413", + "1483082497", + "1483082412", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975810", + "975810", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082414", + "1483082416", + "1483082455", + "1483082414", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975812", + "975812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082419", + "1483082420", + "1483082459", + "1483082419", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975818", + "975818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082456", + "1483082457", + "1483082517", + "1483082456", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975822", + "975822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082460", + "1483082461", + "1483082492", + "1483082460", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975826", + "975826", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082488", + "1483082489", + "1483082540", + "1483082488", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975832", + "975832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082498", + "1483082499", + "1483082532", + "1483082498", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975838", + "975838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082533", + "1483082534", + "1483082584", + "1483082533", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975840", + "975840", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082536", + "1483082537", + "1483082567", + "1483082536", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975844", + "975844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082541", + "1483082542", + "1483082582", + "1483082541", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975846", + "975846", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082544", + "1483082545", + "1483082596", + "1483082544", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975848", + "975848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082558", + "1483082559", + "1483082630", + "1483082558", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975850", + "975850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082568", + "1483082569", + "1483082721", + "1483082568", + "1", + "8", + "0", + "-1", + "152", + "1", + "1216", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975852", + "975852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082570", + "1483082572", + "1483082628", + "1483082570", + "1", + "8", + "0", + "-1", + "56", + "2", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975856", + "975856", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082585", + "1483082586", + "1483082624", + "1483082585", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975862", + "975862", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082624", + "1483082627", + "1483082753", + "1483082624", + "1", + "8", + "0", + "-1", + "126", + "3", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975866", + "975866", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082631", + "1483082633", + "1483082749", + "1483082631", + "1", + "8", + "0", + "-1", + "116", + "2", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975877", + "975877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082725", + "1483082728", + "1483082800", + "1483082725", + "1", + "8", + "0", + "-1", + "72", + "3", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975895", + "975895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082838", + "1483082839", + "1483083037", + "1483082838", + "1", + "8", + "0", + "-1", + "198", + "1", + "1584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975897", + "975897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082841", + "1483082842", + "1483082895", + "1483082841", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975899", + "975899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082856", + "1483082857", + "1483083015", + "1483082856", + "1", + "8", + "0", + "-1", + "158", + "1", + "1264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975901", + "975901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082868", + "1483082869", + "1483082955", + "1483082868", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975925", + "975925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483082981", + "1483082982", + "1483083023", + "1483082981", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975935", + "975935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083016", + "1483083017", + "1483083101", + "1483083016", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975941", + "975941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083026", + "1483083027", + "1483083188", + "1483083026", + "1", + "8", + "0", + "-1", + "161", + "1", + "1288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975945", + "975945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083037", + "1483083039", + "1483083123", + "1483083037", + "1", + "8", + "0", + "-1", + "84", + "2", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975947", + "975947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083053", + "1483083054", + "1483083119", + "1483083053", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975949", + "975949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083080", + "1483083081", + "1483083124", + "1483083080", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975953", + "975953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083101", + "1483083102", + "1483083144", + "1483083101", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975959", + "975959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083119", + "1483083120", + "1483083151", + "1483083119", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975961", + "975961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083123", + "1483083124", + "1483083193", + "1483083123", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975963", + "975963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083125", + "1483083126", + "1483083174", + "1483083125", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975971", + "975971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083141", + "1483083142", + "1483083174", + "1483083141", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975973", + "975973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083144", + "1483083145", + "1483083176", + "1483083144", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975975", + "975975", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083151", + "1483083152", + "1483083190", + "1483083151", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975984", + "975984", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083177", + "1483083178", + "1483083243", + "1483083177", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975988", + "975988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083190", + "1483083192", + "1483083251", + "1483083190", + "1", + "8", + "0", + "-1", + "59", + "2", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975990", + "975990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083194", + "1483083195", + "1483083237", + "1483083194", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975996", + "975996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083237", + "1483083238", + "1483083301", + "1483083237", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "975998", + "975998", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083244", + "1483083245", + "1483083307", + "1483083244", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976002", + "976002", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083251", + "1483083252", + "1483083309", + "1483083251", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976014", + "976014", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083302", + "1483083305", + "1483083368", + "1483083302", + "1", + "8", + "0", + "-1", + "63", + "3", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976018", + "976018", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083309", + "1483083311", + "1483083357", + "1483083309", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976020", + "976020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083344", + "1483083345", + "1483083381", + "1483083344", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976022", + "976022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083350", + "1483083351", + "1483083386", + "1483083350", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976025", + "976025", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083351", + "1483083354", + "1483083429", + "1483083351", + "1", + "8", + "0", + "-1", + "75", + "3", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976031", + "976031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083365", + "1483083367", + "1483083518", + "1483083365", + "1", + "8", + "0", + "-1", + "151", + "2", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976033", + "976033", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083369", + "1483083370", + "1483083446", + "1483083369", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976075", + "976075", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083485", + "1483083486", + "1483083549", + "1483083485", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976118", + "976118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083581", + "1483083584", + "1483083645", + "1483083581", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976120", + "976120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083584", + "1483083587", + "1483083619", + "1483083584", + "1", + "8", + "0", + "-1", + "32", + "3", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976122", + "976122", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083592", + "1483083593", + "1483083624", + "1483083592", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976126", + "976126", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083604", + "1483083606", + "1483083640", + "1483083604", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976160", + "976160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083672", + "1483083673", + "1483083739", + "1483083672", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976162", + "976162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083674", + "1483083676", + "1483083712", + "1483083674", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976164", + "976164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083677", + "1483083679", + "1483083715", + "1483083677", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976200", + "976200", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083761", + "1483083762", + "1483083797", + "1483083761", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976204", + "976204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083769", + "1483083770", + "1483083806", + "1483083769", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976236", + "976236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083838", + "1483083841", + "1483083910", + "1483083838", + "1", + "8", + "0", + "-1", + "69", + "3", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976238", + "976238", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083842", + "1483083843", + "1483083875", + "1483083842", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976272", + "976272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083905", + "1483083907", + "1483083969", + "1483083905", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976276", + "976276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083909", + "1483083910", + "1483083942", + "1483083909", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976302", + "976302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083965", + "1483083968", + "1483084028", + "1483083965", + "1", + "8", + "0", + "-1", + "60", + "3", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976308", + "976308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483083978", + "1483083979", + "1483084021", + "1483083978", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976338", + "976338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084064", + "1483084065", + "1483084186", + "1483084064", + "1", + "8", + "0", + "-1", + "121", + "1", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976340", + "976340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084066", + "1483084068", + "1483084105", + "1483084066", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976344", + "976344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084073", + "1483084074", + "1483084104", + "1483084073", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976367", + "976367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084129", + "1483084132", + "1483084248", + "1483084129", + "1", + "8", + "0", + "-1", + "116", + "3", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976369", + "976369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084132", + "1483084133", + "1483084165", + "1483084132", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976399", + "976399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084201", + "1483084202", + "1483084238", + "1483084201", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976401", + "976401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084206", + "1483084207", + "1483084253", + "1483084206", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976403", + "976403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084214", + "1483084215", + "1483084251", + "1483084214", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976405", + "976405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084220", + "1483084221", + "1483084259", + "1483084220", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976407", + "976407", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084221", + "1483084224", + "1483084279", + "1483084221", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976411", + "976411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084238", + "1483084239", + "1483084287", + "1483084238", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976415", + "976415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084251", + "1483084252", + "1483084328", + "1483084251", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976417", + "976417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084253", + "1483084255", + "1483084343", + "1483084253", + "1", + "8", + "0", + "-1", + "88", + "2", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976421", + "976421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084279", + "1483084280", + "1483084445", + "1483084279", + "1", + "8", + "0", + "-1", + "165", + "1", + "1320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976425", + "976425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084289", + "1483084291", + "1483084387", + "1483084289", + "1", + "8", + "0", + "-1", + "96", + "2", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976445", + "976445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084385", + "1483084386", + "1483084470", + "1483084385", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976447", + "976447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084387", + "1483084389", + "1483084424", + "1483084387", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976469", + "976469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084446", + "1483084447", + "1483084479", + "1483084446", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976485", + "976485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084484", + "1483084485", + "1483084515", + "1483084484", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976487", + "976487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084485", + "1483084486", + "1483084569", + "1483084485", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976491", + "976491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084497", + "1483084498", + "1483084533", + "1483084497", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976493", + "976493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084503", + "1483084504", + "1483084546", + "1483084503", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976507", + "976507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084542", + "1483084543", + "1483084575", + "1483084542", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976529", + "976529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084590", + "1483084591", + "1483084624", + "1483084590", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976531", + "976531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084595", + "1483084596", + "1483084635", + "1483084595", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976535", + "976535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084607", + "1483084608", + "1483084738", + "1483084607", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976539", + "976539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084624", + "1483084625", + "1483084660", + "1483084624", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976545", + "976545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084629", + "1483084631", + "1483084667", + "1483084629", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976551", + "976551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084660", + "1483084661", + "1483084718", + "1483084660", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976555", + "976555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084668", + "1483084669", + "1483084702", + "1483084668", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976563", + "976563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084705", + "1483084706", + "1483084783", + "1483084705", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976565", + "976565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084718", + "1483084719", + "1483084961", + "1483084718", + "1", + "8", + "0", + "-1", + "242", + "1", + "1936", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976571", + "976571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084748", + "1483084749", + "1483084841", + "1483084748", + "1", + "8", + "0", + "-1", + "92", + "1", + "736", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976579", + "976579", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084832", + "1483084833", + "1483084878", + "1483084832", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976611", + "976611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084925", + "1483084926", + "1483084959", + "1483084925", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976613", + "976613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084931", + "1483084932", + "1483084972", + "1483084931", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976615", + "976615", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084940", + "1483084941", + "1483084982", + "1483084940", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976617", + "976617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084941", + "1483084943", + "1483084992", + "1483084941", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976623", + "976623", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084962", + "1483084963", + "1483085039", + "1483084962", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976625", + "976625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084972", + "1483084973", + "1483085026", + "1483084972", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976627", + "976627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084974", + "1483084975", + "1483085044", + "1483084974", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976629", + "976629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483084983", + "1483084984", + "1483085015", + "1483084983", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976662", + "976662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085064", + "1483085066", + "1483085122", + "1483085064", + "1", + "8", + "0", + "-1", + "56", + "2", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976666", + "976666", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085067", + "1483085068", + "1483085098", + "1483085067", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976668", + "976668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085068", + "1483085069", + "1483085138", + "1483085068", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976674", + "976674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085097", + "1483085098", + "1483085130", + "1483085097", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976704", + "976704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085163", + "1483085164", + "1483085194", + "1483085163", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976706", + "976706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085170", + "1483085171", + "1483085212", + "1483085170", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976708", + "976708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085173", + "1483085174", + "1483085204", + "1483085173", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976714", + "976714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085185", + "1483085186", + "1483085252", + "1483085185", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976716", + "976716", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085195", + "1483085196", + "1483085238", + "1483085195", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976718", + "976718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085205", + "1483085206", + "1483085245", + "1483085205", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976720", + "976720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085208", + "1483085209", + "1483085244", + "1483085208", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976724", + "976724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085213", + "1483085215", + "1483085250", + "1483085213", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976726", + "976726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085237", + "1483085238", + "1483085269", + "1483085237", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976750", + "976750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085282", + "1483085285", + "1483085315", + "1483085282", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976756", + "976756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085303", + "1483085304", + "1483085341", + "1483085303", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976760", + "976760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085305", + "1483085307", + "1483085405", + "1483085305", + "1", + "8", + "0", + "-1", + "98", + "2", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976762", + "976762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085315", + "1483085316", + "1483085357", + "1483085315", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976764", + "976764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085326", + "1483085327", + "1483085396", + "1483085326", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976766", + "976766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085339", + "1483085340", + "1483085378", + "1483085339", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976805", + "976805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085426", + "1483085427", + "1483085496", + "1483085426", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976811", + "976811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085440", + "1483085441", + "1483085477", + "1483085440", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976844", + "976844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085498", + "1483085500", + "1483085548", + "1483085498", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976850", + "976850", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085510", + "1483085511", + "1483085572", + "1483085510", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976852", + "976852", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085513", + "1483085514", + "1483085549", + "1483085513", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976854", + "976854", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085514", + "1483085515", + "1483085569", + "1483085514", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976868", + "976868", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085569", + "1483085570", + "1483085611", + "1483085569", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976880", + "976880", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085585", + "1483085586", + "1483085624", + "1483085585", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976886", + "976886", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085604", + "1483085606", + "1483085649", + "1483085604", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976890", + "976890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085611", + "1483085612", + "1483085672", + "1483085611", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976894", + "976894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085627", + "1483085628", + "1483085662", + "1483085627", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976896", + "976896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085633", + "1483085634", + "1483085717", + "1483085633", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976925", + "976925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085701", + "1483085703", + "1483085735", + "1483085701", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976931", + "976931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085713", + "1483085714", + "1483085751", + "1483085713", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976935", + "976935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085718", + "1483085720", + "1483085752", + "1483085718", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976945", + "976945", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085752", + "1483085753", + "1483085806", + "1483085752", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976959", + "976959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085792", + "1483085793", + "1483085823", + "1483085792", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976977", + "976977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085824", + "1483085826", + "1483085868", + "1483085824", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976979", + "976979", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085834", + "1483085835", + "1483085874", + "1483085834", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976983", + "976983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085846", + "1483085847", + "1483085880", + "1483085846", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976985", + "976985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085847", + "1483085850", + "1483085883", + "1483085847", + "1", + "8", + "0", + "-1", + "33", + "3", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976993", + "976993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085875", + "1483085878", + "1483085912", + "1483085875", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976997", + "976997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085883", + "1483085884", + "1483085915", + "1483085883", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "976999", + "976999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085894", + "1483085895", + "1483085945", + "1483085894", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977009", + "977009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085916", + "1483085917", + "1483085962", + "1483085916", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977011", + "977011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085918", + "1483085920", + "1483085952", + "1483085918", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977013", + "977013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085928", + "1483085929", + "1483085977", + "1483085928", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977027", + "977027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085969", + "1483085971", + "1483086033", + "1483085969", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977029", + "977029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085971", + "1483085974", + "1483086044", + "1483085971", + "1", + "8", + "0", + "-1", + "70", + "3", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977031", + "977031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085977", + "1483085978", + "1483086031", + "1483085977", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977036", + "977036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483085979", + "1483085981", + "1483086024", + "1483085979", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977050", + "977050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086034", + "1483086035", + "1483086090", + "1483086034", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977054", + "977054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086056", + "1483086058", + "1483086096", + "1483086056", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977058", + "977058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086075", + "1483086076", + "1483086137", + "1483086075", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977060", + "977060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086083", + "1483086084", + "1483086141", + "1483086083", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977064", + "977064", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086090", + "1483086091", + "1483086154", + "1483086090", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977076", + "977076", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086145", + "1483086146", + "1483086240", + "1483086145", + "1", + "8", + "0", + "-1", + "94", + "1", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977078", + "977078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086149", + "1483086150", + "1483086327", + "1483086149", + "1", + "8", + "0", + "-1", + "177", + "1", + "1416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977080", + "977080", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086155", + "1483086156", + "1483086262", + "1483086155", + "1", + "8", + "0", + "-1", + "106", + "1", + "848", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977082", + "977082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086160", + "1483086161", + "1483086260", + "1483086160", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977084", + "977084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086189", + "1483086190", + "1483086278", + "1483086189", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977096", + "977096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086261", + "1483086262", + "1483086298", + "1483086261", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977113", + "977113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086296", + "1483086298", + "1483086333", + "1483086296", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977115", + "977115", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086298", + "1483086301", + "1483086341", + "1483086298", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977124", + "977124", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086309", + "1483086312", + "1483086347", + "1483086309", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977169", + "977169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086413", + "1483086415", + "1483086454", + "1483086413", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977172", + "977172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086414", + "1483086415", + "1483086447", + "1483086414", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977206", + "977206", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086506", + "1483086507", + "1483086554", + "1483086506", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977213", + "977213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086514", + "1483086515", + "1483086548", + "1483086514", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977215", + "977215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086518", + "1483086519", + "1483086551", + "1483086518", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977217", + "977217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086528", + "1483086529", + "1483086561", + "1483086528", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977257", + "977257", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086613", + "1483086614", + "1483086680", + "1483086613", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977259", + "977259", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086614", + "1483086615", + "1483086649", + "1483086614", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977302", + "977302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086694", + "1483086695", + "1483086758", + "1483086694", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977314", + "977314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086721", + "1483086722", + "1483086758", + "1483086721", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977324", + "977324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086747", + "1483086749", + "1483086781", + "1483086747", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977340", + "977340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086788", + "1483086789", + "1483086826", + "1483086788", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977342", + "977342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086789", + "1483086790", + "1483086824", + "1483086789", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977344", + "977344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086790", + "1483086792", + "1483086839", + "1483086790", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977346", + "977346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086797", + "1483086798", + "1483086836", + "1483086797", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977348", + "977348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086806", + "1483086807", + "1483086895", + "1483086806", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977350", + "977350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086808", + "1483086810", + "1483086865", + "1483086808", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977352", + "977352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086825", + "1483086826", + "1483086906", + "1483086825", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977354", + "977354", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086826", + "1483086829", + "1483086868", + "1483086826", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977358", + "977358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086836", + "1483086838", + "1483086868", + "1483086836", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977360", + "977360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086840", + "1483086841", + "1483086882", + "1483086840", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977366", + "977366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086869", + "1483086871", + "1483086901", + "1483086869", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977369", + "977369", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086870", + "1483086871", + "1483086905", + "1483086870", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977375", + "977375", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086895", + "1483086898", + "1483086929", + "1483086895", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977378", + "977378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086896", + "1483086898", + "1483086931", + "1483086896", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977380", + "977380", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086902", + "1483086903", + "1483086955", + "1483086902", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977384", + "977384", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086906", + "1483086909", + "1483086956", + "1483086906", + "1", + "8", + "0", + "-1", + "47", + "3", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977386", + "977386", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086916", + "1483086917", + "1483086973", + "1483086916", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977388", + "977388", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086929", + "1483086930", + "1483086973", + "1483086929", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977390", + "977390", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086932", + "1483086933", + "1483086973", + "1483086932", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977396", + "977396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086957", + "1483086958", + "1483087008", + "1483086957", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977398", + "977398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086963", + "1483086964", + "1483087008", + "1483086963", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977403", + "977403", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086974", + "1483086977", + "1483087008", + "1483086974", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977405", + "977405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483086975", + "1483086977", + "1483087009", + "1483086975", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977413", + "977413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087008", + "1483087009", + "1483087047", + "1483087008", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977420", + "977420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087009", + "1483087012", + "1483087052", + "1483087009", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977424", + "977424", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087041", + "1483087042", + "1483087075", + "1483087041", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977430", + "977430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087047", + "1483087048", + "1483087125", + "1483087047", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977432", + "977432", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087052", + "1483087053", + "1483087096", + "1483087052", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977434", + "977434", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087055", + "1483087056", + "1483087097", + "1483087055", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977442", + "977442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087076", + "1483087077", + "1483087122", + "1483087076", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977448", + "977448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087096", + "1483087097", + "1483087170", + "1483087096", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977450", + "977450", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087098", + "1483087100", + "1483087162", + "1483087098", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977454", + "977454", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087126", + "1483087127", + "1483087241", + "1483087126", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977456", + "977456", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087129", + "1483087130", + "1483087203", + "1483087129", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977462", + "977462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087150", + "1483087152", + "1483087221", + "1483087150", + "1", + "8", + "0", + "-1", + "69", + "2", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977464", + "977464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087163", + "1483087164", + "1483087229", + "1483087163", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977466", + "977466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087170", + "1483087171", + "1483087296", + "1483087170", + "1", + "8", + "0", + "-1", + "125", + "1", + "1000", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977470", + "977470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087184", + "1483087185", + "1483087300", + "1483087184", + "1", + "8", + "0", + "-1", + "115", + "1", + "920", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977472", + "977472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087204", + "1483087205", + "1483087276", + "1483087204", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977480", + "977480", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087230", + "1483087231", + "1483087316", + "1483087230", + "1", + "8", + "0", + "-1", + "85", + "1", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977488", + "977488", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087276", + "1483087277", + "1483087364", + "1483087276", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977492", + "977492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087300", + "1483087301", + "1483087339", + "1483087300", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977494", + "977494", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087317", + "1483087318", + "1483087354", + "1483087317", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977498", + "977498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087342", + "1483087343", + "1483087377", + "1483087342", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977502", + "977502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087348", + "1483087351", + "1483087395", + "1483087348", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977508", + "977508", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087364", + "1483087365", + "1483087414", + "1483087364", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977510", + "977510", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087375", + "1483087378", + "1483087414", + "1483087375", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977516", + "977516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087395", + "1483087396", + "1483087429", + "1483087395", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977518", + "977518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087397", + "1483087399", + "1483087435", + "1483087397", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977522", + "977522", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087414", + "1483087415", + "1483087459", + "1483087414", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977530", + "977530", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087436", + "1483087438", + "1483087500", + "1483087436", + "1", + "8", + "0", + "-1", + "62", + "2", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977536", + "977536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087464", + "1483087465", + "1483087509", + "1483087464", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977540", + "977540", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087474", + "1483087476", + "1483087516", + "1483087474", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977553", + "977553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087500", + "1483087502", + "1483087552", + "1483087500", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977555", + "977555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087509", + "1483087510", + "1483087554", + "1483087509", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977557", + "977557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087517", + "1483087518", + "1483087568", + "1483087517", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977559", + "977559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087519", + "1483087521", + "1483087569", + "1483087519", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977561", + "977561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087525", + "1483087526", + "1483087562", + "1483087525", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977565", + "977565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087553", + "1483087554", + "1483087588", + "1483087553", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977569", + "977569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087563", + "1483087564", + "1483087630", + "1483087563", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977571", + "977571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087568", + "1483087569", + "1483087615", + "1483087568", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977581", + "977581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087589", + "1483087590", + "1483087628", + "1483087589", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977583", + "977583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087598", + "1483087599", + "1483087634", + "1483087598", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977585", + "977585", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087616", + "1483087618", + "1483087659", + "1483087616", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977587", + "977587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087625", + "1483087626", + "1483087658", + "1483087625", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977591", + "977591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087629", + "1483087631", + "1483087686", + "1483087629", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977595", + "977595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087634", + "1483087635", + "1483087681", + "1483087634", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977599", + "977599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087658", + "1483087659", + "1483087697", + "1483087658", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977601", + "977601", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087660", + "1483087662", + "1483087695", + "1483087660", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977605", + "977605", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087681", + "1483087682", + "1483087744", + "1483087681", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977611", + "977611", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087698", + "1483087699", + "1483087759", + "1483087698", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977617", + "977617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087740", + "1483087741", + "1483087794", + "1483087740", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977619", + "977619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087744", + "1483087745", + "1483087831", + "1483087744", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977621", + "977621", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087754", + "1483087755", + "1483087838", + "1483087754", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977636", + "977636", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087832", + "1483087835", + "1483087865", + "1483087832", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977656", + "977656", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087868", + "1483087869", + "1483087900", + "1483087868", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977658", + "977658", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087871", + "1483087872", + "1483087910", + "1483087871", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977660", + "977660", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087874", + "1483087875", + "1483087907", + "1483087874", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977662", + "977662", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087878", + "1483087879", + "1483087911", + "1483087878", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977664", + "977664", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087884", + "1483087885", + "1483087952", + "1483087884", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977668", + "977668", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087901", + "1483087902", + "1483087948", + "1483087901", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977670", + "977670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087908", + "1483087909", + "1483087948", + "1483087908", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977703", + "977703", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087978", + "1483087981", + "1483088016", + "1483087978", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977705", + "977705", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087982", + "1483087984", + "1483088016", + "1483087982", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977707", + "977707", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483087985", + "1483087987", + "1483088018", + "1483087985", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977713", + "977713", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088000", + "1483088001", + "1483088042", + "1483088000", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977726", + "977726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088019", + "1483088021", + "1483088063", + "1483088019", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977746", + "977746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088077", + "1483088078", + "1483088115", + "1483088077", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977750", + "977750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088092", + "1483088095", + "1483088129", + "1483088092", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977753", + "977753", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088093", + "1483088095", + "1483088180", + "1483088093", + "1", + "8", + "0", + "-1", + "85", + "2", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977757", + "977757", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088100", + "1483088101", + "1483088175", + "1483088100", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977759", + "977759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088115", + "1483088116", + "1483088150", + "1483088115", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977767", + "977767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088138", + "1483088141", + "1483088175", + "1483088138", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977773", + "977773", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088159", + "1483088161", + "1483088194", + "1483088159", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977781", + "977781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088178", + "1483088179", + "1483088214", + "1483088178", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977783", + "977783", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088180", + "1483088182", + "1483088216", + "1483088180", + "1", + "8", + "0", + "-1", + "34", + "2", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977793", + "977793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088217", + "1483088218", + "1483088259", + "1483088217", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977797", + "977797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088222", + "1483088223", + "1483088264", + "1483088222", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977799", + "977799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088234", + "1483088235", + "1483088331", + "1483088234", + "1", + "8", + "0", + "-1", + "96", + "1", + "768", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977801", + "977801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088249", + "1483088250", + "1483088297", + "1483088249", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977803", + "977803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088260", + "1483088261", + "1483088327", + "1483088260", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977805", + "977805", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088262", + "1483088264", + "1483088299", + "1483088262", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977837", + "977837", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088343", + "1483088346", + "1483088385", + "1483088343", + "1", + "8", + "0", + "-1", + "39", + "3", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977843", + "977843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088353", + "1483088354", + "1483088385", + "1483088353", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977847", + "977847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088359", + "1483088360", + "1483088399", + "1483088359", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977849", + "977849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088363", + "1483088364", + "1483088406", + "1483088363", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977851", + "977851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088380", + "1483088381", + "1483088411", + "1483088380", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977890", + "977890", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088447", + "1483088448", + "1483088528", + "1483088447", + "1", + "8", + "0", + "-1", + "80", + "1", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977892", + "977892", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088449", + "1483088451", + "1483088512", + "1483088449", + "1", + "8", + "0", + "-1", + "61", + "2", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977894", + "977894", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088453", + "1483088454", + "1483088503", + "1483088453", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977896", + "977896", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088465", + "1483088466", + "1483088496", + "1483088465", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977908", + "977908", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088503", + "1483088504", + "1483088541", + "1483088503", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977920", + "977920", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088528", + "1483088529", + "1483088563", + "1483088528", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977926", + "977926", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088542", + "1483088544", + "1483088591", + "1483088542", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977928", + "977928", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088551", + "1483088552", + "1483088600", + "1483088551", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977930", + "977930", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088554", + "1483088555", + "1483088621", + "1483088554", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977932", + "977932", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088564", + "1483088565", + "1483088603", + "1483088564", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977934", + "977934", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088565", + "1483088568", + "1483088604", + "1483088565", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977936", + "977936", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088570", + "1483088571", + "1483088644", + "1483088570", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977938", + "977938", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088592", + "1483088593", + "1483088677", + "1483088592", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977940", + "977940", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088601", + "1483088602", + "1483088656", + "1483088601", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977942", + "977942", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088604", + "1483088605", + "1483088644", + "1483088604", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977954", + "977954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088648", + "1483088651", + "1483088681", + "1483088648", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977958", + "977958", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088658", + "1483088660", + "1483088690", + "1483088658", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977966", + "977966", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088678", + "1483088679", + "1483088710", + "1483088678", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977970", + "977970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088686", + "1483088687", + "1483088718", + "1483088686", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977972", + "977972", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088691", + "1483088692", + "1483088733", + "1483088691", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977978", + "977978", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088706", + "1483088709", + "1483088745", + "1483088706", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977980", + "977980", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088711", + "1483088712", + "1483088747", + "1483088711", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977982", + "977982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088718", + "1483088719", + "1483088794", + "1483088718", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "977988", + "977988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088748", + "1483088749", + "1483088783", + "1483088748", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978006", + "978006", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088807", + "1483088808", + "1483088840", + "1483088807", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978020", + "978020", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088840", + "1483088843", + "1483088892", + "1483088840", + "1", + "8", + "0", + "-1", + "49", + "3", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978022", + "978022", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088844", + "1483088846", + "1483088909", + "1483088844", + "1", + "8", + "0", + "-1", + "63", + "2", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978024", + "978024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088847", + "1483088849", + "1483088884", + "1483088847", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978026", + "978026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088850", + "1483088852", + "1483088890", + "1483088850", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978028", + "978028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088854", + "1483088855", + "1483088928", + "1483088854", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978036", + "978036", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088890", + "1483088891", + "1483088921", + "1483088890", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978038", + "978038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088893", + "1483088894", + "1483088934", + "1483088893", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978042", + "978042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088922", + "1483088923", + "1483088963", + "1483088922", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978048", + "978048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088935", + "1483088938", + "1483088976", + "1483088935", + "1", + "8", + "0", + "-1", + "38", + "3", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978052", + "978052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088954", + "1483088955", + "1483088997", + "1483088954", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978058", + "978058", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088962", + "1483088963", + "1483089015", + "1483088962", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978060", + "978060", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088963", + "1483088966", + "1483088998", + "1483088963", + "1", + "8", + "0", + "-1", + "32", + "3", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978066", + "978066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088977", + "1483088978", + "1483089027", + "1483088977", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978068", + "978068", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088997", + "1483088998", + "1483089041", + "1483088997", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978070", + "978070", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088998", + "1483088999", + "1483089061", + "1483088998", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978072", + "978072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483088999", + "1483089001", + "1483089075", + "1483088999", + "1", + "8", + "0", + "-1", + "74", + "2", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978074", + "978074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089011", + "1483089012", + "1483089154", + "1483089011", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978078", + "978078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089028", + "1483089029", + "1483089084", + "1483089028", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978082", + "978082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089062", + "1483089063", + "1483089117", + "1483089062", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978086", + "978086", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089076", + "1483089079", + "1483089150", + "1483089076", + "1", + "8", + "0", + "-1", + "71", + "3", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978088", + "978088", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089084", + "1483089085", + "1483089133", + "1483089084", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978096", + "978096", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089140", + "1483089141", + "1483089208", + "1483089140", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978098", + "978098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089150", + "1483089151", + "1483089227", + "1483089150", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978104", + "978104", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089161", + "1483089163", + "1483089233", + "1483089161", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978110", + "978110", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089209", + "1483089210", + "1483089270", + "1483089209", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978120", + "978120", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089234", + "1483089235", + "1483089428", + "1483089234", + "1", + "8", + "0", + "-1", + "193", + "1", + "1544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978138", + "978138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089320", + "1483089322", + "1483089361", + "1483089320", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978156", + "978156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089379", + "1483089380", + "1483089413", + "1483089379", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978160", + "978160", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089388", + "1483089389", + "1483089424", + "1483089388", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978164", + "978164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089389", + "1483089392", + "1483089422", + "1483089389", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978168", + "978168", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089413", + "1483089414", + "1483089460", + "1483089413", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978172", + "978172", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089423", + "1483089425", + "1483089457", + "1483089423", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978204", + "978204", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089501", + "1483089504", + "1483089545", + "1483089501", + "1", + "8", + "0", + "-1", + "41", + "3", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978208", + "978208", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089505", + "1483089506", + "1483089537", + "1483089505", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978210", + "978210", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089506", + "1483089507", + "1483089538", + "1483089506", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978218", + "978218", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089539", + "1483089541", + "1483089572", + "1483089539", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978232", + "978232", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089573", + "1483089574", + "1483089605", + "1483089573", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978236", + "978236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089591", + "1483089593", + "1483089625", + "1483089591", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978254", + "978254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089632", + "1483089633", + "1483089664", + "1483089632", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978256", + "978256", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089633", + "1483089634", + "1483089675", + "1483089633", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978258", + "978258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089645", + "1483089646", + "1483089733", + "1483089645", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978260", + "978260", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089647", + "1483089649", + "1483089694", + "1483089647", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978298", + "978298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089740", + "1483089742", + "1483089774", + "1483089740", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978304", + "978304", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089753", + "1483089756", + "1483089824", + "1483089753", + "1", + "8", + "0", + "-1", + "68", + "3", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978306", + "978306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089757", + "1483089759", + "1483089797", + "1483089757", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978308", + "978308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089761", + "1483089762", + "1483089797", + "1483089761", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978342", + "978342", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089832", + "1483089834", + "1483089886", + "1483089832", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978344", + "978344", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089838", + "1483089839", + "1483089869", + "1483089838", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978346", + "978346", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089839", + "1483089842", + "1483089872", + "1483089839", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978348", + "978348", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089844", + "1483089845", + "1483089911", + "1483089844", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978350", + "978350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089847", + "1483089848", + "1483089897", + "1483089847", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978352", + "978352", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089850", + "1483089851", + "1483089918", + "1483089850", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978360", + "978360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089897", + "1483089898", + "1483089930", + "1483089897", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978366", + "978366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089911", + "1483089913", + "1483089955", + "1483089911", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978370", + "978370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089920", + "1483089921", + "1483089956", + "1483089920", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978376", + "978376", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089933", + "1483089934", + "1483089965", + "1483089933", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978389", + "978389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089955", + "1483089956", + "1483089998", + "1483089955", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978391", + "978391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483089956", + "1483089958", + "1483090003", + "1483089956", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978404", + "978404", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090004", + "1483090005", + "1483090039", + "1483090004", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978406", + "978406", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090019", + "1483090020", + "1483090052", + "1483090019", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978412", + "978412", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090035", + "1483090037", + "1483090074", + "1483090035", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978416", + "978416", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090040", + "1483090043", + "1483090078", + "1483090040", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978420", + "978420", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090053", + "1483090054", + "1483090087", + "1483090053", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978428", + "978428", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090076", + "1483090078", + "1483090137", + "1483090076", + "1", + "8", + "0", + "-1", + "59", + "2", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978430", + "978430", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090079", + "1483090081", + "1483090126", + "1483090079", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978432", + "978432", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090084", + "1483090085", + "1483090159", + "1483090084", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978434", + "978434", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090085", + "1483090088", + "1483090134", + "1483090085", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978438", + "978438", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090095", + "1483090096", + "1483090129", + "1483090095", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978440", + "978440", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090096", + "1483090099", + "1483090155", + "1483090096", + "1", + "8", + "0", + "-1", + "56", + "3", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978442", + "978442", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090107", + "1483090108", + "1483090178", + "1483090107", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978444", + "978444", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090127", + "1483090128", + "1483090172", + "1483090127", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978460", + "978460", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090170", + "1483090171", + "1483090206", + "1483090170", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978462", + "978462", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090173", + "1483090174", + "1483090209", + "1483090173", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978465", + "978465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090173", + "1483090174", + "1483090210", + "1483090173", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978467", + "978467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090178", + "1483090179", + "1483090234", + "1483090178", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978469", + "978469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090196", + "1483090198", + "1483090240", + "1483090196", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978473", + "978473", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090208", + "1483090209", + "1483090239", + "1483090208", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978477", + "978477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090210", + "1483090213", + "1483090261", + "1483090210", + "1", + "8", + "0", + "-1", + "48", + "3", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978479", + "978479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090214", + "1483090216", + "1483090289", + "1483090214", + "1", + "8", + "0", + "-1", + "73", + "2", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978481", + "978481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090234", + "1483090235", + "1483090279", + "1483090234", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978483", + "978483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090240", + "1483090241", + "1483090339", + "1483090240", + "1", + "8", + "0", + "-1", + "98", + "1", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978493", + "978493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090280", + "1483090281", + "1483090355", + "1483090280", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978499", + "978499", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090317", + "1483090318", + "1483090446", + "1483090317", + "1", + "8", + "0", + "-1", + "128", + "1", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978509", + "978509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090358", + "1483090359", + "1483090428", + "1483090358", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978517", + "978517", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090430", + "1483090432", + "1483090553", + "1483090430", + "1", + "8", + "0", + "-1", + "121", + "2", + "968", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978521", + "978521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090447", + "1483090448", + "1483090574", + "1483090447", + "1", + "8", + "0", + "-1", + "126", + "1", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978523", + "978523", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090462", + "1483090463", + "1483090564", + "1483090462", + "1", + "8", + "0", + "-1", + "101", + "1", + "808", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978525", + "978525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090465", + "1483090466", + "1483090560", + "1483090465", + "1", + "8", + "0", + "-1", + "94", + "1", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978531", + "978531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090551", + "1483090552", + "1483090693", + "1483090551", + "1", + "8", + "0", + "-1", + "141", + "1", + "1128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978533", + "978533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090554", + "1483090555", + "1483090699", + "1483090554", + "1", + "8", + "0", + "-1", + "144", + "1", + "1152", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978535", + "978535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090560", + "1483090561", + "1483090645", + "1483090560", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978537", + "978537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090565", + "1483090566", + "1483090613", + "1483090565", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978543", + "978543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090603", + "1483090604", + "1483090649", + "1483090603", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978549", + "978549", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090620", + "1483090623", + "1483090684", + "1483090620", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978551", + "978551", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090646", + "1483090647", + "1483090689", + "1483090646", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978555", + "978555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090652", + "1483090653", + "1483090710", + "1483090652", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978559", + "978559", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090685", + "1483090686", + "1483090733", + "1483090685", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978561", + "978561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090689", + "1483090690", + "1483090737", + "1483090689", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978563", + "978563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090694", + "1483090695", + "1483090737", + "1483090694", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978565", + "978565", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090699", + "1483090700", + "1483090735", + "1483090699", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978570", + "978570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090710", + "1483090711", + "1483090765", + "1483090710", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978574", + "978574", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090736", + "1483090737", + "1483090851", + "1483090736", + "1", + "8", + "0", + "-1", + "114", + "1", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978576", + "978576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090737", + "1483090738", + "1483090795", + "1483090737", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978582", + "978582", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090765", + "1483090766", + "1483090802", + "1483090765", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978590", + "978590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090794", + "1483090795", + "1483090839", + "1483090794", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978592", + "978592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090796", + "1483090797", + "1483090837", + "1483090796", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978594", + "978594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090797", + "1483090798", + "1483090851", + "1483090797", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978596", + "978596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090800", + "1483090801", + "1483090838", + "1483090800", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978598", + "978598", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090803", + "1483090804", + "1483090843", + "1483090803", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978602", + "978602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090838", + "1483090839", + "1483090876", + "1483090838", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978604", + "978604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090839", + "1483090840", + "1483090894", + "1483090839", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978612", + "978612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090852", + "1483090855", + "1483090901", + "1483090852", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978614", + "978614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090877", + "1483090878", + "1483090934", + "1483090877", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978617", + "978617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090877", + "1483090878", + "1483090935", + "1483090877", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978619", + "978619", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090891", + "1483090892", + "1483090991", + "1483090891", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978625", + "978625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090897", + "1483090899", + "1483090954", + "1483090897", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978627", + "978627", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090901", + "1483090902", + "1483090953", + "1483090901", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978631", + "978631", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090934", + "1483090935", + "1483090981", + "1483090934", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978633", + "978633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090936", + "1483090938", + "1483090973", + "1483090936", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978637", + "978637", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090954", + "1483090955", + "1483091015", + "1483090954", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978641", + "978641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090974", + "1483090975", + "1483091026", + "1483090974", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978643", + "978643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090977", + "1483090978", + "1483091030", + "1483090977", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978647", + "978647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483090992", + "1483090993", + "1483091040", + "1483090992", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978655", + "978655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091031", + "1483091032", + "1483091086", + "1483091031", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978657", + "978657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091034", + "1483091035", + "1483091086", + "1483091034", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978671", + "978671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091086", + "1483091087", + "1483091181", + "1483091086", + "1", + "8", + "0", + "-1", + "94", + "1", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978676", + "978676", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091087", + "1483091090", + "1483091133", + "1483091087", + "1", + "8", + "0", + "-1", + "43", + "3", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978686", + "978686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091133", + "1483091134", + "1483091181", + "1483091133", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978704", + "978704", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091191", + "1483091192", + "1483091236", + "1483091191", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978706", + "978706", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091193", + "1483091195", + "1483091237", + "1483091193", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978708", + "978708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091200", + "1483091201", + "1483091245", + "1483091200", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978712", + "978712", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091203", + "1483091204", + "1483091237", + "1483091203", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978714", + "978714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091205", + "1483091207", + "1483091253", + "1483091205", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978722", + "978722", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091238", + "1483091240", + "1483091280", + "1483091238", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978730", + "978730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091267", + "1483091268", + "1483091299", + "1483091267", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978732", + "978732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091278", + "1483091279", + "1483091325", + "1483091278", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978734", + "978734", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091281", + "1483091282", + "1483091328", + "1483091281", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978737", + "978737", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091282", + "1483091285", + "1483091321", + "1483091282", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978751", + "978751", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091326", + "1483091327", + "1483091379", + "1483091326", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978758", + "978758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091328", + "1483091330", + "1483091374", + "1483091328", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978764", + "978764", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091342", + "1483091343", + "1483091373", + "1483091342", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978766", + "978766", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091355", + "1483091356", + "1483091393", + "1483091355", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978774", + "978774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091374", + "1483091377", + "1483091422", + "1483091374", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978776", + "978776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091377", + "1483091380", + "1483091423", + "1483091377", + "1", + "8", + "0", + "-1", + "43", + "3", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978778", + "978778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091380", + "1483091383", + "1483091417", + "1483091380", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978780", + "978780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091388", + "1483091389", + "1483091426", + "1483091388", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978782", + "978782", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091393", + "1483091394", + "1483091426", + "1483091393", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978789", + "978789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091418", + "1483091419", + "1483091450", + "1483091418", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978791", + "978791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091420", + "1483091422", + "1483091460", + "1483091420", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978793", + "978793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091423", + "1483091424", + "1483091477", + "1483091423", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978795", + "978795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091424", + "1483091425", + "1483091487", + "1483091424", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978799", + "978799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091427", + "1483091428", + "1483091497", + "1483091427", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978803", + "978803", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091460", + "1483091461", + "1483091526", + "1483091460", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978811", + "978811", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091487", + "1483091488", + "1483091525", + "1483091487", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978813", + "978813", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091494", + "1483091495", + "1483091527", + "1483091494", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978839", + "978839", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091563", + "1483091564", + "1483091617", + "1483091563", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978843", + "978843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091566", + "1483091567", + "1483091615", + "1483091566", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978853", + "978853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091618", + "1483091619", + "1483091658", + "1483091618", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978857", + "978857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091627", + "1483091628", + "1483091659", + "1483091627", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978861", + "978861", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091649", + "1483091650", + "1483091683", + "1483091649", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978865", + "978865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091658", + "1483091659", + "1483091693", + "1483091658", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978869", + "978869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091671", + "1483091672", + "1483091702", + "1483091671", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978871", + "978871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091679", + "1483091680", + "1483091712", + "1483091679", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978873", + "978873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091683", + "1483091684", + "1483091719", + "1483091683", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978887", + "978887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091714", + "1483091716", + "1483091771", + "1483091714", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978889", + "978889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091719", + "1483091720", + "1483091774", + "1483091719", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978891", + "978891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091720", + "1483091723", + "1483091839", + "1483091720", + "1", + "8", + "0", + "-1", + "116", + "3", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978893", + "978893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091727", + "1483091728", + "1483091761", + "1483091727", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978931", + "978931", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091825", + "1483091827", + "1483091864", + "1483091825", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978933", + "978933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091828", + "1483091830", + "1483091860", + "1483091828", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978935", + "978935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091836", + "1483091837", + "1483091873", + "1483091836", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978941", + "978941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091845", + "1483091846", + "1483091885", + "1483091845", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978949", + "978949", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091872", + "1483091873", + "1483091919", + "1483091872", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978963", + "978963", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091920", + "1483091922", + "1483091961", + "1483091920", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978973", + "978973", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091952", + "1483091954", + "1483091994", + "1483091952", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978977", + "978977", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091962", + "1483091963", + "1483092005", + "1483091962", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978981", + "978981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091976", + "1483091977", + "1483092014", + "1483091976", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978983", + "978983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091979", + "1483091980", + "1483092092", + "1483091979", + "1", + "8", + "0", + "-1", + "112", + "1", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978987", + "978987", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091990", + "1483091991", + "1483092029", + "1483091990", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978989", + "978989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483091994", + "1483091995", + "1483092043", + "1483091994", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978991", + "978991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092005", + "1483092006", + "1483092052", + "1483092005", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "978993", + "978993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092015", + "1483092016", + "1483092057", + "1483092015", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979003", + "979003", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092053", + "1483092054", + "1483092102", + "1483092053", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979005", + "979005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092056", + "1483092058", + "1483092102", + "1483092056", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979011", + "979011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092066", + "1483092067", + "1483092099", + "1483092066", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979024", + "979024", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092103", + "1483092106", + "1483092150", + "1483092103", + "1", + "8", + "0", + "-1", + "44", + "3", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979026", + "979026", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092108", + "1483092109", + "1483092153", + "1483092108", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979034", + "979034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092139", + "1483092140", + "1483092171", + "1483092139", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979038", + "979038", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092151", + "1483092153", + "1483092191", + "1483092151", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979040", + "979040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092154", + "1483092156", + "1483092201", + "1483092154", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979042", + "979042", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092167", + "1483092168", + "1483092201", + "1483092167", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979053", + "979053", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092203", + "1483092204", + "1483092237", + "1483092203", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979063", + "979063", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092237", + "1483092238", + "1483092269", + "1483092237", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979069", + "979069", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092242", + "1483092244", + "1483092309", + "1483092242", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979071", + "979071", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092244", + "1483092247", + "1483092307", + "1483092244", + "1", + "8", + "0", + "-1", + "60", + "3", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979081", + "979081", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092307", + "1483092308", + "1483092354", + "1483092307", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979083", + "979083", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092310", + "1483092311", + "1483092352", + "1483092310", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979089", + "979089", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092336", + "1483092337", + "1483092373", + "1483092336", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979101", + "979101", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092372", + "1483092373", + "1483092421", + "1483092372", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979103", + "979103", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092373", + "1483092376", + "1483092410", + "1483092373", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979111", + "979111", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092395", + "1483092396", + "1483092428", + "1483092395", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979113", + "979113", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092400", + "1483092401", + "1483092458", + "1483092400", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979121", + "979121", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092411", + "1483092413", + "1483092453", + "1483092411", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979125", + "979125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092428", + "1483092429", + "1483092465", + "1483092428", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979129", + "979129", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092453", + "1483092454", + "1483092516", + "1483092453", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979131", + "979131", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092455", + "1483092457", + "1483092518", + "1483092455", + "1", + "8", + "0", + "-1", + "61", + "2", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979133", + "979133", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092459", + "1483092460", + "1483092513", + "1483092459", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979137", + "979137", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092468", + "1483092469", + "1483092519", + "1483092468", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979146", + "979146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092511", + "1483092514", + "1483092572", + "1483092511", + "1", + "8", + "0", + "-1", + "58", + "3", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979150", + "979150", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092516", + "1483092517", + "1483092576", + "1483092516", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979154", + "979154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092519", + "1483092520", + "1483092571", + "1483092519", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979156", + "979156", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092519", + "1483092520", + "1483092574", + "1483092519", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979167", + "979167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092573", + "1483092574", + "1483092673", + "1483092573", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979169", + "979169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092574", + "1483092575", + "1483092659", + "1483092574", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979185", + "979185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092656", + "1483092658", + "1483092697", + "1483092656", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979191", + "979191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092674", + "1483092675", + "1483092705", + "1483092674", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979193", + "979193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092684", + "1483092685", + "1483092717", + "1483092684", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979203", + "979203", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092710", + "1483092711", + "1483092741", + "1483092710", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979205", + "979205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092717", + "1483092718", + "1483092777", + "1483092717", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979207", + "979207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092718", + "1483092720", + "1483092752", + "1483092718", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979209", + "979209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092720", + "1483092721", + "1483092830", + "1483092720", + "1", + "8", + "0", + "-1", + "109", + "1", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979211", + "979211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092735", + "1483092736", + "1483092767", + "1483092735", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979213", + "979213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092741", + "1483092742", + "1483092790", + "1483092741", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979217", + "979217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092753", + "1483092754", + "1483092790", + "1483092753", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979219", + "979219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092768", + "1483092769", + "1483092805", + "1483092768", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979225", + "979225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092790", + "1483092791", + "1483092826", + "1483092790", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979231", + "979231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092806", + "1483092807", + "1483092846", + "1483092806", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979236", + "979236", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092811", + "1483092812", + "1483092843", + "1483092811", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979248", + "979248", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092831", + "1483092832", + "1483092881", + "1483092831", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979252", + "979252", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092839", + "1483092841", + "1483092880", + "1483092839", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979254", + "979254", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092843", + "1483092844", + "1483092908", + "1483092843", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979258", + "979258", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092850", + "1483092851", + "1483092910", + "1483092850", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979275", + "979275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092908", + "1483092909", + "1483092947", + "1483092908", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979277", + "979277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092910", + "1483092911", + "1483092943", + "1483092910", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979293", + "979293", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092939", + "1483092940", + "1483092974", + "1483092939", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979303", + "979303", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483092957", + "1483092958", + "1483092995", + "1483092957", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979320", + "979320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093001", + "1483093002", + "1483093042", + "1483093001", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979326", + "979326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093018", + "1483093019", + "1483093051", + "1483093018", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979338", + "979338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093043", + "1483093044", + "1483093090", + "1483093043", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979347", + "979347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093053", + "1483093055", + "1483093087", + "1483093053", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979351", + "979351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093060", + "1483093063", + "1483093099", + "1483093060", + "1", + "8", + "0", + "-1", + "36", + "3", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979353", + "979353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093066", + "1483093067", + "1483093103", + "1483093066", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979363", + "979363", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093099", + "1483093100", + "1483093137", + "1483093099", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979365", + "979365", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093104", + "1483093105", + "1483093143", + "1483093104", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979383", + "979383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093142", + "1483093143", + "1483093191", + "1483093142", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979387", + "979387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093145", + "1483093147", + "1483093180", + "1483093145", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979391", + "979391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093162", + "1483093163", + "1483093221", + "1483093162", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979393", + "979393", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093164", + "1483093166", + "1483093204", + "1483093164", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979399", + "979399", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093192", + "1483093194", + "1483093238", + "1483093192", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979405", + "979405", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093207", + "1483093208", + "1483093256", + "1483093207", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979411", + "979411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093238", + "1483093240", + "1483093291", + "1483093238", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979413", + "979413", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093244", + "1483093245", + "1483093303", + "1483093244", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979415", + "979415", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093246", + "1483093248", + "1483093300", + "1483093246", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979417", + "979417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093257", + "1483093258", + "1483093303", + "1483093257", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979425", + "979425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093294", + "1483093295", + "1483093336", + "1483093294", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979429", + "979429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093303", + "1483093304", + "1483093355", + "1483093303", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979435", + "979435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093318", + "1483093319", + "1483093429", + "1483093318", + "1", + "8", + "0", + "-1", + "110", + "1", + "880", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979437", + "979437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093337", + "1483093338", + "1483093383", + "1483093337", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979441", + "979441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093355", + "1483093356", + "1483093390", + "1483093355", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979443", + "979443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093371", + "1483093372", + "1483093413", + "1483093371", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979449", + "979449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093384", + "1483093385", + "1483093442", + "1483093384", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979455", + "979455", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093413", + "1483093414", + "1483093467", + "1483093413", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979457", + "979457", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093421", + "1483093422", + "1483093469", + "1483093421", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979461", + "979461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093430", + "1483093432", + "1483093496", + "1483093430", + "1", + "8", + "0", + "-1", + "64", + "2", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979465", + "979465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093443", + "1483093446", + "1483093476", + "1483093443", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979467", + "979467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093467", + "1483093468", + "1483093499", + "1483093467", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979469", + "979469", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093470", + "1483093471", + "1483093502", + "1483093470", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979471", + "979471", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093473", + "1483093474", + "1483093504", + "1483093473", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979477", + "979477", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093497", + "1483093498", + "1483093573", + "1483093497", + "1", + "8", + "0", + "-1", + "75", + "1", + "600", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979479", + "979479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093499", + "1483093501", + "1483093582", + "1483093499", + "1", + "8", + "0", + "-1", + "81", + "2", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979481", + "979481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093503", + "1483093504", + "1483093632", + "1483093503", + "1", + "8", + "0", + "-1", + "128", + "1", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979483", + "979483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093505", + "1483093507", + "1483093586", + "1483093505", + "1", + "8", + "0", + "-1", + "79", + "2", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979485", + "979485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093511", + "1483093512", + "1483093574", + "1483093511", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979487", + "979487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093537", + "1483093538", + "1483093578", + "1483093537", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979491", + "979491", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093575", + "1483093577", + "1483093637", + "1483093575", + "1", + "8", + "0", + "-1", + "60", + "2", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979493", + "979493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093578", + "1483093580", + "1483093638", + "1483093578", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979495", + "979495", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093582", + "1483093583", + "1483093626", + "1483093582", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979503", + "979503", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093634", + "1483093636", + "1483093700", + "1483093634", + "1", + "8", + "0", + "-1", + "64", + "2", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979505", + "979505", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093637", + "1483093638", + "1483093688", + "1483093637", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979507", + "979507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093638", + "1483093639", + "1483093691", + "1483093638", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979525", + "979525", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093700", + "1483093701", + "1483093740", + "1483093700", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979529", + "979529", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093717", + "1483093720", + "1483093785", + "1483093717", + "1", + "8", + "0", + "-1", + "65", + "3", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979531", + "979531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093722", + "1483093723", + "1483093786", + "1483093722", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979533", + "979533", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093724", + "1483093726", + "1483093770", + "1483093724", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979535", + "979535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093738", + "1483093739", + "1483093865", + "1483093738", + "1", + "8", + "0", + "-1", + "126", + "1", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979537", + "979537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093741", + "1483093742", + "1483093865", + "1483093741", + "1", + "8", + "0", + "-1", + "123", + "1", + "984", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979539", + "979539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093770", + "1483093771", + "1483093899", + "1483093770", + "1", + "8", + "0", + "-1", + "128", + "1", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979545", + "979545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093786", + "1483093787", + "1483093849", + "1483093786", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979547", + "979547", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093787", + "1483093789", + "1483093918", + "1483093787", + "1", + "8", + "0", + "-1", + "129", + "2", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979555", + "979555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093850", + "1483093851", + "1483093973", + "1483093850", + "1", + "8", + "0", + "-1", + "122", + "1", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979557", + "979557", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093865", + "1483093866", + "1483093956", + "1483093865", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979562", + "979562", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093878", + "1483093879", + "1483093988", + "1483093878", + "1", + "8", + "0", + "-1", + "109", + "1", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979566", + "979566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093900", + "1483093901", + "1483094010", + "1483093900", + "1", + "8", + "0", + "-1", + "109", + "1", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979576", + "979576", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483093973", + "1483093975", + "1483094138", + "1483093973", + "1", + "8", + "0", + "-1", + "163", + "2", + "1304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979584", + "979584", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094023", + "1483094024", + "1483094063", + "1483094023", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979592", + "979592", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094063", + "1483094064", + "1483094116", + "1483094063", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979594", + "979594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094071", + "1483094072", + "1483094117", + "1483094071", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979598", + "979598", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094093", + "1483094094", + "1483094127", + "1483094093", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979602", + "979602", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094118", + "1483094119", + "1483094156", + "1483094118", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979604", + "979604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094124", + "1483094125", + "1483094157", + "1483094124", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979606", + "979606", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094126", + "1483094127", + "1483094165", + "1483094126", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979610", + "979610", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094132", + "1483094134", + "1483094165", + "1483094132", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979612", + "979612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094138", + "1483094139", + "1483094176", + "1483094138", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979614", + "979614", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094156", + "1483094157", + "1483094208", + "1483094156", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979618", + "979618", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094158", + "1483094161", + "1483094251", + "1483094158", + "1", + "8", + "0", + "-1", + "90", + "3", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979620", + "979620", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094165", + "1483094166", + "1483094220", + "1483094165", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979622", + "979622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094166", + "1483094169", + "1483094215", + "1483094166", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979624", + "979624", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094177", + "1483094178", + "1483094271", + "1483094177", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979628", + "979628", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094215", + "1483094216", + "1483094269", + "1483094215", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979630", + "979630", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094216", + "1483094217", + "1483094280", + "1483094216", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979634", + "979634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094221", + "1483094222", + "1483094259", + "1483094221", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979641", + "979641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094260", + "1483094261", + "1483094310", + "1483094260", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979643", + "979643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094264", + "1483094265", + "1483094311", + "1483094264", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979647", + "979647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094272", + "1483094273", + "1483094333", + "1483094272", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979653", + "979653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094281", + "1483094284", + "1483094339", + "1483094281", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979657", + "979657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094310", + "1483094311", + "1483094357", + "1483094310", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979659", + "979659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094312", + "1483094314", + "1483094394", + "1483094312", + "1", + "8", + "0", + "-1", + "80", + "2", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979661", + "979661", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094319", + "1483094320", + "1483094402", + "1483094319", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979679", + "979679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094391", + "1483094392", + "1483094431", + "1483094391", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979693", + "979693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094432", + "1483094434", + "1483094476", + "1483094432", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979699", + "979699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094469", + "1483094470", + "1483094524", + "1483094469", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979710", + "979710", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094490", + "1483094491", + "1483094585", + "1483094490", + "1", + "8", + "0", + "-1", + "94", + "1", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979724", + "979724", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094572", + "1483094573", + "1483094610", + "1483094572", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979726", + "979726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094575", + "1483094578", + "1483094623", + "1483094575", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979728", + "979728", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094586", + "1483094587", + "1483094644", + "1483094586", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979730", + "979730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094590", + "1483094591", + "1483094641", + "1483094590", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979732", + "979732", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094605", + "1483094606", + "1483094646", + "1483094605", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979736", + "979736", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094610", + "1483094612", + "1483094667", + "1483094610", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979738", + "979738", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094623", + "1483094624", + "1483094660", + "1483094623", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979746", + "979746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094645", + "1483094646", + "1483094676", + "1483094645", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979748", + "979748", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094646", + "1483094649", + "1483094710", + "1483094646", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979750", + "979750", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094659", + "1483094660", + "1483094718", + "1483094659", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979752", + "979752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094660", + "1483094663", + "1483094735", + "1483094660", + "1", + "8", + "0", + "-1", + "72", + "3", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979760", + "979760", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094689", + "1483094690", + "1483094763", + "1483094689", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979762", + "979762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094711", + "1483094712", + "1483094745", + "1483094711", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979772", + "979772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094742", + "1483094743", + "1483094789", + "1483094742", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979778", + "979778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094763", + "1483094764", + "1483094797", + "1483094763", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979780", + "979780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094766", + "1483094767", + "1483094811", + "1483094766", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979792", + "979792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094810", + "1483094811", + "1483094853", + "1483094810", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979794", + "979794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094812", + "1483094814", + "1483094879", + "1483094812", + "1", + "8", + "0", + "-1", + "65", + "2", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979796", + "979796", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094822", + "1483094823", + "1483094893", + "1483094822", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979800", + "979800", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094831", + "1483094833", + "1483094884", + "1483094831", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979806", + "979806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094879", + "1483094880", + "1483094915", + "1483094879", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979830", + "979830", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094953", + "1483094954", + "1483094984", + "1483094953", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979832", + "979832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094968", + "1483094969", + "1483095000", + "1483094968", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979834", + "979834", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094972", + "1483094973", + "1483095016", + "1483094972", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979836", + "979836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094974", + "1483094975", + "1483095023", + "1483094974", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979841", + "979841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094975", + "1483094976", + "1483095016", + "1483094975", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979847", + "979847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483094985", + "1483094988", + "1483095034", + "1483094985", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979849", + "979849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095000", + "1483095001", + "1483095033", + "1483095000", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979853", + "979853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095017", + "1483095020", + "1483095054", + "1483095017", + "1", + "8", + "0", + "-1", + "34", + "3", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979855", + "979855", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095023", + "1483095024", + "1483095084", + "1483095023", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979865", + "979865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095044", + "1483095045", + "1483095077", + "1483095044", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979869", + "979869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095074", + "1483095075", + "1483095107", + "1483095074", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979871", + "979871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095076", + "1483095077", + "1483095110", + "1483095076", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979873", + "979873", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095077", + "1483095078", + "1483095142", + "1483095077", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979875", + "979875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095081", + "1483095082", + "1483095158", + "1483095081", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979877", + "979877", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095083", + "1483095084", + "1483095157", + "1483095083", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979883", + "979883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095107", + "1483095108", + "1483095185", + "1483095107", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979885", + "979885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095111", + "1483095112", + "1483095188", + "1483095111", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979909", + "979909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095190", + "1483095192", + "1483095240", + "1483095190", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979915", + "979915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095214", + "1483095215", + "1483095350", + "1483095214", + "1", + "8", + "0", + "-1", + "135", + "1", + "1080", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979917", + "979917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095215", + "1483095217", + "1483095262", + "1483095215", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979919", + "979919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095219", + "1483095220", + "1483095256", + "1483095219", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979925", + "979925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095257", + "1483095258", + "1483095308", + "1483095257", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979927", + "979927", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095259", + "1483095261", + "1483095307", + "1483095259", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979946", + "979946", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095309", + "1483095312", + "1483095375", + "1483095309", + "1", + "8", + "0", + "-1", + "63", + "3", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979948", + "979948", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095312", + "1483095315", + "1483095345", + "1483095312", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979950", + "979950", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095316", + "1483095318", + "1483095446", + "1483095316", + "1", + "8", + "0", + "-1", + "128", + "2", + "1024", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979952", + "979952", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095335", + "1483095336", + "1483095375", + "1483095335", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979954", + "979954", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095346", + "1483095347", + "1483095385", + "1483095346", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979960", + "979960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095351", + "1483095353", + "1483095404", + "1483095351", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979964", + "979964", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095376", + "1483095379", + "1483095419", + "1483095376", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979968", + "979968", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095389", + "1483095390", + "1483095425", + "1483095389", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979970", + "979970", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095404", + "1483095405", + "1483095451", + "1483095404", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979974", + "979974", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095420", + "1483095422", + "1483095473", + "1483095420", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979976", + "979976", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095424", + "1483095425", + "1483095474", + "1483095424", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979978", + "979978", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095426", + "1483095428", + "1483095463", + "1483095426", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979980", + "979980", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095446", + "1483095447", + "1483095526", + "1483095446", + "1", + "8", + "0", + "-1", + "79", + "1", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979982", + "979982", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095447", + "1483095450", + "1483095526", + "1483095447", + "1", + "8", + "0", + "-1", + "76", + "3", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979984", + "979984", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095451", + "1483095453", + "1483095599", + "1483095451", + "1", + "8", + "0", + "-1", + "146", + "2", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979986", + "979986", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095464", + "1483095465", + "1483095511", + "1483095464", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979988", + "979988", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095473", + "1483095474", + "1483095557", + "1483095473", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979990", + "979990", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095474", + "1483095475", + "1483095546", + "1483095474", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "979996", + "979996", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095527", + "1483095528", + "1483095585", + "1483095527", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980005", + "980005", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095564", + "1483095565", + "1483095616", + "1483095564", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980011", + "980011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095587", + "1483095589", + "1483095671", + "1483095587", + "1", + "8", + "0", + "-1", + "82", + "2", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980017", + "980017", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095607", + "1483095608", + "1483095664", + "1483095607", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980021", + "980021", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095616", + "1483095617", + "1483095698", + "1483095616", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980029", + "980029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095653", + "1483095654", + "1483095695", + "1483095653", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980031", + "980031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095663", + "1483095664", + "1483095709", + "1483095663", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980044", + "980044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095697", + "1483095698", + "1483095846", + "1483095697", + "1", + "8", + "0", + "-1", + "148", + "1", + "1184", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980050", + "980050", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095724", + "1483095725", + "1483095806", + "1483095724", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980052", + "980052", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095748", + "1483095749", + "1483095802", + "1483095748", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980054", + "980054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095754", + "1483095755", + "1483095816", + "1483095754", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980056", + "980056", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095757", + "1483095758", + "1483095794", + "1483095757", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980062", + "980062", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095797", + "1483095799", + "1483095841", + "1483095797", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980066", + "980066", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095807", + "1483095808", + "1483095877", + "1483095807", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980072", + "980072", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095834", + "1483095835", + "1483095981", + "1483095834", + "1", + "8", + "0", + "-1", + "146", + "1", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980074", + "980074", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095842", + "1483095843", + "1483095888", + "1483095842", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980078", + "980078", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095878", + "1483095879", + "1483095957", + "1483095878", + "1", + "8", + "0", + "-1", + "78", + "1", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980082", + "980082", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095888", + "1483095890", + "1483095963", + "1483095888", + "1", + "8", + "0", + "-1", + "73", + "2", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980084", + "980084", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095893", + "1483095894", + "1483095959", + "1483095893", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980090", + "980090", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095954", + "1483095955", + "1483096001", + "1483095954", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980092", + "980092", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095957", + "1483095958", + "1483096031", + "1483095957", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980094", + "980094", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095960", + "1483095961", + "1483096068", + "1483095960", + "1", + "8", + "0", + "-1", + "107", + "1", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980098", + "980098", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095982", + "1483095983", + "1483096084", + "1483095982", + "1", + "8", + "0", + "-1", + "101", + "1", + "808", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980100", + "980100", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483095984", + "1483095986", + "1483096105", + "1483095984", + "1", + "8", + "0", + "-1", + "119", + "2", + "952", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980106", + "980106", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096031", + "1483096032", + "1483096066", + "1483096031", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980108", + "980108", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096066", + "1483096067", + "1483096097", + "1483096066", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980112", + "980112", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096075", + "1483096078", + "1483096121", + "1483096075", + "1", + "8", + "0", + "-1", + "43", + "3", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980118", + "980118", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096096", + "1483096097", + "1483096136", + "1483096096", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980136", + "980136", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096137", + "1483096138", + "1483096168", + "1483096137", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980138", + "980138", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096155", + "1483096156", + "1483096206", + "1483096155", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980142", + "980142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096160", + "1483096163", + "1483096210", + "1483096160", + "1", + "8", + "0", + "-1", + "47", + "3", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980144", + "980144", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096169", + "1483096170", + "1483096304", + "1483096169", + "1", + "8", + "0", + "-1", + "134", + "1", + "1072", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980148", + "980148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096187", + "1483096188", + "1483096228", + "1483096187", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980154", + "980154", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096210", + "1483096211", + "1483096249", + "1483096210", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980158", + "980158", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096229", + "1483096230", + "1483096260", + "1483096229", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980161", + "980161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096229", + "1483096230", + "1483096263", + "1483096229", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980165", + "980165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096250", + "1483096251", + "1483096288", + "1483096250", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980169", + "980169", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096261", + "1483096262", + "1483096312", + "1483096261", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980175", + "980175", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096289", + "1483096290", + "1483096320", + "1483096289", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980177", + "980177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096290", + "1483096293", + "1483096350", + "1483096290", + "1", + "8", + "0", + "-1", + "57", + "3", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980179", + "980179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096297", + "1483096298", + "1483096358", + "1483096297", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980181", + "980181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096305", + "1483096306", + "1483096391", + "1483096305", + "1", + "8", + "0", + "-1", + "85", + "1", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980185", + "980185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096313", + "1483096315", + "1483096358", + "1483096313", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980187", + "980187", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096320", + "1483096321", + "1483096388", + "1483096320", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980195", + "980195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096359", + "1483096362", + "1483096421", + "1483096359", + "1", + "8", + "0", + "-1", + "59", + "3", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980197", + "980197", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096362", + "1483096365", + "1483096506", + "1483096362", + "1", + "8", + "0", + "-1", + "141", + "3", + "1128", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980205", + "980205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096389", + "1483096391", + "1483096470", + "1483096389", + "1", + "8", + "0", + "-1", + "79", + "2", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980209", + "980209", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096401", + "1483096402", + "1483096488", + "1483096401", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980223", + "980223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096470", + "1483096471", + "1483096650", + "1483096470", + "1", + "8", + "0", + "-1", + "179", + "1", + "1432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980245", + "980245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096552", + "1483096553", + "1483096691", + "1483096552", + "1", + "8", + "0", + "-1", + "138", + "1", + "1104", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980251", + "980251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096651", + "1483096652", + "1483096730", + "1483096651", + "1", + "8", + "0", + "-1", + "78", + "1", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980275", + "980275", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096761", + "1483096762", + "1483096806", + "1483096761", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980277", + "980277", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096764", + "1483096765", + "1483096828", + "1483096764", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980279", + "980279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096774", + "1483096775", + "1483096820", + "1483096774", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980291", + "980291", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096821", + "1483096824", + "1483096871", + "1483096821", + "1", + "8", + "0", + "-1", + "47", + "3", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980323", + "980323", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096966", + "1483096967", + "1483097029", + "1483096966", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980325", + "980325", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096969", + "1483096970", + "1483097025", + "1483096969", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980327", + "980327", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096973", + "1483096974", + "1483097036", + "1483096973", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980329", + "980329", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483096994", + "1483096995", + "1483097047", + "1483096994", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980337", + "980337", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097026", + "1483097027", + "1483097062", + "1483097026", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980339", + "980339", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097028", + "1483097029", + "1483097069", + "1483097028", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980341", + "980341", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097031", + "1483097033", + "1483097110", + "1483097031", + "1", + "8", + "0", + "-1", + "77", + "2", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980343", + "980343", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097034", + "1483097035", + "1483097112", + "1483097034", + "1", + "8", + "0", + "-1", + "77", + "1", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980345", + "980345", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097036", + "1483097038", + "1483097184", + "1483097036", + "1", + "8", + "0", + "-1", + "146", + "2", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980347", + "980347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097048", + "1483097049", + "1483097104", + "1483097048", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980358", + "980358", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097063", + "1483097065", + "1483097102", + "1483097063", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980364", + "980364", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097104", + "1483097105", + "1483097152", + "1483097104", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980366", + "980366", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097105", + "1483097106", + "1483097169", + "1483097105", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980368", + "980368", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097110", + "1483097111", + "1483097174", + "1483097110", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980370", + "980370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097113", + "1483097114", + "1483097172", + "1483097113", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980381", + "980381", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097173", + "1483097174", + "1483097227", + "1483097173", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980383", + "980383", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097175", + "1483097177", + "1483097214", + "1483097175", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980387", + "980387", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097185", + "1483097187", + "1483097265", + "1483097185", + "1", + "8", + "0", + "-1", + "78", + "2", + "624", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980397", + "980397", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097210", + "1483097212", + "1483097245", + "1483097210", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980401", + "980401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097227", + "1483097228", + "1483097259", + "1483097227", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980411", + "980411", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097267", + "1483097269", + "1483097319", + "1483097267", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980417", + "980417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097292", + "1483097293", + "1483097355", + "1483097292", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980427", + "980427", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097332", + "1483097333", + "1483097374", + "1483097332", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980429", + "980429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097340", + "1483097341", + "1483097387", + "1483097340", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980431", + "980431", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097347", + "1483097348", + "1483097418", + "1483097347", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980437", + "980437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097356", + "1483097357", + "1483097408", + "1483097356", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980439", + "980439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097375", + "1483097376", + "1483097419", + "1483097375", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980441", + "980441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097388", + "1483097389", + "1483097429", + "1483097388", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980443", + "980443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097406", + "1483097407", + "1483097456", + "1483097406", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980445", + "980445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097409", + "1483097410", + "1483097448", + "1483097409", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980447", + "980447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097418", + "1483097419", + "1483097455", + "1483097418", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980449", + "980449", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097420", + "1483097422", + "1483097455", + "1483097420", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980453", + "980453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097429", + "1483097431", + "1483097475", + "1483097429", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980455", + "980455", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097449", + "1483097450", + "1483097495", + "1483097449", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980459", + "980459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097456", + "1483097457", + "1483097500", + "1483097456", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980461", + "980461", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097457", + "1483097458", + "1483097491", + "1483097457", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980463", + "980463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097476", + "1483097477", + "1483097509", + "1483097476", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980467", + "980467", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097485", + "1483097486", + "1483097520", + "1483097485", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980481", + "980481", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097510", + "1483097512", + "1483097651", + "1483097510", + "1", + "8", + "0", + "-1", + "139", + "2", + "1112", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980485", + "980485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097521", + "1483097523", + "1483097561", + "1483097521", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980487", + "980487", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097540", + "1483097541", + "1483097594", + "1483097540", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980489", + "980489", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097545", + "1483097546", + "1483097593", + "1483097545", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980507", + "980507", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097628", + "1483097629", + "1483097683", + "1483097628", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980509", + "980509", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097633", + "1483097634", + "1483097687", + "1483097633", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980519", + "980519", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097677", + "1483097678", + "1483097715", + "1483097677", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980521", + "980521", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097680", + "1483097681", + "1483097741", + "1483097680", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980531", + "980531", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097699", + "1483097700", + "1483097772", + "1483097699", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980535", + "980535", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097715", + "1483097716", + "1483097762", + "1483097715", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980537", + "980537", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097738", + "1483097739", + "1483097773", + "1483097738", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980539", + "980539", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097742", + "1483097743", + "1483097791", + "1483097742", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980541", + "980541", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097752", + "1483097753", + "1483097797", + "1483097752", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980543", + "980543", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097754", + "1483097755", + "1483097790", + "1483097754", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980545", + "980545", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097763", + "1483097764", + "1483097817", + "1483097763", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980553", + "980553", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097792", + "1483097794", + "1483097840", + "1483097792", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980555", + "980555", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097797", + "1483097798", + "1483097855", + "1483097797", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980561", + "980561", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097816", + "1483097817", + "1483097847", + "1483097816", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980563", + "980563", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097817", + "1483097818", + "1483097872", + "1483097817", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980569", + "980569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097841", + "1483097844", + "1483097920", + "1483097841", + "1", + "8", + "0", + "-1", + "76", + "3", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980571", + "980571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097848", + "1483097849", + "1483097925", + "1483097848", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980575", + "980575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097873", + "1483097874", + "1483097935", + "1483097873", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980583", + "980583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097917", + "1483097918", + "1483097955", + "1483097917", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980585", + "980585", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097920", + "1483097921", + "1483097957", + "1483097920", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980591", + "980591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097940", + "1483097941", + "1483097994", + "1483097940", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980595", + "980595", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097958", + "1483097959", + "1483098010", + "1483097958", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980599", + "980599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483097966", + "1483097967", + "1483098034", + "1483097966", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980629", + "980629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098103", + "1483098105", + "1483098140", + "1483098103", + "1", + "8", + "0", + "-1", + "35", + "2", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980633", + "980633", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098121", + "1483098122", + "1483098170", + "1483098121", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980637", + "980637", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098141", + "1483098142", + "1483098176", + "1483098141", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980643", + "980643", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098155", + "1483098156", + "1483098217", + "1483098155", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980645", + "980645", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098158", + "1483098159", + "1483098224", + "1483098158", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980653", + "980653", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098183", + "1483098184", + "1483098214", + "1483098183", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980657", + "980657", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098197", + "1483098198", + "1483098263", + "1483098197", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980659", + "980659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098201", + "1483098202", + "1483098258", + "1483098201", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980661", + "980661", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098207", + "1483098208", + "1483098292", + "1483098207", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980665", + "980665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098215", + "1483098216", + "1483098273", + "1483098215", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980670", + "980670", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098218", + "1483098219", + "1483098258", + "1483098218", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980672", + "980672", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098225", + "1483098226", + "1483098259", + "1483098225", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980674", + "980674", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098258", + "1483098259", + "1483098294", + "1483098258", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980678", + "980678", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098260", + "1483098262", + "1483098319", + "1483098260", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980680", + "980680", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098264", + "1483098265", + "1483098301", + "1483098264", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980682", + "980682", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098273", + "1483098274", + "1483098310", + "1483098273", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980684", + "980684", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098293", + "1483098294", + "1483098328", + "1483098293", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980686", + "980686", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098294", + "1483098295", + "1483098333", + "1483098294", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980708", + "980708", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098348", + "1483098349", + "1483098500", + "1483098348", + "1", + "8", + "0", + "-1", + "151", + "1", + "1208", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980714", + "980714", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098375", + "1483098376", + "1483098427", + "1483098375", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980718", + "980718", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098412", + "1483098413", + "1483098473", + "1483098412", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980720", + "980720", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098414", + "1483098415", + "1483098479", + "1483098414", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980726", + "980726", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098427", + "1483098428", + "1483098491", + "1483098427", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980730", + "980730", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098473", + "1483098474", + "1483098560", + "1483098473", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980740", + "980740", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098522", + "1483098523", + "1483098569", + "1483098522", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980742", + "980742", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098534", + "1483098535", + "1483098570", + "1483098534", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980744", + "980744", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098545", + "1483098546", + "1483098602", + "1483098545", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980746", + "980746", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098552", + "1483098553", + "1483098591", + "1483098552", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980752", + "980752", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098570", + "1483098571", + "1483098666", + "1483098570", + "1", + "8", + "0", + "-1", + "95", + "1", + "760", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980754", + "980754", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098571", + "1483098573", + "1483098774", + "1483098571", + "1", + "8", + "0", + "-1", + "201", + "2", + "1608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980756", + "980756", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098592", + "1483098593", + "1483098716", + "1483098592", + "1", + "8", + "0", + "-1", + "123", + "1", + "984", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980758", + "980758", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098603", + "1483098604", + "1483098685", + "1483098603", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980762", + "980762", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098662", + "1483098663", + "1483098703", + "1483098662", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980768", + "980768", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098684", + "1483098685", + "1483098719", + "1483098684", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980770", + "980770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098686", + "1483098688", + "1483098730", + "1483098686", + "1", + "8", + "0", + "-1", + "42", + "2", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980772", + "980772", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098701", + "1483098702", + "1483098736", + "1483098701", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980774", + "980774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098704", + "1483098705", + "1483098740", + "1483098704", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980776", + "980776", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098717", + "1483098718", + "1483098752", + "1483098717", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980778", + "980778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098720", + "1483098721", + "1483098756", + "1483098720", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980780", + "980780", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098730", + "1483098731", + "1483098763", + "1483098730", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980785", + "980785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098737", + "1483098738", + "1483098768", + "1483098737", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980791", + "980791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098757", + "1483098758", + "1483098804", + "1483098757", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980795", + "980795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098766", + "1483098767", + "1483098824", + "1483098766", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980797", + "980797", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098769", + "1483098770", + "1483098819", + "1483098769", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980809", + "980809", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098805", + "1483098807", + "1483098855", + "1483098805", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980819", + "980819", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098856", + "1483098859", + "1483098890", + "1483098856", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980823", + "980823", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098875", + "1483098877", + "1483098923", + "1483098875", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980843", + "980843", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098941", + "1483098943", + "1483098994", + "1483098941", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980845", + "980845", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098945", + "1483098946", + "1483099088", + "1483098945", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980849", + "980849", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098959", + "1483098960", + "1483098999", + "1483098959", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980851", + "980851", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098964", + "1483098965", + "1483099031", + "1483098964", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980853", + "980853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098968", + "1483098969", + "1483099001", + "1483098968", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980859", + "980859", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483098995", + "1483098996", + "1483099028", + "1483098995", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980863", + "980863", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099001", + "1483099003", + "1483099044", + "1483099001", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980865", + "980865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099014", + "1483099015", + "1483099050", + "1483099014", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980867", + "980867", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099028", + "1483099029", + "1483099061", + "1483099028", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980869", + "980869", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099030", + "1483099031", + "1483099062", + "1483099030", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980871", + "980871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099031", + "1483099032", + "1483099065", + "1483099031", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980885", + "980885", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099077", + "1483099078", + "1483099138", + "1483099077", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980887", + "980887", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099088", + "1483099089", + "1483099128", + "1483099088", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980889", + "980889", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099090", + "1483099092", + "1483099131", + "1483099090", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980891", + "980891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099092", + "1483099095", + "1483099218", + "1483099092", + "1", + "8", + "0", + "-1", + "123", + "3", + "984", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980893", + "980893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099105", + "1483099106", + "1483099147", + "1483099105", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980895", + "980895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099106", + "1483099109", + "1483099157", + "1483099106", + "1", + "8", + "0", + "-1", + "48", + "3", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980907", + "980907", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099167", + "1483099168", + "1483099207", + "1483099167", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980913", + "980913", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099196", + "1483099198", + "1483099253", + "1483099196", + "1", + "8", + "0", + "-1", + "55", + "2", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980933", + "980933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099260", + "1483099262", + "1483099333", + "1483099260", + "1", + "8", + "0", + "-1", + "71", + "2", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980935", + "980935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099268", + "1483099269", + "1483099309", + "1483099268", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980937", + "980937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099271", + "1483099272", + "1483099371", + "1483099271", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980939", + "980939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099274", + "1483099275", + "1483099332", + "1483099274", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980953", + "980953", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099359", + "1483099361", + "1483099404", + "1483099359", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980956", + "980956", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099360", + "1483099361", + "1483099401", + "1483099360", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980960", + "980960", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099372", + "1483099373", + "1483099412", + "1483099372", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980974", + "980974", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099405", + "1483099406", + "1483099454", + "1483099405", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980978", + "980978", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099412", + "1483099413", + "1483099449", + "1483099412", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980981", + "980981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099413", + "1483099416", + "1483099509", + "1483099413", + "1", + "8", + "0", + "-1", + "93", + "3", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980983", + "980983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099422", + "1483099423", + "1483099469", + "1483099422", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980985", + "980985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099430", + "1483099431", + "1483099474", + "1483099430", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980991", + "980991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099454", + "1483099455", + "1483099488", + "1483099454", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980993", + "980993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099469", + "1483099470", + "1483099540", + "1483099469", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "980995", + "980995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099474", + "1483099475", + "1483099513", + "1483099474", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981007", + "981007", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099513", + "1483099516", + "1483099565", + "1483099513", + "1", + "8", + "0", + "-1", + "49", + "3", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981009", + "981009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099524", + "1483099525", + "1483099559", + "1483099524", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981011", + "981011", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099541", + "1483099542", + "1483099583", + "1483099541", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981013", + "981013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099544", + "1483099545", + "1483099583", + "1483099544", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981019", + "981019", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099565", + "1483099566", + "1483099613", + "1483099565", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981027", + "981027", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099585", + "1483099587", + "1483099700", + "1483099585", + "1", + "8", + "0", + "-1", + "113", + "2", + "904", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981029", + "981029", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099600", + "1483099601", + "1483099669", + "1483099600", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981031", + "981031", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099613", + "1483099614", + "1483099713", + "1483099613", + "1", + "8", + "0", + "-1", + "99", + "1", + "792", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981039", + "981039", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099669", + "1483099670", + "1483099724", + "1483099669", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981041", + "981041", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099676", + "1483099678", + "1483099727", + "1483099676", + "1", + "8", + "0", + "-1", + "49", + "2", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981043", + "981043", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099681", + "1483099682", + "1483099755", + "1483099681", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981055", + "981055", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099713", + "1483099715", + "1483099776", + "1483099713", + "1", + "8", + "0", + "-1", + "61", + "2", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981057", + "981057", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099724", + "1483099725", + "1483099779", + "1483099724", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981061", + "981061", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099728", + "1483099731", + "1483099766", + "1483099728", + "1", + "8", + "0", + "-1", + "35", + "3", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981063", + "981063", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099744", + "1483099745", + "1483099785", + "1483099744", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981065", + "981065", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099756", + "1483099757", + "1483099822", + "1483099756", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981067", + "981067", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099759", + "1483099760", + "1483099853", + "1483099759", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981069", + "981069", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099767", + "1483099768", + "1483099840", + "1483099767", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981073", + "981073", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099777", + "1483099778", + "1483099956", + "1483099777", + "1", + "8", + "0", + "-1", + "178", + "1", + "1424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981075", + "981075", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099780", + "1483099781", + "1483099878", + "1483099780", + "1", + "8", + "0", + "-1", + "97", + "1", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981077", + "981077", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099785", + "1483099786", + "1483099894", + "1483099785", + "1", + "8", + "0", + "-1", + "108", + "1", + "864", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981081", + "981081", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099823", + "1483099824", + "1483099896", + "1483099823", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981085", + "981085", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099840", + "1483099841", + "1483099914", + "1483099840", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981091", + "981091", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099878", + "1483099879", + "1483099944", + "1483099878", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981097", + "981097", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099897", + "1483099898", + "1483099981", + "1483099897", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981101", + "981101", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099944", + "1483099945", + "1483100017", + "1483099944", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981107", + "981107", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099962", + "1483099963", + "1483100003", + "1483099962", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981111", + "981111", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483099974", + "1483099975", + "1483100046", + "1483099974", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981119", + "981119", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100006", + "1483100007", + "1483100180", + "1483100006", + "1", + "8", + "0", + "-1", + "173", + "1", + "1384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981125", + "981125", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100047", + "1483100049", + "1483100152", + "1483100047", + "1", + "8", + "0", + "-1", + "103", + "2", + "824", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981129", + "981129", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100075", + "1483100076", + "1483100231", + "1483100075", + "1", + "8", + "0", + "-1", + "155", + "1", + "1240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981141", + "981141", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100153", + "1483100154", + "1483100307", + "1483100153", + "1", + "8", + "0", + "-1", + "153", + "1", + "1224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981147", + "981147", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100181", + "1483100182", + "1483100328", + "1483100181", + "1", + "8", + "0", + "-1", + "146", + "1", + "1168", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981149", + "981149", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100222", + "1483100223", + "1483100318", + "1483100222", + "1", + "8", + "0", + "-1", + "95", + "1", + "760", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981151", + "981151", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100227", + "1483100228", + "1483100360", + "1483100227", + "1", + "8", + "0", + "-1", + "132", + "1", + "1056", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981153", + "981153", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100232", + "1483100233", + "1483100343", + "1483100232", + "1", + "8", + "0", + "-1", + "110", + "1", + "880", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981155", + "981155", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100243", + "1483100244", + "1483100380", + "1483100243", + "1", + "8", + "0", + "-1", + "136", + "1", + "1088", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981161", + "981161", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100319", + "1483100320", + "1483100499", + "1483100319", + "1", + "8", + "0", + "-1", + "179", + "1", + "1432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981163", + "981163", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100329", + "1483100330", + "1483100505", + "1483100329", + "1", + "8", + "0", + "-1", + "175", + "1", + "1400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981165", + "981165", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100343", + "1483100344", + "1483100622", + "1483100343", + "1", + "8", + "0", + "-1", + "278", + "1", + "2224", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981167", + "981167", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100361", + "1483100362", + "1483100492", + "1483100361", + "1", + "8", + "0", + "-1", + "130", + "1", + "1040", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981171", + "981171", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100380", + "1483100381", + "1483100565", + "1483100380", + "1", + "8", + "0", + "-1", + "184", + "1", + "1472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981177", + "981177", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100472", + "1483100475", + "1483100532", + "1483100472", + "1", + "8", + "0", + "-1", + "57", + "3", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981179", + "981179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100492", + "1483100493", + "1483100546", + "1483100492", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981205", + "981205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100619", + "1483100621", + "1483100693", + "1483100619", + "1", + "8", + "0", + "-1", + "72", + "2", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981207", + "981207", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100623", + "1483100624", + "1483100724", + "1483100623", + "1", + "8", + "0", + "-1", + "100", + "1", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981217", + "981217", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100666", + "1483100667", + "1483100757", + "1483100666", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981219", + "981219", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100674", + "1483100675", + "1483100728", + "1483100674", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981223", + "981223", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100694", + "1483100695", + "1483100778", + "1483100694", + "1", + "8", + "0", + "-1", + "83", + "1", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981225", + "981225", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100696", + "1483100698", + "1483100745", + "1483100696", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981229", + "981229", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100724", + "1483100725", + "1483100797", + "1483100724", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981231", + "981231", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100728", + "1483100729", + "1483100785", + "1483100728", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981235", + "981235", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100746", + "1483100747", + "1483100801", + "1483100746", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981237", + "981237", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100758", + "1483100759", + "1483100847", + "1483100758", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981239", + "981239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100779", + "1483100780", + "1483100819", + "1483100779", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981243", + "981243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100785", + "1483100786", + "1483100847", + "1483100785", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981245", + "981245", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100788", + "1483100789", + "1483100844", + "1483100788", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981249", + "981249", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100797", + "1483100800", + "1483100877", + "1483100797", + "1", + "8", + "0", + "-1", + "77", + "3", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981251", + "981251", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100801", + "1483100803", + "1483100861", + "1483100801", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981261", + "981261", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100848", + "1483100851", + "1483100912", + "1483100848", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981263", + "981263", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100862", + "1483100863", + "1483100972", + "1483100862", + "1", + "8", + "0", + "-1", + "109", + "1", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981265", + "981265", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100876", + "1483100877", + "1483100959", + "1483100876", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981267", + "981267", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100877", + "1483100878", + "1483100960", + "1483100877", + "1", + "8", + "0", + "-1", + "82", + "1", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981271", + "981271", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100912", + "1483100913", + "1483100994", + "1483100912", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981279", + "981279", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483100960", + "1483100963", + "1483101018", + "1483100960", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981289", + "981289", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101017", + "1483101019", + "1483101071", + "1483101017", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981299", + "981299", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101071", + "1483101072", + "1483101177", + "1483101071", + "1", + "8", + "0", + "-1", + "105", + "1", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981308", + "981308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101080", + "1483101081", + "1483101189", + "1483101080", + "1", + "8", + "0", + "-1", + "108", + "1", + "864", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981310", + "981310", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101087", + "1483101088", + "1483101133", + "1483101087", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981316", + "981316", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101123", + "1483101124", + "1483101173", + "1483101123", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981318", + "981318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101134", + "1483101135", + "1483101180", + "1483101134", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981322", + "981322", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101176", + "1483101177", + "1483101221", + "1483101176", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981324", + "981324", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101177", + "1483101178", + "1483101231", + "1483101177", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981326", + "981326", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101179", + "1483101180", + "1483101219", + "1483101179", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981338", + "981338", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101216", + "1483101218", + "1483101249", + "1483101216", + "1", + "8", + "0", + "-1", + "31", + "2", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981347", + "981347", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101222", + "1483101224", + "1483101361", + "1483101222", + "1", + "8", + "0", + "-1", + "137", + "2", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981351", + "981351", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101232", + "1483101233", + "1483101278", + "1483101232", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981353", + "981353", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101238", + "1483101239", + "1483101277", + "1483101238", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981357", + "981357", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101249", + "1483101250", + "1483101286", + "1483101249", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981359", + "981359", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101277", + "1483101278", + "1483101311", + "1483101277", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981361", + "981361", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101279", + "1483101281", + "1483101331", + "1483101279", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981367", + "981367", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101293", + "1483101294", + "1483101348", + "1483101293", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981371", + "981371", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101312", + "1483101313", + "1483101358", + "1483101312", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981373", + "981373", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101314", + "1483101315", + "1483101352", + "1483101314", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981389", + "981389", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101358", + "1483101361", + "1483101432", + "1483101358", + "1", + "8", + "0", + "-1", + "71", + "3", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981391", + "981391", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101362", + "1483101364", + "1483101432", + "1483101362", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981401", + "981401", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101412", + "1483101413", + "1483101446", + "1483101412", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981417", + "981417", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101466", + "1483101467", + "1483101510", + "1483101466", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981421", + "981421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101475", + "1483101478", + "1483101515", + "1483101475", + "1", + "8", + "0", + "-1", + "37", + "3", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981433", + "981433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101515", + "1483101516", + "1483101567", + "1483101515", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981437", + "981437", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101528", + "1483101529", + "1483101568", + "1483101528", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981439", + "981439", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101530", + "1483101531", + "1483101628", + "1483101530", + "1", + "8", + "0", + "-1", + "97", + "1", + "776", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981443", + "981443", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101537", + "1483101538", + "1483101581", + "1483101537", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981445", + "981445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101540", + "1483101541", + "1483101576", + "1483101540", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981447", + "981447", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101567", + "1483101568", + "1483101611", + "1483101567", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981453", + "981453", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101576", + "1483101577", + "1483101607", + "1483101576", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981459", + "981459", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101607", + "1483101608", + "1483101638", + "1483101607", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981463", + "981463", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101613", + "1483101615", + "1483101669", + "1483101613", + "1", + "8", + "0", + "-1", + "54", + "2", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981465", + "981465", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101616", + "1483101618", + "1483101662", + "1483101616", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981479", + "981479", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101663", + "1483101665", + "1483101718", + "1483101663", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981483", + "981483", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101670", + "1483101671", + "1483101725", + "1483101670", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981485", + "981485", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101672", + "1483101674", + "1483101768", + "1483101672", + "1", + "8", + "0", + "-1", + "94", + "2", + "752", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981493", + "981493", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101717", + "1483101718", + "1483101759", + "1483101717", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981498", + "981498", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101719", + "1483101721", + "1483101760", + "1483101719", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981524", + "981524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101794", + "1483101796", + "1483101835", + "1483101794", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981526", + "981526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101798", + "1483101799", + "1483101842", + "1483101798", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981528", + "981528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101801", + "1483101802", + "1483101847", + "1483101801", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981534", + "981534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101823", + "1483101824", + "1483101884", + "1483101823", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981536", + "981536", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101835", + "1483101838", + "1483101869", + "1483101835", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981556", + "981556", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101897", + "1483101898", + "1483101931", + "1483101897", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981558", + "981558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101899", + "1483101901", + "1483101933", + "1483101899", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981569", + "981569", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101932", + "1483101934", + "1483101974", + "1483101932", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981571", + "981571", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101934", + "1483101935", + "1483101967", + "1483101934", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981575", + "981575", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101939", + "1483101941", + "1483102063", + "1483101939", + "1", + "8", + "0", + "-1", + "122", + "2", + "976", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981577", + "981577", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101941", + "1483101943", + "1483101981", + "1483101941", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981581", + "981581", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101960", + "1483101961", + "1483101991", + "1483101960", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981583", + "981583", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101968", + "1483101969", + "1483102003", + "1483101968", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981585", + "981585", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101975", + "1483101976", + "1483102020", + "1483101975", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981587", + "981587", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101977", + "1483101979", + "1483102023", + "1483101977", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981591", + "981591", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483101992", + "1483101993", + "1483102042", + "1483101992", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981597", + "981597", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102021", + "1483102023", + "1483102064", + "1483102021", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981599", + "981599", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102023", + "1483102024", + "1483102065", + "1483102023", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981613", + "981613", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102066", + "1483102067", + "1483102102", + "1483102066", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981617", + "981617", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102072", + "1483102073", + "1483102126", + "1483102072", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981625", + "981625", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102098", + "1483102099", + "1483102180", + "1483102098", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981629", + "981629", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102103", + "1483102105", + "1483102142", + "1483102103", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981641", + "981641", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102140", + "1483102142", + "1483102180", + "1483102140", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981647", + "981647", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102163", + "1483102164", + "1483102211", + "1483102163", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981649", + "981649", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102164", + "1483102165", + "1483102211", + "1483102164", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981659", + "981659", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102201", + "1483102202", + "1483102235", + "1483102201", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981663", + "981663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102205", + "1483102208", + "1483102265", + "1483102205", + "1", + "8", + "0", + "-1", + "57", + "3", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981665", + "981665", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102211", + "1483102212", + "1483102284", + "1483102211", + "1", + "8", + "0", + "-1", + "72", + "1", + "576", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981667", + "981667", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102212", + "1483102214", + "1483102356", + "1483102212", + "1", + "8", + "0", + "-1", + "142", + "2", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981669", + "981669", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102214", + "1483102215", + "1483102263", + "1483102214", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981671", + "981671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102222", + "1483102223", + "1483102260", + "1483102222", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981673", + "981673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102236", + "1483102237", + "1483102273", + "1483102236", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981675", + "981675", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102260", + "1483102261", + "1483102295", + "1483102260", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981679", + "981679", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102264", + "1483102266", + "1483102303", + "1483102264", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981681", + "981681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102266", + "1483102267", + "1483102306", + "1483102266", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981687", + "981687", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102284", + "1483102285", + "1483102325", + "1483102284", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981689", + "981689", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102296", + "1483102297", + "1483102327", + "1483102296", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981691", + "981691", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102303", + "1483102304", + "1483102355", + "1483102303", + "1", + "8", + "0", + "-1", + "51", + "1", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981693", + "981693", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102307", + "1483102308", + "1483102358", + "1483102307", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981695", + "981695", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102318", + "1483102319", + "1483102375", + "1483102318", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981701", + "981701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102328", + "1483102331", + "1483102363", + "1483102328", + "1", + "8", + "0", + "-1", + "32", + "3", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981709", + "981709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102359", + "1483102360", + "1483102402", + "1483102359", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981713", + "981713", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102376", + "1483102378", + "1483102505", + "1483102376", + "1", + "8", + "0", + "-1", + "127", + "2", + "1016", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981717", + "981717", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102382", + "1483102384", + "1483102435", + "1483102382", + "1", + "8", + "0", + "-1", + "51", + "2", + "408", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981721", + "981721", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102406", + "1483102407", + "1483102440", + "1483102406", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981723", + "981723", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102418", + "1483102419", + "1483102465", + "1483102418", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981727", + "981727", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102435", + "1483102438", + "1483102476", + "1483102435", + "1", + "8", + "0", + "-1", + "38", + "3", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981735", + "981735", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102466", + "1483102469", + "1483102500", + "1483102466", + "1", + "8", + "0", + "-1", + "31", + "3", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981739", + "981739", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102477", + "1483102480", + "1483102535", + "1483102477", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981755", + "981755", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102528", + "1483102530", + "1483102573", + "1483102528", + "1", + "8", + "0", + "-1", + "43", + "2", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981757", + "981757", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102531", + "1483102532", + "1483102568", + "1483102531", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981759", + "981759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102532", + "1483102533", + "1483102612", + "1483102532", + "1", + "8", + "0", + "-1", + "79", + "1", + "632", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981761", + "981761", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102535", + "1483102536", + "1483102590", + "1483102535", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981763", + "981763", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102553", + "1483102554", + "1483102593", + "1483102553", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981765", + "981765", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102569", + "1483102570", + "1483102604", + "1483102569", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981767", + "981767", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102574", + "1483102575", + "1483102643", + "1483102574", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981769", + "981769", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102590", + "1483102591", + "1483102661", + "1483102590", + "1", + "8", + "0", + "-1", + "70", + "1", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981771", + "981771", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102591", + "1483102593", + "1483102663", + "1483102591", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981777", + "981777", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102605", + "1483102606", + "1483102662", + "1483102605", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981781", + "981781", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102613", + "1483102614", + "1483102666", + "1483102613", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981785", + "981785", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102644", + "1483102645", + "1483102710", + "1483102644", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981787", + "981787", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102656", + "1483102657", + "1483102723", + "1483102656", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981789", + "981789", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102661", + "1483102662", + "1483102730", + "1483102661", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981791", + "981791", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102662", + "1483102663", + "1483102730", + "1483102662", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981793", + "981793", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102664", + "1483102665", + "1483102706", + "1483102664", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981795", + "981795", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102667", + "1483102668", + "1483102726", + "1483102667", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981799", + "981799", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102710", + "1483102711", + "1483102802", + "1483102710", + "1", + "8", + "0", + "-1", + "91", + "1", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981801", + "981801", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102723", + "1483102724", + "1483102824", + "1483102723", + "1", + "8", + "0", + "-1", + "100", + "1", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981808", + "981808", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102731", + "1483102734", + "1483102849", + "1483102731", + "1", + "8", + "0", + "-1", + "115", + "3", + "920", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981812", + "981812", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102802", + "1483102803", + "1483102848", + "1483102802", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981814", + "981814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102825", + "1483102826", + "1483102860", + "1483102825", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981818", + "981818", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102848", + "1483102849", + "1483102887", + "1483102848", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981820", + "981820", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102850", + "1483102852", + "1483102896", + "1483102850", + "1", + "8", + "0", + "-1", + "44", + "2", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981824", + "981824", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102861", + "1483102863", + "1483102916", + "1483102861", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981826", + "981826", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102867", + "1483102868", + "1483102909", + "1483102867", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981832", + "981832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102887", + "1483102888", + "1483102923", + "1483102887", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981844", + "981844", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102925", + "1483102927", + "1483102965", + "1483102925", + "1", + "8", + "0", + "-1", + "38", + "2", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981848", + "981848", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483102935", + "1483102936", + "1483102982", + "1483102935", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981891", + "981891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103045", + "1483103046", + "1483103077", + "1483103045", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981893", + "981893", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103045", + "1483103046", + "1483103090", + "1483103045", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981895", + "981895", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103047", + "1483103049", + "1483103178", + "1483103047", + "1", + "8", + "0", + "-1", + "129", + "2", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981897", + "981897", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103054", + "1483103055", + "1483103096", + "1483103054", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981899", + "981899", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103059", + "1483103060", + "1483103110", + "1483103059", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981909", + "981909", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103100", + "1483103101", + "1483103142", + "1483103100", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981911", + "981911", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103107", + "1483103108", + "1483103146", + "1483103107", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981915", + "981915", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103111", + "1483103114", + "1483103152", + "1483103111", + "1", + "8", + "0", + "-1", + "38", + "3", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981917", + "981917", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103123", + "1483103124", + "1483103169", + "1483103123", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981921", + "981921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103143", + "1483103144", + "1483103189", + "1483103143", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981935", + "981935", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103179", + "1483103180", + "1483103218", + "1483103179", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981943", + "981943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103198", + "1483103199", + "1483103238", + "1483103198", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981947", + "981947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103218", + "1483103219", + "1483103251", + "1483103218", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981967", + "981967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103272", + "1483103274", + "1483103307", + "1483103272", + "1", + "8", + "0", + "-1", + "33", + "2", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981981", + "981981", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103315", + "1483103317", + "1483103349", + "1483103315", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981983", + "981983", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103317", + "1483103320", + "1483103382", + "1483103317", + "1", + "8", + "0", + "-1", + "62", + "3", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981985", + "981985", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103321", + "1483103322", + "1483103370", + "1483103321", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981989", + "981989", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103324", + "1483103326", + "1483103365", + "1483103324", + "1", + "8", + "0", + "-1", + "39", + "2", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981991", + "981991", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103330", + "1483103331", + "1483103392", + "1483103330", + "1", + "8", + "0", + "-1", + "61", + "1", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981993", + "981993", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103337", + "1483103338", + "1483103369", + "1483103337", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981995", + "981995", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103349", + "1483103350", + "1483103383", + "1483103349", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981997", + "981997", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103366", + "1483103367", + "1483103398", + "1483103366", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "981999", + "981999", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103370", + "1483103371", + "1483103407", + "1483103370", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982001", + "982001", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103371", + "1483103374", + "1483103419", + "1483103371", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982009", + "982009", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103392", + "1483103393", + "1483103442", + "1483103392", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982013", + "982013", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103406", + "1483103407", + "1483103440", + "1483103406", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982015", + "982015", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103407", + "1483103410", + "1483103456", + "1483103407", + "1", + "8", + "0", + "-1", + "46", + "3", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982028", + "982028", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103442", + "1483103443", + "1483103479", + "1483103442", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982030", + "982030", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103443", + "1483103446", + "1483103508", + "1483103443", + "1", + "8", + "0", + "-1", + "62", + "3", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982032", + "982032", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103447", + "1483103449", + "1483103578", + "1483103447", + "1", + "8", + "0", + "-1", + "129", + "2", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982034", + "982034", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103457", + "1483103458", + "1483103496", + "1483103457", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982040", + "982040", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103479", + "1483103480", + "1483103542", + "1483103479", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982044", + "982044", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103505", + "1483103506", + "1483103555", + "1483103505", + "1", + "8", + "0", + "-1", + "49", + "1", + "392", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982048", + "982048", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103508", + "1483103509", + "1483103542", + "1483103508", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982054", + "982054", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103542", + "1483103543", + "1483103577", + "1483103542", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982061", + "982061", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103555", + "1483103557", + "1483103587", + "1483103555", + "1", + "8", + "0", + "-1", + "30", + "2", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982067", + "982067", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103579", + "1483103581", + "1483103618", + "1483103579", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982071", + "982071", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103590", + "1483103591", + "1483103651", + "1483103590", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982081", + "982081", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103619", + "1483103620", + "1483103707", + "1483103619", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982083", + "982083", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103620", + "1483103621", + "1483103663", + "1483103620", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982087", + "982087", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103652", + "1483103653", + "1483103693", + "1483103652", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982089", + "982089", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103654", + "1483103656", + "1483103725", + "1483103654", + "1", + "8", + "0", + "-1", + "69", + "2", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982091", + "982091", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103664", + "1483103665", + "1483103733", + "1483103664", + "1", + "8", + "0", + "-1", + "68", + "1", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982095", + "982095", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103671", + "1483103672", + "1483103705", + "1483103671", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982099", + "982099", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103693", + "1483103694", + "1483103732", + "1483103693", + "1", + "8", + "0", + "-1", + "38", + "1", + "304", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982105", + "982105", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103707", + "1483103709", + "1483103757", + "1483103707", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982107", + "982107", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103726", + "1483103727", + "1483103786", + "1483103726", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982109", + "982109", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103733", + "1483103734", + "1483103765", + "1483103733", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982119", + "982119", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103767", + "1483103769", + "1483103839", + "1483103767", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982121", + "982121", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103782", + "1483103783", + "1483103829", + "1483103782", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982130", + "982130", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103801", + "1483103804", + "1483103847", + "1483103801", + "1", + "8", + "0", + "-1", + "43", + "3", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982132", + "982132", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103827", + "1483103828", + "1483103867", + "1483103827", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982134", + "982134", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103830", + "1483103831", + "1483103866", + "1483103830", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982140", + "982140", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103847", + "1483103848", + "1483103882", + "1483103847", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982142", + "982142", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103849", + "1483103851", + "1483103907", + "1483103849", + "1", + "8", + "0", + "-1", + "56", + "2", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982146", + "982146", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103866", + "1483103867", + "1483103924", + "1483103866", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982148", + "982148", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103868", + "1483103869", + "1483103929", + "1483103868", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982162", + "982162", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103926", + "1483103928", + "1483103996", + "1483103926", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982164", + "982164", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103930", + "1483103931", + "1483103981", + "1483103930", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982166", + "982166", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103936", + "1483103938", + "1483104028", + "1483103936", + "1", + "8", + "0", + "-1", + "90", + "2", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982179", + "982179", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483103997", + "1483103998", + "1483104135", + "1483103997", + "1", + "8", + "0", + "-1", + "137", + "1", + "1096", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982181", + "982181", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104021", + "1483104022", + "1483104155", + "1483104021", + "1", + "8", + "0", + "-1", + "133", + "1", + "1064", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982185", + "982185", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104028", + "1483104029", + "1483104093", + "1483104028", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982191", + "982191", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104061", + "1483104062", + "1483104204", + "1483104061", + "1", + "8", + "0", + "-1", + "142", + "1", + "1136", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982193", + "982193", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104094", + "1483104095", + "1483104207", + "1483104094", + "1", + "8", + "0", + "-1", + "112", + "1", + "896", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982195", + "982195", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104105", + "1483104106", + "1483104222", + "1483104105", + "1", + "8", + "0", + "-1", + "116", + "1", + "928", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982205", + "982205", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104156", + "1483104157", + "1483104252", + "1483104156", + "1", + "8", + "0", + "-1", + "95", + "1", + "760", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982211", + "982211", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104205", + "1483104206", + "1483104376", + "1483104205", + "1", + "8", + "0", + "-1", + "170", + "1", + "1360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982213", + "982213", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104207", + "1483104209", + "1483104452", + "1483104207", + "1", + "8", + "0", + "-1", + "243", + "2", + "1944", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982215", + "982215", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104223", + "1483104224", + "1483104350", + "1483104223", + "1", + "8", + "0", + "-1", + "126", + "1", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982221", + "982221", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104253", + "1483104254", + "1483104325", + "1483104253", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982239", + "982239", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104366", + "1483104368", + "1483104425", + "1483104366", + "1", + "8", + "0", + "-1", + "57", + "2", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982243", + "982243", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104391", + "1483104392", + "1483104436", + "1483104391", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982262", + "982262", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104453", + "1483104455", + "1483104537", + "1483104453", + "1", + "8", + "0", + "-1", + "82", + "2", + "656", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982270", + "982270", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104530", + "1483104531", + "1483104587", + "1483104530", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982272", + "982272", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104531", + "1483104533", + "1483104578", + "1483104531", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982274", + "982274", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104533", + "1483104534", + "1483104582", + "1483104533", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982276", + "982276", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104537", + "1483104538", + "1483104573", + "1483104537", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982280", + "982280", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104558", + "1483104559", + "1483104624", + "1483104558", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982282", + "982282", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104574", + "1483104575", + "1483104640", + "1483104574", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982284", + "982284", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104579", + "1483104580", + "1483104649", + "1483104579", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982286", + "982286", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104582", + "1483104583", + "1483104633", + "1483104582", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982288", + "982288", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104586", + "1483104587", + "1483104621", + "1483104586", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982290", + "982290", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104587", + "1483104589", + "1483104630", + "1483104587", + "1", + "8", + "0", + "-1", + "41", + "2", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982294", + "982294", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104622", + "1483104623", + "1483104666", + "1483104622", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982296", + "982296", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104625", + "1483104626", + "1483104660", + "1483104625", + "1", + "8", + "0", + "-1", + "34", + "1", + "272", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982298", + "982298", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104631", + "1483104632", + "1483104720", + "1483104631", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982300", + "982300", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104633", + "1483104635", + "1483104705", + "1483104633", + "1", + "8", + "0", + "-1", + "70", + "2", + "560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982302", + "982302", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104641", + "1483104642", + "1483104740", + "1483104641", + "1", + "8", + "0", + "-1", + "98", + "1", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982306", + "982306", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104660", + "1483104661", + "1483104720", + "1483104660", + "1", + "8", + "0", + "-1", + "59", + "1", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982308", + "982308", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104667", + "1483104668", + "1483104769", + "1483104667", + "1", + "8", + "0", + "-1", + "101", + "1", + "808", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982312", + "982312", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104720", + "1483104721", + "1483104787", + "1483104720", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982314", + "982314", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104721", + "1483104724", + "1483104795", + "1483104721", + "1", + "8", + "0", + "-1", + "71", + "3", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982318", + "982318", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104756", + "1483104757", + "1483104817", + "1483104756", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982320", + "982320", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104770", + "1483104771", + "1483104837", + "1483104770", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982330", + "982330", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104816", + "1483104817", + "1483104869", + "1483104816", + "1", + "8", + "0", + "-1", + "52", + "1", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982332", + "982332", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104817", + "1483104820", + "1483104881", + "1483104817", + "1", + "8", + "0", + "-1", + "61", + "3", + "488", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982340", + "982340", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104840", + "1483104841", + "1483104904", + "1483104840", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982350", + "982350", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104881", + "1483104883", + "1483105050", + "1483104881", + "1", + "8", + "0", + "-1", + "167", + "2", + "1336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982356", + "982356", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104927", + "1483104928", + "1483105026", + "1483104927", + "1", + "8", + "0", + "-1", + "98", + "1", + "784", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982360", + "982360", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104955", + "1483104958", + "1483105000", + "1483104955", + "1", + "8", + "0", + "-1", + "42", + "3", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982370", + "982370", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104976", + "1483104978", + "1483105045", + "1483104976", + "1", + "8", + "0", + "-1", + "67", + "2", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982372", + "982372", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483104999", + "1483105000", + "1483105044", + "1483104999", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982374", + "982374", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105001", + "1483105003", + "1483105040", + "1483105001", + "1", + "8", + "0", + "-1", + "37", + "2", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982378", + "982378", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105027", + "1483105028", + "1483105064", + "1483105027", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982382", + "982382", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105041", + "1483105042", + "1483105073", + "1483105041", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982386", + "982386", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105046", + "1483105049", + "1483105079", + "1483105046", + "1", + "8", + "0", + "-1", + "30", + "3", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982388", + "982388", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105050", + "1483105052", + "1483105097", + "1483105050", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982392", + "982392", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105073", + "1483105074", + "1483105131", + "1483105073", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982394", + "982394", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105076", + "1483105078", + "1483105161", + "1483105076", + "1", + "8", + "0", + "-1", + "83", + "2", + "664", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982396", + "982396", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105079", + "1483105080", + "1483105236", + "1483105079", + "1", + "8", + "0", + "-1", + "156", + "1", + "1248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982398", + "982398", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105080", + "1483105081", + "1483105155", + "1483105080", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982402", + "982402", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105131", + "1483105132", + "1483105221", + "1483105131", + "1", + "8", + "0", + "-1", + "89", + "1", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982410", + "982410", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105161", + "1483105163", + "1483105221", + "1483105161", + "1", + "8", + "0", + "-1", + "58", + "2", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982412", + "982412", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105188", + "1483105189", + "1483105242", + "1483105188", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982414", + "982414", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105189", + "1483105192", + "1483105237", + "1483105189", + "1", + "8", + "0", + "-1", + "45", + "3", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982419", + "982419", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105222", + "1483105224", + "1483105274", + "1483105222", + "1", + "8", + "0", + "-1", + "50", + "2", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982421", + "982421", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105224", + "1483105225", + "1483105270", + "1483105224", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982425", + "982425", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105238", + "1483105240", + "1483105286", + "1483105238", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982429", + "982429", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105259", + "1483105260", + "1483105300", + "1483105259", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982433", + "982433", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105273", + "1483105274", + "1483105314", + "1483105273", + "1", + "8", + "0", + "-1", + "40", + "1", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982435", + "982435", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105275", + "1483105277", + "1483105345", + "1483105275", + "1", + "8", + "0", + "-1", + "68", + "2", + "544", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982441", + "982441", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105298", + "1483105299", + "1483105355", + "1483105298", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982445", + "982445", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105301", + "1483105302", + "1483105390", + "1483105301", + "1", + "8", + "0", + "-1", + "88", + "1", + "704", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982448", + "982448", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105301", + "1483105302", + "1483105337", + "1483105301", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982464", + "982464", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105370", + "1483105371", + "1483105415", + "1483105370", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982466", + "982466", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105391", + "1483105392", + "1483105427", + "1483105391", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982468", + "982468", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105394", + "1483105395", + "1483105426", + "1483105394", + "1", + "8", + "0", + "-1", + "31", + "1", + "248", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982470", + "982470", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105398", + "1483105399", + "1483105438", + "1483105398", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982472", + "982472", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105403", + "1483105404", + "1483105446", + "1483105403", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982474", + "982474", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105415", + "1483105416", + "1483105460", + "1483105415", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982476", + "982476", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105416", + "1483105419", + "1483105504", + "1483105416", + "1", + "8", + "0", + "-1", + "85", + "3", + "680", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982482", + "982482", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105438", + "1483105439", + "1483105513", + "1483105438", + "1", + "8", + "0", + "-1", + "74", + "1", + "592", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982484", + "982484", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105446", + "1483105447", + "1483105505", + "1483105446", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982486", + "982486", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105460", + "1483105461", + "1483105547", + "1483105460", + "1", + "8", + "0", + "-1", + "86", + "1", + "688", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982492", + "982492", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105505", + "1483105506", + "1483105547", + "1483105505", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982494", + "982494", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105506", + "1483105509", + "1483105551", + "1483105506", + "1", + "8", + "0", + "-1", + "42", + "3", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982496", + "982496", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105513", + "1483105514", + "1483105553", + "1483105513", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982500", + "982500", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105547", + "1483105548", + "1483105606", + "1483105547", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982502", + "982502", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105548", + "1483105549", + "1483105616", + "1483105548", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982504", + "982504", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105552", + "1483105554", + "1483105599", + "1483105552", + "1", + "8", + "0", + "-1", + "45", + "2", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982506", + "982506", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105554", + "1483105555", + "1483105590", + "1483105554", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982512", + "982512", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105591", + "1483105593", + "1483105652", + "1483105591", + "1", + "8", + "0", + "-1", + "59", + "2", + "472", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982514", + "982514", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105600", + "1483105601", + "1483105644", + "1483105600", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982516", + "982516", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105607", + "1483105608", + "1483105695", + "1483105607", + "1", + "8", + "0", + "-1", + "87", + "1", + "696", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982518", + "982518", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105617", + "1483105618", + "1483105694", + "1483105617", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982524", + "982524", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105645", + "1483105646", + "1483105717", + "1483105645", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982526", + "982526", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105652", + "1483105653", + "1483105701", + "1483105652", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982528", + "982528", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105678", + "1483105679", + "1483105721", + "1483105678", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982532", + "982532", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105694", + "1483105695", + "1483105757", + "1483105694", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982534", + "982534", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105696", + "1483105697", + "1483105733", + "1483105696", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982544", + "982544", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105744", + "1483105745", + "1483105786", + "1483105744", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982556", + "982556", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105786", + "1483105787", + "1483105829", + "1483105786", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982558", + "982558", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105787", + "1483105789", + "1483105915", + "1483105787", + "1", + "8", + "0", + "-1", + "126", + "2", + "1008", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982560", + "982560", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105796", + "1483105798", + "1483105851", + "1483105796", + "1", + "8", + "0", + "-1", + "53", + "2", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982564", + "982564", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105820", + "1483105822", + "1483105903", + "1483105820", + "1", + "8", + "0", + "-1", + "81", + "2", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982566", + "982566", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105829", + "1483105830", + "1483105866", + "1483105829", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982568", + "982568", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105838", + "1483105839", + "1483105893", + "1483105838", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982570", + "982570", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105852", + "1483105853", + "1483105903", + "1483105852", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982572", + "982572", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105863", + "1483105864", + "1483105921", + "1483105863", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982580", + "982580", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105894", + "1483105895", + "1483105932", + "1483105894", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982586", + "982586", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105916", + "1483105918", + "1483105966", + "1483105916", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982588", + "982588", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105922", + "1483105923", + "1483105971", + "1483105922", + "1", + "8", + "0", + "-1", + "48", + "1", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982590", + "982590", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105925", + "1483105926", + "1483105999", + "1483105925", + "1", + "8", + "0", + "-1", + "73", + "1", + "584", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982594", + "982594", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105932", + "1483105933", + "1483106073", + "1483105932", + "1", + "8", + "0", + "-1", + "140", + "1", + "1120", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982596", + "982596", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105934", + "1483105935", + "1483105985", + "1483105934", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982604", + "982604", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483105972", + "1483105973", + "1483106016", + "1483105972", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982612", + "982612", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106002", + "1483106003", + "1483106035", + "1483106002", + "1", + "8", + "0", + "-1", + "32", + "1", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982622", + "982622", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106036", + "1483106038", + "1483106118", + "1483106036", + "1", + "8", + "0", + "-1", + "80", + "2", + "640", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982626", + "982626", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106050", + "1483106051", + "1483106140", + "1483106050", + "1", + "8", + "0", + "-1", + "89", + "1", + "712", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982634", + "982634", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106075", + "1483106077", + "1483106129", + "1483106075", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982644", + "982644", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106140", + "1483106142", + "1483106188", + "1483106140", + "1", + "8", + "0", + "-1", + "46", + "2", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982651", + "982651", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106169", + "1483106170", + "1483106220", + "1483106169", + "1", + "8", + "0", + "-1", + "50", + "1", + "400", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982655", + "982655", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106188", + "1483106189", + "1483106280", + "1483106188", + "1", + "8", + "0", + "-1", + "91", + "1", + "728", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982661", + "982661", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106208", + "1483106209", + "1483106271", + "1483106208", + "1", + "8", + "0", + "-1", + "62", + "1", + "496", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982663", + "982663", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106221", + "1483106222", + "1483106315", + "1483106221", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982671", + "982671", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106268", + "1483106269", + "1483106333", + "1483106268", + "1", + "8", + "0", + "-1", + "64", + "1", + "512", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982673", + "982673", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106271", + "1483106272", + "1483106337", + "1483106271", + "1", + "8", + "0", + "-1", + "65", + "1", + "520", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982677", + "982677", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106281", + "1483106282", + "1483106317", + "1483106281", + "1", + "8", + "0", + "-1", + "35", + "1", + "280", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982681", + "982681", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106318", + "1483106319", + "1483106373", + "1483106318", + "1", + "8", + "0", + "-1", + "54", + "1", + "432", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982683", + "982683", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106321", + "1483106322", + "1483106385", + "1483106321", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982685", + "982685", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106333", + "1483106334", + "1483106424", + "1483106333", + "1", + "8", + "0", + "-1", + "90", + "1", + "720", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982695", + "982695", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106362", + "1483106363", + "1483106456", + "1483106362", + "1", + "8", + "0", + "-1", + "93", + "1", + "744", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982699", + "982699", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106376", + "1483106377", + "1483106448", + "1483106376", + "1", + "8", + "0", + "-1", + "71", + "1", + "568", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982701", + "982701", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106385", + "1483106386", + "1483106416", + "1483106385", + "1", + "8", + "0", + "-1", + "30", + "1", + "240", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982709", + "982709", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106417", + "1483106418", + "1483106459", + "1483106417", + "1", + "8", + "0", + "-1", + "41", + "1", + "328", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982715", + "982715", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106427", + "1483106428", + "1483106504", + "1483106427", + "1", + "8", + "0", + "-1", + "76", + "1", + "608", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982719", + "982719", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106457", + "1483106458", + "1483106515", + "1483106457", + "1", + "8", + "0", + "-1", + "57", + "1", + "456", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982721", + "982721", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106460", + "1483106461", + "1483106545", + "1483106460", + "1", + "8", + "0", + "-1", + "84", + "1", + "672", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982749", + "982749", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106622", + "1483106623", + "1483106732", + "1483106622", + "1", + "8", + "0", + "-1", + "109", + "1", + "872", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982759", + "982759", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106710", + "1483106711", + "1483106748", + "1483106710", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982770", + "982770", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106730", + "1483106731", + "1483106800", + "1483106730", + "1", + "8", + "0", + "-1", + "69", + "1", + "552", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982774", + "982774", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106733", + "1483106735", + "1483106767", + "1483106733", + "1", + "8", + "0", + "-1", + "32", + "2", + "256", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982778", + "982778", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106748", + "1483106749", + "1483106786", + "1483106748", + "1", + "8", + "0", + "-1", + "37", + "1", + "296", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982784", + "982784", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106768", + "1483106769", + "1483106812", + "1483106768", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982786", + "982786", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106786", + "1483106787", + "1483106840", + "1483106786", + "1", + "8", + "0", + "-1", + "53", + "1", + "424", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982788", + "982788", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106790", + "1483106791", + "1483106891", + "1483106790", + "1", + "8", + "0", + "-1", + "100", + "1", + "800", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982790", + "982790", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106793", + "1483106794", + "1483106838", + "1483106793", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982792", + "982792", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106801", + "1483106802", + "1483106849", + "1483106801", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982794", + "982794", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106807", + "1483106808", + "1483106868", + "1483106807", + "1", + "8", + "0", + "-1", + "60", + "1", + "480", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982802", + "982802", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106840", + "1483106843", + "1483106883", + "1483106840", + "1", + "8", + "0", + "-1", + "40", + "3", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982804", + "982804", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106844", + "1483106846", + "1483106898", + "1483106844", + "1", + "8", + "0", + "-1", + "52", + "2", + "416", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982806", + "982806", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106850", + "1483106851", + "1483106887", + "1483106850", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982814", + "982814", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106887", + "1483106888", + "1483106954", + "1483106887", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982822", + "982822", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106923", + "1483106924", + "1483107005", + "1483106923", + "1", + "8", + "0", + "-1", + "81", + "1", + "648", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982832", + "982832", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106962", + "1483106963", + "1483107029", + "1483106962", + "1", + "8", + "0", + "-1", + "66", + "1", + "528", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982836", + "982836", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483106969", + "1483106970", + "1483107037", + "1483106969", + "1", + "8", + "0", + "-1", + "67", + "1", + "536", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982838", + "982838", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107005", + "1483107006", + "1483107042", + "1483107005", + "1", + "8", + "0", + "-1", + "36", + "1", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982841", + "982841", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107006", + "1483107009", + "1483107123", + "1483107006", + "1", + "8", + "0", + "-1", + "114", + "3", + "912", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982847", + "982847", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107030", + "1483107031", + "1483107076", + "1483107030", + "1", + "8", + "0", + "-1", + "45", + "1", + "360", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982853", + "982853", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107043", + "1483107044", + "1483107102", + "1483107043", + "1", + "8", + "0", + "-1", + "58", + "1", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982857", + "982857", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107077", + "1483107078", + "1483107141", + "1483107077", + "1", + "8", + "0", + "-1", + "63", + "1", + "504", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982865", + "982865", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107102", + "1483107104", + "1483107211", + "1483107102", + "1", + "8", + "0", + "-1", + "107", + "2", + "856", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982871", + "982871", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107141", + "1483107142", + "1483107198", + "1483107141", + "1", + "8", + "0", + "-1", + "56", + "1", + "448", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982875", + "982875", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107171", + "1483107172", + "1483107277", + "1483107171", + "1", + "8", + "0", + "-1", + "105", + "1", + "840", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982879", + "982879", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107200", + "1483107202", + "1483107279", + "1483107200", + "1", + "8", + "0", + "-1", + "77", + "2", + "616", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982883", + "982883", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107212", + "1483107213", + "1483107315", + "1483107212", + "1", + "8", + "0", + "-1", + "102", + "1", + "816", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982891", + "982891", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107280", + "1483107281", + "1483107476", + "1483107280", + "1", + "8", + "0", + "-1", + "195", + "1", + "1560", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982901", + "982901", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107378", + "1483107379", + "1483107485", + "1483107378", + "1", + "8", + "0", + "-1", + "106", + "1", + "848", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982919", + "982919", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107478", + "1483107481", + "1483107539", + "1483107478", + "1", + "8", + "0", + "-1", + "58", + "3", + "464", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982921", + "982921", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107482", + "1483107484", + "1483107524", + "1483107482", + "1", + "8", + "0", + "-1", + "40", + "2", + "320", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982923", + "982923", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107485", + "1483107487", + "1483107523", + "1483107485", + "1", + "8", + "0", + "-1", + "36", + "2", + "288", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982925", + "982925", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107489", + "1483107490", + "1483107523", + "1483107489", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982933", + "982933", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107525", + "1483107527", + "1483107574", + "1483107525", + "1", + "8", + "0", + "-1", + "47", + "2", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982937", + "982937", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107540", + "1483107541", + "1483107587", + "1483107540", + "1", + "8", + "0", + "-1", + "46", + "1", + "368", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982939", + "982939", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107548", + "1483107549", + "1483107604", + "1483107548", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982941", + "982941", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107550", + "1483107551", + "1483107606", + "1483107550", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982943", + "982943", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107551", + "1483107552", + "1483107681", + "1483107551", + "1", + "8", + "0", + "-1", + "129", + "1", + "1032", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982947", + "982947", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107574", + "1483107575", + "1483107630", + "1483107574", + "1", + "8", + "0", + "-1", + "55", + "1", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982951", + "982951", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107588", + "1483107589", + "1483107636", + "1483107588", + "1", + "8", + "0", + "-1", + "47", + "1", + "376", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982955", + "982955", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107605", + "1483107606", + "1483107648", + "1483107605", + "1", + "8", + "0", + "-1", + "42", + "1", + "336", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982957", + "982957", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107606", + "1483107609", + "1483107664", + "1483107606", + "1", + "8", + "0", + "-1", + "55", + "3", + "440", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982959", + "982959", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107630", + "1483107631", + "1483107675", + "1483107630", + "1", + "8", + "0", + "-1", + "44", + "1", + "352", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982961", + "982961", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107636", + "1483107637", + "1483107670", + "1483107636", + "1", + "8", + "0", + "-1", + "33", + "1", + "264", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982967", + "982967", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107649", + "1483107651", + "1483107699", + "1483107649", + "1", + "8", + "0", + "-1", + "48", + "2", + "384", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982969", + "982969", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107653", + "1483107654", + "1483107693", + "1483107653", + "1", + "8", + "0", + "-1", + "39", + "1", + "312", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ], + [ + "982971", + "982971", + "Mortorq", + "UTC", + "", + "Honey-buzzard", + "Screwdriver", + "banana-cream", + "1483107664", + "1483107665", + "1483107708", + "1483107664", + "1", + "8", + "0", + "-1", + "43", + "1", + "344", + "0", + "1:0", + "FAILED", + "8", + "2147486848Mn", + "108000", + "black", + "Social, Behavioral, and Economic Sciences", + "Social and Economic Science", + "Sociology" + ] + ] +} diff --git a/tests/integration/lib/Rest/WarehouseExportControllerProviderTest.php b/tests/integration/lib/Rest/WarehouseExportControllerProviderTest.php index b5bb1be390..66a89f325b 100644 --- a/tests/integration/lib/Rest/WarehouseExportControllerProviderTest.php +++ b/tests/integration/lib/Rest/WarehouseExportControllerProviderTest.php @@ -234,7 +234,7 @@ public function testGetRealmsTokenAuth($role, $tokenType) { $index++; } $this->assertCount( - 28, + 29, $body['data'][0]['fields'], $assertMessage ); From 4f06772ae423b097ff33dd344c55ffa33276e1e5 Mon Sep 17 00:00:00 2001 From: Joseph White Date: Thu, 9 May 2024 12:25:20 -0400 Subject: [PATCH 9/9] Update regression tests. --- .../current/expected/reference/raw-data/jobs-fresh_install.json | 2 +- .../current/expected/reference/raw-data/jobs-upgrade.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json index eb66c40c1f..51818ef06c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json +++ b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json @@ -1 +1 @@ -{"success":true,"fields":["Local Job Id","Resource","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"],"data":[["1012557[29]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288350","1483293912","1483230521","1","12","0","-1","5562","57829","66744","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[30]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288495","1483292972","1483230521","1","12","0","-1","4477","57974","53724","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[31]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288619","1483293176","1483230521","1","12","0","-1","4557","58098","54684","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[32]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288670","1483293468","1483230521","1","12","0","-1","4798","58149","57576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[33]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288672","1483292962","1483230521","1","12","0","-1","4290","58151","51480","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[34]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289641","1483294183","1483230521","1","12","0","-1","4542","59120","54504","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[35]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289653","1483294283","1483230521","1","12","0","-1","4630","59132","55560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[36]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289824","1483294346","1483230521","1","12","0","-1","4522","59303","54264","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[37]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483290566","1483295262","1483230521","1","12","0","-1","4696","60045","56352","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[38]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483291925","1483296248","1483230521","1","12","0","-1","4323","61404","51876","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[39]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292281","1483296708","1483230521","1","12","0","-1","4427","61760","53124","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[40]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292962","1483297444","1483230521","1","12","0","-1","4482","62441","53784","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[41]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292973","1483297542","1483230521","1","12","0","-1","4569","62452","54828","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[42]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293176","1483297480","1483230521","1","12","0","-1","4304","62655","51648","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[43]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293468","1483298032","1483230521","1","12","0","-1","4564","62947","54768","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[44]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293912","1483298792","1483230521","1","12","0","-1","4880","63391","58560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[45]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294183","1483299108","1483230521","1","12","0","-1","4925","63662","59100","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[46]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294283","1483299006","1483230521","1","12","0","-1","4723","63762","56676","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[47]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294346","1483299595","1483230521","1","12","0","-1","5249","63825","62988","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[48]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295212","1483300731","1483230521","1","12","0","-1","5519","64691","66228","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[49]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295263","1483299479","1483230521","1","12","0","-1","4216","64742","50592","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6108925","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080369","1483232750","1483238034","1483080369","1","8","0","-1","5284","152381","42272","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6112983","Robertson","UTC","","Dunlin","Screwdriver","curry","1483166772","1483239075","1483243977","1483166772","1","8","0","-1","4902","72303","39216","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6108976","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083320","1483222024","1483230247","1483083320","1","8","0","-1","8223","138704","65784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108977","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083401","1483222024","1483230759","1483083401","1","8","0","-1","8735","138623","69880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108991","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483084371","1483222750","1483229088","1483084371","1","8","0","-1","6338","138379","50704","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108995","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085380","1483223112","1483234712","1483085380","1","8","0","-1","11600","137732","92800","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108996","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085590","1483223112","1483229540","1483085590","1","8","0","-1","6428","137522","51424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108997","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085746","1483223234","1483230389","1483085746","1","8","0","-1","7155","137488","57240","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108998","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085849","1483223234","1483229603","1483085849","1","8","0","-1","6369","137385","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108999","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085883","1483223355","1483229322","1483085883","1","8","0","-1","5967","137472","47736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109002","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086333","1483223598","1483230052","1483086333","1","8","0","-1","6454","137265","51632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109003","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086372","1483223598","1483230207","1483086372","1","8","0","-1","6609","137226","52872","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109004","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086630","1483223598","1483229043","1483086630","1","8","0","-1","5445","136968","43560","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109007","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086757","1483223719","1483229287","1483086757","1","8","0","-1","5568","136962","44544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109008","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086851","1483223719","1483229022","1483086851","1","8","0","-1","5303","136868","42424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109010","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086869","1483223719","1483229903","1483086869","1","8","0","-1","6184","136850","49472","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109011","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087068","1483223840","1483229090","1483087068","1","8","0","-1","5250","136772","42000","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109017","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087348","1483223961","1483229678","1483087348","1","8","0","-1","5717","136613","45736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109020","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087552","1483224082","1483228824","1483087552","1","8","0","-1","4742","136530","37936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109024","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087885","1483224204","1483229349","1483087885","1","8","0","-1","5145","136319","41160","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109025","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087997","1483224325","1483230127","1483087997","1","8","0","-1","5802","136328","46416","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109027","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088108","1483224446","1483229274","1483088108","1","8","0","-1","4828","136338","38624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109030","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088363","1483224446","1483229480","1483088363","1","8","0","-1","5034","136083","40272","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109032","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088713","1483224566","1483231633","1483088713","1","8","0","-1","7067","135853","56536","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109033","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088719","1483224566","1483230228","1483088719","1","8","0","-1","5662","135847","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109034","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088738","1483224566","1483229332","1483088738","1","8","0","-1","4766","135828","38128","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109035","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088782","1483224566","1483230787","1483088782","1","8","0","-1","6221","135784","49768","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109036","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088824","1483224566","1483229580","1483088824","1","8","0","-1","5014","135742","40112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109037","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088866","1483224687","1483231394","1483088866","1","8","0","-1","6707","135821","53656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109038","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088941","1483224687","1483230384","1483088941","1","8","0","-1","5697","135746","45576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109039","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089098","1483224687","1483229672","1483089098","1","8","0","-1","4985","135589","39880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109040","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089159","1483224687","1483228992","1483089159","1","8","0","-1","4305","135528","34440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109041","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089488","1483224687","1483230409","1483089488","1","8","0","-1","5722","135199","45776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109044","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089787","1483224687","1483229177","1483089787","1","8","0","-1","4490","134900","35920","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109046","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089959","1483224808","1483229815","1483089959","1","8","0","-1","5007","134849","40056","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109047","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090136","1483224808","1483229901","1483090136","1","8","0","-1","5093","134672","40744","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109048","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090183","1483224808","1483229514","1483090183","1","8","0","-1","4706","134625","37648","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109051","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090770","1483224808","1483229619","1483090770","1","8","0","-1","4811","134038","38488","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109052","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090793","1483224808","1483229126","1483090793","1","8","0","-1","4318","134015","34544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109053","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090812","1483224929","1483231271","1483090812","1","8","0","-1","6342","134117","50736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109054","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090864","1483224929","1483230715","1483090864","1","8","0","-1","5786","134065","46288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109055","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090919","1483224929","1483230261","1483090919","1","8","0","-1","5332","134010","42656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109056","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091023","1483225050","1483231751","1483091023","1","8","0","-1","6701","134027","53608","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109057","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091053","1483225050","1483230871","1483091053","1","8","0","-1","5821","133997","46568","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109058","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091231","1483225050","1483229940","1483091231","1","8","0","-1","4890","133819","39120","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109059","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091458","1483225171","1483231609","1483091458","1","8","0","-1","6438","133713","51504","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109060","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091633","1483225171","1483229708","1483091633","1","8","0","-1","4537","133538","36296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109061","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091834","1483225171","1483230308","1483091834","1","8","0","-1","5137","133337","41096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109062","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091958","1483225171","1483230781","1483091958","1","8","0","-1","5610","133213","44880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109063","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092218","1483225412","1483230799","1483092218","1","8","0","-1","5387","133194","43096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109064","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092233","1483225533","1483231071","1483092233","1","8","0","-1","5538","133300","44304","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109065","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092254","1483225533","1483231436","1483092254","1","8","0","-1","5903","133279","47224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109066","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092263","1483225533","1483232483","1483092263","1","8","0","-1","6950","133270","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109067","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092267","1483225533","1483230237","1483092267","1","8","0","-1","4704","133266","37632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109068","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092363","1483225533","1483230561","1483092363","1","8","0","-1","5028","133170","40224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109069","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092400","1483225533","1483231113","1483092400","1","8","0","-1","5580","133133","44640","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109072","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092705","1483225533","1483230470","1483092705","1","8","0","-1","4937","132828","39496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109073","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092793","1483225654","1483231218","1483092793","1","8","0","-1","5564","132861","44512","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109074","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092840","1483225654","1483231087","1483092840","1","8","0","-1","5433","132814","43464","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109075","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092891","1483225654","1483230733","1483092891","1","8","0","-1","5079","132763","40632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109077","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093085","1483225897","1483231591","1483093085","1","8","0","-1","5694","132812","45552","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109078","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093167","1483225897","1483231551","1483093167","1","8","0","-1","5654","132730","45232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109079","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093391","1483225897","1483230730","1483093391","1","8","0","-1","4833","132506","38664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109080","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093636","1483225897","1483231622","1483093636","1","8","0","-1","5725","132261","45800","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109081","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093739","1483225897","1483231858","1483093739","1","8","0","-1","5961","132158","47688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109082","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093894","1483225897","1483232891","1483093894","1","8","0","-1","6994","132003","55952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109083","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093912","1483225897","1483231168","1483093912","1","8","0","-1","5271","131985","42168","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109084","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094011","1483225897","1483231651","1483094011","1","8","0","-1","5754","131886","46032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109085","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094148","1483225897","1483232847","1483094148","1","8","0","-1","6950","131749","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109086","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094155","1483225897","1483230146","1483094155","1","8","0","-1","4249","131742","33992","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109088","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094167","1483225897","1483230641","1483094167","1","8","0","-1","4744","131730","37952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109089","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094195","1483225897","1483230934","1483094195","1","8","0","-1","5037","131702","40296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109090","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094216","1483225897","1483230451","1483094216","1","8","0","-1","4554","131681","36432","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109091","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094281","1483225897","1483230400","1483094281","1","8","0","-1","4503","131616","36024","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109092","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094288","1483226018","1483233119","1483094288","1","8","0","-1","7101","131730","56808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109093","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094368","1483226018","1483232610","1483094368","1","8","0","-1","6592","131650","52736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109094","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094474","1483226138","1483234341","1483094474","1","8","0","-1","8203","131664","65624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109095","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094479","1483226138","1483232492","1483094479","1","8","0","-1","6354","131659","50832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109096","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094558","1483226138","1483232894","1483094558","1","8","0","-1","6756","131580","54048","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109097","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094775","1483226138","1483232289","1483094775","1","8","0","-1","6151","131363","49208","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109098","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094807","1483226138","1483232114","1483094807","1","8","0","-1","5976","131331","47808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109099","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094833","1483226138","1483232015","1483094833","1","8","0","-1","5877","131305","47016","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109100","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094912","1483226138","1483233025","1483094912","1","8","0","-1","6887","131226","55096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109101","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094975","1483226138","1483232621","1483094975","1","8","0","-1","6483","131163","51864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109102","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094987","1483226138","1483234366","1483094987","1","8","0","-1","8228","131151","65824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109103","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094991","1483226138","1483232522","1483094991","1","8","0","-1","6384","131147","51072","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109104","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095009","1483226138","1483232507","1483095009","1","8","0","-1","6369","131129","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109105","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095189","1483226138","1483231768","1483095189","1","8","0","-1","5630","130949","45040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109106","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095277","1483226138","1483232267","1483095277","1","8","0","-1","6129","130861","49032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109107","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095298","1483226138","1483232799","1483095298","1","8","0","-1","6661","130840","53288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109108","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095351","1483226138","1483234568","1483095351","1","8","0","-1","8430","130787","67440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109109","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095358","1483226138","1483232335","1483095358","1","8","0","-1","6197","130780","49576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109110","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095544","1483226138","1483231291","1483095544","1","8","0","-1","5153","130594","41224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109111","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095597","1483226380","1483232113","1483095597","1","8","0","-1","5733","130783","45864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109112","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095604","1483226865","1483234633","1483095604","1","8","0","-1","7768","131261","62144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109113","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095694","1483226865","1483234290","1483095694","1","8","0","-1","7425","131171","59400","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109114","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095721","1483226865","1483233753","1483095721","1","8","0","-1","6888","131144","55104","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109115","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095768","1483226865","1483233616","1483095768","1","8","0","-1","6751","131097","54008","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109118","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095846","1483226986","1483234657","1483095846","1","8","0","-1","7671","131140","61368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109119","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095859","1483226986","1483233892","1483095859","1","8","0","-1","6906","131127","55248","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109120","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095887","1483226986","1483233575","1483095887","1","8","0","-1","6589","131099","52712","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109121","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096300","1483227108","1483234301","1483096300","1","8","0","-1","7193","130808","57544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109122","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096337","1483227108","1483233337","1483096337","1","8","0","-1","6229","130771","49832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109123","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096407","1483227108","1483233594","1483096407","1","8","0","-1","6486","130701","51888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109124","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096437","1483227108","1483232578","1483096437","1","8","0","-1","5470","130671","43760","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109125","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096476","1483227229","1483233053","1483096476","1","8","0","-1","5824","130753","46592","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109127","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096578","1483227229","1483233243","1483096578","1","8","0","-1","6014","130651","48112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109128","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096603","1483227229","1483234670","1483096603","1","8","0","-1","7441","130626","59528","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109130","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096756","1483227229","1483232190","1483096756","1","8","0","-1","4961","130473","39688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109131","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096785","1483227229","1483232539","1483096785","1","8","0","-1","5310","130444","42480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109132","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097110","1483227229","1483233030","1483097110","1","8","0","-1","5801","130119","46408","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109135","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097235","1483227229","1483233122","1483097235","1","8","0","-1","5893","129994","47144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109138","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097431","1483227350","1483233175","1483097431","1","8","0","-1","5825","129919","46600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109139","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097452","1483227350","1483232730","1483097452","1","8","0","-1","5380","129898","43040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109141","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097541","1483227471","1483233569","1483097541","1","8","0","-1","6098","129930","48784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109142","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097655","1483227593","1483232801","1483097655","1","8","0","-1","5208","129938","41664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109143","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097661","1483227714","1483233952","1483097661","1","8","0","-1","6238","130053","49904","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109144","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097697","1483227714","1483232581","1483097697","1","8","0","-1","4867","130017","38936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109147","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098258","1483227835","1483232822","1483098258","1","8","0","-1","4987","129577","39896","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109148","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098518","1483227835","1483232432","1483098518","1","8","0","-1","4597","129317","36776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109149","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099136","1483227955","1483233558","1483099136","1","8","0","-1","5603","128819","44824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109150","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099286","1483228197","1483233558","1483099286","1","8","0","-1","5361","128911","42888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109151","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099326","1483228439","1483233751","1483099326","1","8","0","-1","5312","129113","42496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109152","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099456","1483228439","1483233268","1483099456","1","8","0","-1","4829","128983","38632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109153","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099592","1483228439","1483232901","1483099592","1","8","0","-1","4462","128847","35696","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109154","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099600","1483228439","1483233450","1483099600","1","8","0","-1","5011","128839","40088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109155","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099637","1483228560","1483234656","1483099637","1","8","0","-1","6096","128923","48768","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109156","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099646","1483228560","1483234288","1483099646","1","8","0","-1","5728","128914","45824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109157","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099717","1483228680","1483234692","1483099717","1","8","0","-1","6012","128963","48096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109158","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099730","1483228801","1483234361","1483099730","1","8","0","-1","5560","129071","44480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109159","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099925","1483228801","1483234374","1483099925","1","8","0","-1","5573","128876","44584","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109160","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099982","1483228801","1483233674","1483099982","1","8","0","-1","4873","128819","38984","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109161","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099997","1483228922","1483234584","1483099997","1","8","0","-1","5662","128925","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109162","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100041","1483229043","1483234665","1483100041","1","8","0","-1","5622","129002","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109163","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100045","1483229043","1483234665","1483100045","1","8","0","-1","5622","128998","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109164","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100124","1483229165","1483234673","1483100124","1","8","0","-1","5508","129041","44064","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109165","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100146","1483229165","1483234501","1483100146","1","8","0","-1","5336","129019","42688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109166","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100211","1483229165","1483234641","1483100211","1","8","0","-1","5476","128954","43808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109167","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100300","1483229285","1483234647","1483100300","1","8","0","-1","5362","128985","42896","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109168","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100338","1483229285","1483234636","1483100338","1","8","0","-1","5351","128947","42808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109169","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100388","1483229406","1483233928","1483100388","1","8","0","-1","4522","129018","36176","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109170","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100468","1483229406","1483234292","1483100468","1","8","0","-1","4886","128938","39088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109171","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100470","1483229406","1483234322","1483100470","1","8","0","-1","4916","128936","39328","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109172","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100822","1483229406","1483234324","1483100822","1","8","0","-1","4918","128584","39344","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109173","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100837","1483229527","1483234696","1483100837","1","8","0","-1","5169","128690","41352","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109174","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100960","1483229527","1483234016","1483100960","1","8","0","-1","4489","128567","35912","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109175","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101004","1483229648","1483234673","1483101004","1","8","0","-1","5025","128644","40200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109176","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101005","1483229648","1483234695","1483101005","1","8","0","-1","5047","128643","40376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109177","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101140","1483229648","1483234700","1483101140","1","8","0","-1","5052","128508","40416","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109178","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101266","1483229648","1483234665","1483101266","1","8","0","-1","5017","128382","40136","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109179","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101273","1483229769","1483234646","1483101273","1","8","0","-1","4877","128496","39016","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109180","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101441","1483229769","1483234726","1483101441","1","8","0","-1","4957","128328","39656","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109181","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101453","1483229769","1483234671","1483101453","1","8","0","-1","4902","128316","39216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109182","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101592","1483229769","1483234656","1483101592","1","8","0","-1","4887","128177","39096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109183","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101611","1483229890","1483234717","1483101611","1","8","0","-1","4827","128279","38616","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109184","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101690","1483230012","1483234653","1483101690","1","8","0","-1","4641","128322","37128","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109185","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101712","1483230012","1483234658","1483101712","1","8","0","-1","4646","128300","37168","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109186","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101735","1483230133","1483234680","1483101735","1","8","0","-1","4547","128398","36376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109187","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101747","1483230254","1483234656","1483101747","1","8","0","-1","4402","128507","35216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109188","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101761","1483230254","1483234669","1483101761","1","8","0","-1","4415","128493","35320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109189","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101789","1483230254","1483234654","1483101789","1","8","0","-1","4400","128465","35200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109190","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101824","1483230497","1483234657","1483101824","1","8","0","-1","4160","128673","33280","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109191","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101838","1483230497","1483234681","1483101838","1","8","0","-1","4184","128659","33472","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109192","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101940","1483230497","1483234701","1483101940","1","8","0","-1","4204","128557","33632","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109193","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102021","1483230739","1483234665","1483102021","1","8","0","-1","3926","128718","31408","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109194","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102063","1483230861","1483234657","1483102063","1","8","0","-1","3796","128798","30368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109195","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102305","1483230861","1483234681","1483102305","1","8","0","-1","3820","128556","30560","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109196","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102420","1483230982","1483234647","1483102420","1","8","0","-1","3665","128562","29320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1012557[74]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483305309","1483309059","1483230521","1","12","0","-1","3750","74788","45000","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[50]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296248","1483300942","1483230521","1","12","0","-1","4694","65727","56328","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[51]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296708","1483301965","1483230521","1","12","0","-1","5257","66187","63084","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[52]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297445","1483302424","1483230521","1","12","0","-1","4979","66924","59748","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[53]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297480","1483302365","1483230521","1","12","0","-1","4885","66959","58620","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[54]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297542","1483302018","1483230521","1","12","0","-1","4476","67021","53712","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[55]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298032","1483303026","1483230521","1","12","0","-1","4994","67511","59928","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[56]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298793","1483303445","1483230521","1","12","0","-1","4652","68272","55824","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[57]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299007","1483303788","1483230521","1","12","0","-1","4781","68486","57372","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[58]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299108","1483303864","1483230521","1","12","0","-1","4756","68587","57072","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[59]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299479","1483304996","1483230521","1","12","0","-1","5517","68958","66204","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[60]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299596","1483303401","1483230521","1","12","0","-1","3805","69075","45660","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[61]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300731","1483304682","1483230521","1","12","0","-1","3951","70210","47412","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[62]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300943","1483306491","1483230521","1","12","0","-1","5548","70422","66576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[67]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303027","1483306986","1483230521","1","12","0","-1","3959","72506","47508","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[68]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303402","1483307160","1483230521","1","12","0","-1","3758","72881","45096","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[70]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303788","1483307453","1483230521","1","12","0","-1","3665","73267","43980","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[71]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303865","1483308086","1483230521","1","12","0","-1","4221","73344","50652","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[72]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483304682","1483308627","1483230521","1","12","0","-1","3945","74161","47340","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6108929","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080673","1483231918","1483246389","1483080673","2","16","0","-1","14471","151245","231536","0","1:0","TIMEOUT","16","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6113332","Robertson","UTC","","Dunlin","Screwdriver","curry","1483168273","1483236943","1483251439","1483168273","2","24","0","-1","14496","68670","347904","0","1:0","TIMEOUT","24","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["1019989","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483255506","1483255506","1483277244","1483255506","1","8","0","-1","21738","0","173904","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020009","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483262143","1483262143","1483282140","1483262143","1","8","0","-1","19997","0","159976","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020000","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483260369","1483260369","1483282571","1483260369","1","8","0","-1","22202","0","177616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020089","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483289868","1483289868","1483313573","1483289868","1","8","0","-1","23705","0","189640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309861","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241326","1483275726","1483241326","1","16","0","-1","34400","0","550400","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309884","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241632","1483241632","1483276573","1483241632","1","16","0","-1","34941","0","559056","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019944","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483243754","1483243754","1483264519","1483243754","1","20","0","-1","20765","0","415300","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1020095","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483290808","1483290808","1483311960","1483290808","1","20","0","-1","21152","0","423040","0","1:0","FAILED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6117519","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250316","1483250340","1483285217","1483250316","1","1","0","-1","34877","24","34877","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6119997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277789","1483277815","1483304416","1483277789","1","1","0","-1","26601","26","26601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277799","1483277815","1483297012","1483277799","1","1","0","-1","19197","16","19197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483309448","1483290531","1","1","0","-1","18901","16","18901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120350","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483314965","1483290531","1","1","0","-1","24418","16","24418","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291123","1483291148","1483309307","1483291123","1","1","0","-1","18159","25","18159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291124","1483291148","1483311554","1483291124","1","1","0","-1","20406","24","20406","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483314764","1483291498","1","1","0","-1","23254","12","23254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483310198","1483291498","1","1","0","-1","18688","12","18688","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["1020038","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483276177","1483276178","1483296547","1483276177","1","8","0","-1","20369","1","162952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018470","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483209281","1483209306","1483241614","1483209281","1","8","0","-1","32308","25","258464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2308432","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483231015","1483231016","1483252678","1483231015","1","16","0","-1","21662","1","346592","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309845","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483240905","1483240916","1483264210","1483240905","1","16","0","-1","23294","11","372704","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309860","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241321","1483241326","1483275836","1483241321","1","16","0","-1","34510","5","552160","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115789","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233680","1483233777","1483262633","1483233680","1","1","0","-1","28856","97","28856","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117558","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250375","1483250591","1483284587","1483250375","1","1","0","-1","33996","216","33996","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117561","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250385","1483250591","1483275064","1483250385","1","1","0","-1","24473","206","24473","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117576","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250424","1483250716","1483285752","1483250424","1","1","0","-1","35036","292","35036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277851","1483278055","1483297236","1483277851","1","1","0","-1","19181","204","19181","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277897","1483278295","1483314227","1483277897","1","1","0","-1","35932","398","35932","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277902","1483278295","1483299228","1483277902","1","1","0","-1","20933","393","20933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277948","1483278535","1483307536","1483277948","1","1","0","-1","29001","587","29001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120115","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277958","1483278535","1483309618","1483277958","1","1","0","-1","31083","577","31083","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120140","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277980","1483278655","1483309089","1483277980","1","1","0","-1","30434","675","30434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120150","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277995","1483278776","1483309421","1483277995","1","1","0","-1","30645","781","30645","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483278052","1483279016","1483302406","1483278052","1","1","0","-1","23390","964","23390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287733","1483288145","1483308104","1483287733","1","1","0","-1","19959","412","19959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287738","1483288145","1483313129","1483287738","1","1","0","-1","24984","407","24984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120343","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290456","1483290547","1483312223","1483290456","1","1","0","-1","21676","91","21676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290582","1483290667","1483314627","1483290582","1","1","0","-1","23960","85","23960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120363","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483313406","1483290679","1","1","0","-1","22619","108","22619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120367","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483309066","1483290679","1","1","0","-1","18279","108","18279","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120380","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290972","1483291028","1483313591","1483290972","1","1","0","-1","22563","56","22563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483314051","1483291085","1","1","0","-1","22903","63","22903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483312361","1483291085","1","1","0","-1","21213","63","21213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291185","1483291269","1483315123","1483291185","1","1","0","-1","23854","84","23854","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291478","1483291510","1483314889","1483291478","1","1","0","-1","23379","32","23379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483313217","1483291694","1","1","0","-1","21466","57","21466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483314996","1483291694","1","1","0","-1","23245","57","23245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483309886","1483291694","1","1","0","-1","18135","57","18135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483312872","1483291694","1","1","0","-1","21121","57","21121","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310758","1483291694","1","1","0","-1","19007","57","19007","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311228","1483291694","1","1","0","-1","19477","57","19477","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311251","1483291694","1","1","0","-1","19500","57","19500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120441","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310302","1483291694","1","1","0","-1","18551","57","18551","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120447","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310421","1483291774","1","1","0","-1","18550","97","18550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120448","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310491","1483291774","1","1","0","-1","18620","97","18620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483313528","1483292046","1","1","0","-1","21416","66","21416","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120461","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483312309","1483292046","1","1","0","-1","20197","66","20197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483314786","1483292046","1","1","0","-1","22674","66","22674","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["1019923","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483239608","1483239703","1483265574","1483239608","1","8","0","-1","25871","95","206968","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019934","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483241902","1483241991","1483270583","1483241902","1","8","0","-1","28592","89","228736","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018314","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483206818","1483207021","1483233329","1483206818","1","8","0","-1","26308","203","210464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018806","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215142","1483215195","1483236458","1483215142","1","8","0","-1","21263","53","170104","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018919","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483217367","1483217479","1483237249","1483217367","1","8","0","-1","19770","112","158160","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115525[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231224","1483251512","1483230137","1","12","0","-1","20288","1090","243456","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483236943","1483257688","1483230268","1","12","0","-1","20745","6678","248940","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[59]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483238516","1483268469","1483230268","1","12","0","-1","29953","8251","359436","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115537[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230317","1483240424","1483259619","1483230317","1","12","0","-1","19195","10107","230340","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115539[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230378","1483248057","1483270798","1483230379","1","12","0","-1","22741","17679","272892","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[18]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259700","1483280279","1483245145","1","12","0","-1","20579","14555","246948","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[46]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483260934","1483280736","1483245145","1","12","0","-1","19802","15789","237624","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116050","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240024","1483272770","1483295769","1483240024","8","96","0","-1","22999","32746","2207904","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6116051","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240051","1483273371","1483295772","1483240051","8","96","0","-1","22401","33320","2150496","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1004733","Mortorq","UTC","","Redpoll, Lesser","Screwdriver","cherry","1483207214","1483207214","1483270166","1483207214","1","4","0","-1","62952","0","251808","0","0:0","COMPLETED","4","2147491648Mn","3596400","pita","Humanities\/Arts","Arts","Arts"],["1019945","Posidriv","UTC","","Fieldfare","Screwdriver","banana-cream","1483244077","1483244077","1483284074","1483244077","1","8","0","-1","39997","0","319976","0","0:0","COMPLETED","8","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1019972","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483251196","1483251196","1483287446","1483251196","1","8","0","-1","36250","0","290000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6113839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200024","1483200053","1483264736","1483200024","1","1","0","-1","64683","29","64683","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115604","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231323","1483231346","1483289925","1483231323","1","1","0","-1","58579","23","58579","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116091","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240958","1483240975","1483289936","1483240958","1","1","0","-1","48961","17","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241082","1483241099","1483289936","1483241082","1","1","0","-1","48837","17","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241091","1483241099","1483289936","1483241091","1","1","0","-1","48837","8","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116098","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241097","1483241099","1483289937","1483241097","1","1","0","-1","48838","2","48838","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115303","Robertson","UTC","","Lapwing","Screwdriver","curry","1483221161","1483221173","1483257175","1483221161","1","1","0","-1","36002","12","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115438","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225756","1483225776","1483261776","1483225756","1","1","0","-1","36000","20","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115457","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226357","1483226380","1483262380","1483226357","1","1","0","-1","36000","23","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119921","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264580","1483264584","1483307795","1483264580","1","1","0","-1","43211","4","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119923","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264696","1483264704","1483307916","1483264696","1","1","0","-1","43212","8","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1019139","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483221197","1483221204","1483283907","1483221197","1","8","0","-1","62703","7","501624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020005","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483261479","1483261480","1483303453","1483261479","1","8","0","-1","41973","1","335784","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020025","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483270272","1483270273","1483310835","1483270272","1","8","0","-1","40562","1","324496","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309863","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241329","1483291507","1483241326","1","16","0","-1","50178","3","802848","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6113101","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167526","1483167673","1483230521","1483167526","1","1","0","-1","62848","147","62848","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113155","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167624","1483168044","1483231590","1483167624","1","1","0","-1","63546","420","63546","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113185","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167713","1483168293","1483231990","1483167713","1","1","0","-1","63697","580","63697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113270","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483229989","1483168064","1","1","0","-1","61203","722","61203","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201161","1483201397","1483257208","1483201161","1","1","0","-1","55811","236","55811","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483266122","1483201165","1","1","0","-1","64725","232","64725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483240301","1483201165","1","1","0","-1","38904","232","38904","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206222","1483206254","1483264688","1483206222","1","1","0","-1","58434","32","58434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114933","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483265591","1483207487","1","1","0","-1","58001","103","58001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207513","1483207711","1483249010","1483207513","1","1","0","-1","41299","198","41299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483266614","1483208454","1","1","0","-1","57933","227","57933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483248131","1483208454","1","1","0","-1","39450","227","39450","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213485","1483213534","1483267435","1483213485","1","1","0","-1","53901","49","53901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213541","1483213655","1483274175","1483213541","1","1","0","-1","60520","114","60520","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483270089","1483213550","1","1","0","-1","56434","105","56434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483276819","1483213550","1","1","0","-1","63164","105","63164","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115592","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231313","1483231346","1483289926","1483231313","1","1","0","-1","58580","33","58580","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115607","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231326","1483231467","1483289924","1483231326","1","1","0","-1","58457","141","58457","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115617","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231337","1483231467","1483289927","1483231337","1","1","0","-1","58460","130","58460","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115621","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231342","1483231467","1483289926","1483231342","1","1","0","-1","58459","125","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115623","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231344","1483231467","1483289926","1483231344","1","1","0","-1","58459","123","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115651","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231596","1483231710","1483289927","1483231596","1","1","0","-1","58217","114","58217","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231597","1483231710","1483289930","1483231597","1","1","0","-1","58220","113","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231598","1483231710","1483289930","1483231598","1","1","0","-1","58220","112","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115655","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231599","1483231710","1483296505","1483231599","1","1","0","-1","64795","111","64795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231611","1483231831","1483289931","1483231611","1","1","0","-1","58100","220","58100","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231614","1483231831","1483289930","1483231614","1","1","0","-1","58099","217","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115673","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231616","1483231831","1483289930","1483231616","1","1","0","-1","58099","215","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115685","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231629","1483231953","1483289930","1483231629","1","1","0","-1","57977","324","57977","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115686","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231630","1483231953","1483294153","1483231630","1","1","0","-1","62200","323","62200","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115687","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231631","1483231953","1483289931","1483231631","1","1","0","-1","57978","322","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115689","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231632","1483231953","1483289931","1483231632","1","1","0","-1","57978","321","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231655","1483231953","1483289931","1483231655","1","1","0","-1","57978","298","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231665","1483231953","1483289934","1483231665","1","1","0","-1","57981","288","57981","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115721","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231682","1483232075","1483289934","1483231682","1","1","0","-1","57859","393","57859","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115724","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231686","1483232075","1483281980","1483231686","1","1","0","-1","49905","389","49905","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115782","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233674","1483233777","1483289923","1483233674","1","1","0","-1","56146","103","56146","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116066","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240665","1483240701","1483289916","1483240665","1","1","0","-1","49215","36","49215","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240903","1483240975","1483289936","1483240903","1","1","0","-1","48961","72","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240920","1483240975","1483289936","1483240920","1","1","0","-1","48961","55","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243515","1483243602","1483289913","1483243515","1","1","0","-1","46311","87","46311","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243520","1483243729","1483287616","1483243520","1","1","0","-1","43887","209","43887","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250283","1483250340","1483289915","1483250283","1","1","0","-1","39575","57","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250288","1483250340","1483289913","1483250288","1","1","0","-1","39573","52","39573","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117511","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250300","1483250340","1483289915","1483250300","1","1","0","-1","39575","40","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117527","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250326","1483250465","1483314554","1483250326","1","1","0","-1","64089","139","64089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117550","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250363","1483250465","1483301209","1483250363","1","1","0","-1","50744","102","50744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117554","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250370","1483250465","1483306007","1483250370","1","1","0","-1","55542","95","55542","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117563","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250392","1483250591","1483297322","1483250392","1","1","0","-1","46731","199","46731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117578","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250429","1483250716","1483309722","1483250429","1","1","0","-1","59006","287","59006","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115287","Robertson","UTC","","Lapwing","Screwdriver","curry","1483220029","1483220083","1483256111","1483220029","1","1","0","-1","36028","54","36028","0","1:0","TIMEOUT","1","12000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115435","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225598","1483225654","1483261656","1483225598","1","1","0","-1","36002","56","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115436","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225613","1483225654","1483261656","1483225613","1","1","0","-1","36002","41","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115441","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225835","1483225897","1483261927","1483225835","1","1","0","-1","36030","62","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115444","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225916","1483226018","1483262048","1483225916","1","1","0","-1","36030","102","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115447","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226028","1483226138","1483262169","1483226028","1","1","0","-1","36031","110","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115449","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226097","1483226138","1483262169","1483226097","1","1","0","-1","36031","41","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115453","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226179","1483226259","1483262259","1483226179","1","1","0","-1","36000","80","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115455","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226290","1483226380","1483262380","1483226290","1","1","0","-1","36000","90","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119918","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264431","1483264463","1483307674","1483264431","1","1","0","-1","43211","32","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119919","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264477","1483264584","1483307795","1483264477","1","1","0","-1","43211","107","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119920","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264523","1483264584","1483307795","1483264523","1","1","0","-1","43211","61","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119922","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264619","1483264704","1483307916","1483264619","1","1","0","-1","43212","85","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119924","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264745","1483264825","1483308035","1483264745","1","1","0","-1","43210","80","43210","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1019938","Posidriv","UTC","","Bunting, Reed","Screwdriver","apple","1483242540","1483242591","1483293892","1483242540","1","8","0","-1","51301","51","410408","0","0:0","COMPLETED","8","2147486448Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018813","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215252","1483215315","1483260424","1483215252","1","8","0","-1","45109","63","360872","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115525[38]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231587","1483278496","1483230137","1","12","0","-1","46909","1453","562908","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115298","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483220537","1483220568","1483256650","1483220537","6","72","0","-1","36082","31","2597904","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6113512","Robertson","UTC","","Crane","Screwdriver","curry","1483182608","1483183091","1483230785","1483182608","8","96","0","-1","47694","483","4578624","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6113518","Robertson","UTC","","Crane","Screwdriver","curry","1483183083","1483183459","1483231301","1483183083","8","96","0","-1","47842","376","4592832","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6114923","Robertson","UTC","","Crane","Screwdriver","curry","1483206575","1483206616","1483254675","1483206575","8","96","0","-1","48059","41","4613664","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6115525[56]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483234019","1483281109","1483230137","1","12","0","-1","47090","3885","565080","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[25]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483237064","1483283961","1483230268","1","12","0","-1","46897","6799","562764","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116630[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245072","1483256381","1483303137","1483245073","1","12","0","-1","46756","11309","561072","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259973","1483306773","1483245145","1","12","0","-1","46800","14828","561600","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[67]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483262171","1483299336","1483245145","1","12","0","-1","37165","17026","445980","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6118546","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483256650","1483264221","1483300304","1483256650","6","72","0","-1","36083","7571","2597976","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6115641","Robertson","UTC","","Crane","Screwdriver","curry","1483231577","1483236943","1483284718","1483231577","8","96","0","-1","47775","5366","4586400","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6118367","Robertson","UTC","","Crane","Screwdriver","curry","1483255541","1483263737","1483311418","1483255541","8","96","0","-1","47681","8196","4577376","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6115544[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230419","1483252300","1483293906","1483230420","1","12","0","-1","41606","21881","499272","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6112876","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483147452","1483170019","1483231575","1483147452","2","24","0","-1","61556","22567","1477344","0","0:0","COMPLETED","24","60000Mn","79200","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["6116000","Robertson","UTC","","Crane","Screwdriver","curry","1483238795","1483263616","1483311612","1483238795","8","96","0","-1","47996","24821","4607616","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["1005924","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","banana-cream","1483079071","1483178773","1483234032","1483079071","1","4","0","-1","55259","99702","221036","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["995612","Posidriv","UTC","","Honey-buzzard","Screwdriver","blackberry","1482871620","1482871620","1483264213","1482871620","1","1","0","-1","392593","0","392593","0","0:0","COMPLETED","1","2147487648Mn","10800000","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999221","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984433","1482984433","1483260983","1482984433","1","4","0","-1","276550","0","1106200","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999242","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984771","1482984771","1483298329","1482984771","1","4","0","-1","313558","0","1254232","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999289","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985634","1482985634","1483313872","1482985634","1","4","0","-1","328238","0","1312952","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["165381","Phillips","UTC","","Chaffinch","Screwdriver","coconut-cream","1482869521","1482869521","1483301547","1482869521","8","64","0","-1","432026","0","27649664","0","1:0","TIMEOUT","64","8000Mn","432000","crumpet","Biological Sciences","Molecular Biosciences","Biophysics"],["6109335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106949","1483106978","1483229086","1483106949","1","1","0","-1","122108","29","122108","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106950","1483106978","1483241323","1483106950","1","1","0","-1","134345","28","134345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109479","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107966","1483107993","1483237408","1483107966","1","1","0","-1","129415","27","129415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107969","1483107993","1483232459","1483107969","1","1","0","-1","124466","24","124466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107970","1483107993","1483233124","1483107970","1","1","0","-1","125131","23","125131","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109648","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110807","1483110827","1483238284","1483110807","1","1","0","-1","127457","20","127457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112989","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166796","1483166816","1483275917","1483166796","1","1","0","-1","109101","20","109101","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112990","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166797","1483166816","1483250594","1483166797","1","1","0","-1","83778","19","83778","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166802","1483166816","1483251770","1483166802","1","1","0","-1","84954","14","84954","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166806","1483166816","1483260779","1483166806","1","1","0","-1","93963","10","93963","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483263895","1483166811","1","1","0","-1","97079","5","97079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112994","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483300191","1483166811","1","1","0","-1","133375","5","133375","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112995","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166812","1483166816","1483253854","1483166812","1","1","0","-1","87038","4","87038","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166815","1483166816","1483240975","1483166815","1","1","0","-1","74159","1","74159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113062","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167402","1483167429","1483271686","1483167402","1","1","0","-1","104257","27","104257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113063","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167406","1483167429","1483303312","1483167406","1","1","0","-1","135883","23","135883","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113387","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171828","1483171856","1483245992","1483171828","1","1","0","-1","74136","28","74136","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483305040","1483171835","1","1","0","-1","133184","21","133184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483275724","1483171835","1","1","0","-1","103868","21","103868","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171837","1483171856","1483236804","1483171837","1","1","0","-1","64948","19","64948","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171839","1483171856","1483261370","1483171839","1","1","0","-1","89514","17","89514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171845","1483171856","1483277008","1483171845","1","1","0","-1","105152","11","105152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113393","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171849","1483171856","1483269720","1483171849","1","1","0","-1","97864","7","97864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200026","1483200053","1483268680","1483200026","1","1","0","-1","68627","27","68627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113841","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200029","1483200053","1483296754","1483200029","1","1","0","-1","96701","24","96701","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200032","1483200053","1483290999","1483200032","1","1","0","-1","90946","21","90946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113844","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200034","1483200053","1483289923","1483200034","1","1","0","-1","89870","19","89870","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200040","1483200053","1483310191","1483200040","1","1","0","-1","110138","13","110138","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200044","1483200053","1483301176","1483200044","1","1","0","-1","101123","9","101123","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113848","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200047","1483200053","1483308043","1483200047","1","1","0","-1","107990","6","107990","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201123","1483201151","1483286885","1483201123","1","1","0","-1","85734","28","85734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114034","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201127","1483201151","1483287672","1483201127","1","1","0","-1","86521","24","86521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114035","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201130","1483201151","1483291125","1483201130","1","1","0","-1","89974","21","89974","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114452","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204166","1483204193","1483301479","1483204166","1","1","0","-1","97286","27","97286","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114453","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204168","1483204193","1483282778","1483204168","1","1","0","-1","78585","25","78585","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114454","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204171","1483204193","1483277750","1483204171","1","1","0","-1","73557","22","73557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114455","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204174","1483204193","1483289915","1483204174","1","1","0","-1","85722","19","85722","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114457","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204179","1483204193","1483310949","1483204179","1","1","0","-1","106756","14","106756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204181","1483204193","1483306489","1483204181","1","1","0","-1","102296","12","102296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114459","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204182","1483204193","1483289922","1483204182","1","1","0","-1","85729","11","85729","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114460","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204183","1483204193","1483300363","1483204183","1","1","0","-1","96170","10","96170","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206228","1483206254","1483300042","1483206228","1","1","0","-1","93788","26","93788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114852","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206242","1483206254","1483296160","1483206242","1","1","0","-1","89906","12","89906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114853","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206247","1483206254","1483303604","1483206247","1","1","0","-1","97350","7","97350","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114925","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207464","1483207469","1483315068","1483207464","1","1","0","-1","107599","5","107599","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213507","1483213534","1483308024","1483213507","1","1","0","-1","94490","27","94490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213511","1483213534","1483295328","1483213511","1","1","0","-1","81794","23","81794","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115116","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213517","1483213534","1483297718","1483213517","1","1","0","-1","84184","17","84184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115120","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213529","1483213534","1483310606","1483213529","1","1","0","-1","97072","5","97072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213533","1483213534","1483279893","1483213533","1","1","0","-1","66359","1","66359","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115598","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231319","1483231346","1483312600","1483231319","1","1","0","-1","81254","27","81254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108027[4]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483302591","1483046357","1","1","0","-1","256219","15","256219","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[5]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[6]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[7]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[8]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[9]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[11]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[15]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[16]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483303689","1483046357","1","1","0","-1","257317","15","257317","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483278569","1483046357","1","1","0","-1","232197","15","232197","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1003355","Posidriv","UTC","","Thrush, Grey-cheeked","Screwdriver","boysenberry","1483042952","1483042968","1483292265","1483042952","1","2","0","-1","249297","16","498594","0","0:0","COMPLETED","2","10000Mn","864600","barm","Engineering","Electrical and Communication Systems","Solid-State and Microstructures"],["999183","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983884","1482983885","1483300262","1482983884","1","4","0","-1","316377","1","1265508","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999188","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983954","1482983955","1483310084","1482983954","1","4","0","-1","326129","1","1304516","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999254","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985000","1482985003","1483255914","1482985000","1","4","0","-1","270911","3","1083644","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005888","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078681","1483078683","1483278101","1483078681","1","4","0","-1","199418","2","797672","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005890","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078715","1483078716","1483241139","1483078715","1","4","0","-1","162423","1","649692","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005900","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078793","1483078794","1483288500","1483078793","1","4","0","-1","209706","1","838824","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005907","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078870","1483078874","1483244477","1483078870","1","4","0","-1","165603","4","662412","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1012029","Posidriv","UTC","","Fieldfare","Screwdriver","butter","1483157560","1483157563","1483243989","1483157560","1","8","0","-1","86426","3","691408","0","1:0","TIMEOUT","8","2147490048Mn","86400","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["995583","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483143988","1483143991","1483272379","1483143988","1","8","0","-1","128388","3","1027104","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995627","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483283156","1483144111","1","8","0","-1","139039","6","1112312","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995628","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483274205","1483144111","1","8","0","-1","130088","6","1040704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995629","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144119","1483275459","1483144112","1","8","0","-1","131340","7","1050720","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995630","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144120","1483275145","1483144112","1","8","0","-1","131025","8","1048200","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995631","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483287078","1483144112","1","8","0","-1","142956","10","1143648","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995632","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483285810","1483144112","1","8","0","-1","141688","10","1133504","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995633","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144124","1483274960","1483144112","1","8","0","-1","130836","12","1046688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995634","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144125","1483275348","1483144112","1","8","0","-1","131223","13","1049784","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995635","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144127","1483272663","1483144112","1","8","0","-1","128536","15","1028288","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995636","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144128","1483276578","1483144112","1","8","0","-1","132450","16","1059600","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995637","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144130","1483285036","1483144113","1","8","0","-1","140906","17","1127248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995638","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144131","1483274399","1483144113","1","8","0","-1","130268","18","1042144","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995639","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483290495","1483144113","1","8","0","-1","146362","20","1170896","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995640","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483278084","1483144113","1","8","0","-1","133951","20","1071608","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995641","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483270417","1483144113","1","8","0","-1","126281","23","1010248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995642","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483275165","1483144113","1","8","0","-1","131029","23","1048232","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995643","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144138","1483275003","1483144113","1","8","0","-1","130865","25","1046920","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995644","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144139","1483284417","1483144113","1","8","0","-1","140278","26","1122224","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995645","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144141","1483273977","1483144113","1","8","0","-1","129836","28","1038688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995646","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144142","1483281314","1483144114","1","8","0","-1","137172","28","1097376","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["163485","Phillips","UTC","","Oriole, Baltimore","Screwdriver","chestnut","1482390912","1482390913","1483303339","1482390912","1","12","2","-1","912426","1","10949112","1824852","0:0","CANCELLED by 380693","12","31000Mn","3247200","focaccia","Biological Sciences","Molecular Biosciences","Biophysics"],["964693","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483244230","1482955559","1","16","0","-1","288669","2","4618704","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964694","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483245344","1482955559","1","16","0","-1","289783","2","4636528","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["2286681","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483159130","1483159136","1483238310","1483159130","1","16","0","-1","79174","6","1266784","0","0:0","COMPLETED","8","2147486648Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2288753","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483169234","1483169236","1483282760","1483169234","1","16","0","-1","113524","2","1816384","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2289004","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483170485","1483170487","1483261366","1483170485","1","16","0","-1","90879","2","1454064","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009531","Posidriv","UTC","","Shag","Screwdriver","apple","1483125690","1483125694","1483246634","1483125690","1","24","0","-1","120940","4","2902560","0","0:0","COMPLETED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6106081","Robertson","UTC","","Moorhen","Screwdriver","curry","1482980903","1482980942","1483240261","1482980903","1","1","0","-1","259319","39","259319","0","1:0","TIMEOUT","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108682","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071799","1483072045","1483253984","1483071799","1","1","0","-1","181939","246","181939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071825","1483072181","1483229663","1483071825","1","1","0","-1","157482","356","157482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071827","1483072181","1483230693","1483071827","1","1","0","-1","158512","354","158512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483230934","1483106095","1","1","0","-1","124720","119","124720","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483248678","1483106095","1","1","0","-1","142464","119","142464","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106214","1483241753","1483106096","1","1","0","-1","135539","118","135539","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483263234","1483106096","1","1","0","-1","156892","246","156892","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483246507","1483106096","1","1","0","-1","140165","246","140165","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483235218","1483106096","1","1","0","-1","128876","246","128876","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483252066","1483106096","1","1","0","-1","145724","246","145724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483234006","1483106097","1","1","0","-1","127664","245","127664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483232072","1483106097","1","1","0","-1","125730","245","125730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483242337","1483106097","1","1","0","-1","135995","245","135995","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234289","1483106097","1","1","0","-1","127820","372","127820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483235964","1483106097","1","1","0","-1","129495","372","129495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483274649","1483106097","1","1","0","-1","168180","372","168180","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483238533","1483106097","1","1","0","-1","132064","372","132064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234473","1483106097","1","1","0","-1","128004","372","128004","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483252479","1483106097","1","1","0","-1","146010","372","146010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109275","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483246648","1483106098","1","1","0","-1","140179","371","140179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483241385","1483106098","1","1","0","-1","134916","371","134916","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483253169","1483106098","1","1","0","-1","146700","371","146700","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289888","1483106098","1","1","0","-1","183291","499","183291","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109282","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483229396","1483106098","1","1","0","-1","122799","499","122799","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289887","1483106098","1","1","0","-1","183290","499","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106141","1483106597","1483289889","1483106141","1","1","0","-1","183292","456","183292","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106145","1483106597","1483289887","1483106145","1","1","0","-1","183290","452","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106147","1483106597","1483289891","1483106147","1","1","0","-1","183294","450","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106153","1483106597","1483246847","1483106153","1","1","0","-1","140250","444","140250","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106156","1483106597","1483289893","1483106156","1","1","0","-1","183296","441","183296","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106158","1483106597","1483289891","1483106158","1","1","0","-1","183294","439","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106162","1483106597","1483289892","1483106162","1","1","0","-1","183295","435","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106165","1483106597","1483289892","1483106165","1","1","0","-1","183295","432","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106178","1483106724","1483233322","1483106178","1","1","0","-1","126598","546","126598","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106181","1483106724","1483247835","1483106181","1","1","0","-1","141111","543","141111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106192","1483106724","1483243302","1483106192","1","1","0","-1","136578","532","136578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106919","1483106978","1483262786","1483106919","1","1","0","-1","155808","59","155808","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106934","1483106978","1483236315","1483106934","1","1","0","-1","129337","44","129337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106936","1483106978","1483241600","1483106936","1","1","0","-1","134622","42","134622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109332","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106944","1483106978","1483231757","1483106944","1","1","0","-1","124779","34","124779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106954","1483107104","1483264536","1483106954","1","1","0","-1","157432","150","157432","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106985","1483107104","1483241640","1483106985","1","1","0","-1","134536","119","134536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109348","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106986","1483107104","1483229938","1483106986","1","1","0","-1","122834","118","122834","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109351","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483258633","1483106989","1","1","0","-1","151529","115","151529","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483243386","1483106989","1","1","0","-1","136282","115","136282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109356","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483251312","1483106990","1","1","0","-1","144208","114","144208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483241610","1483106990","1","1","0","-1","134506","114","134506","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109359","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289895","1483106990","1","1","0","-1","182665","240","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109360","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109361","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109362","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289893","1483106990","1","1","0","-1","182663","240","182663","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109365","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107051","1483107230","1483289895","1483107051","1","1","0","-1","182665","179","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107057","1483107230","1483229404","1483107057","1","1","0","-1","122174","173","122174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107059","1483107230","1483237756","1483107059","1","1","0","-1","130526","171","130526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109370","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107060","1483107230","1483241929","1483107060","1","1","0","-1","134699","170","134699","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109371","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107063","1483107230","1483289896","1483107063","1","1","0","-1","182666","167","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109372","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107065","1483107230","1483238813","1483107065","1","1","0","-1","131583","165","131583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107067","1483107230","1483289896","1483107067","1","1","0","-1","182666","163","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109374","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107073","1483107230","1483289898","1483107073","1","1","0","-1","182668","157","182668","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109376","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107078","1483107230","1483289894","1483107078","1","1","0","-1","182664","152","182664","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109378","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107082","1483107357","1483289905","1483107082","1","1","0","-1","182548","275","182548","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109381","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107088","1483107357","1483289913","1483107088","1","1","0","-1","182556","269","182556","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107097","1483107357","1483245580","1483107097","1","1","0","-1","138223","260","138223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107108","1483107357","1483289902","1483107108","1","1","0","-1","182545","249","182545","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107112","1483107357","1483289903","1483107112","1","1","0","-1","182546","245","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107113","1483107357","1483289903","1483107113","1","1","0","-1","182546","244","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107114","1483107357","1483289901","1483107114","1","1","0","-1","182544","243","182544","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107357","1483289904","1483107116","1","1","0","-1","182547","241","182547","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289901","1483107116","1","1","0","-1","182417","368","182417","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289902","1483107116","1","1","0","-1","182418","368","182418","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289910","1483107117","1","1","0","-1","182426","367","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289904","1483107117","1","1","0","-1","182420","367","182420","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109405","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483249260","1483107117","1","1","0","-1","141776","367","141776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107209","1483107484","1483289909","1483107209","1","1","0","-1","182425","275","182425","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107212","1483107484","1483289912","1483107212","1","1","0","-1","182428","272","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107217","1483107484","1483289908","1483107217","1","1","0","-1","182424","267","182424","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107219","1483107484","1483245969","1483107219","1","1","0","-1","138485","265","138485","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107220","1483107484","1483289911","1483107220","1","1","0","-1","182427","264","182427","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107223","1483107484","1483289912","1483107223","1","1","0","-1","182428","261","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107224","1483107484","1483289910","1483107224","1","1","0","-1","182426","260","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107234","1483107611","1483289911","1483107234","1","1","0","-1","182300","377","182300","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483289914","1483107242","1","1","0","-1","182303","369","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483232979","1483107242","1","1","0","-1","125368","369","125368","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107243","1483107611","1483289915","1483107243","1","1","0","-1","182304","368","182304","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107244","1483107611","1483289914","1483107244","1","1","0","-1","182303","367","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483289919","1483107246","1","1","0","-1","182308","365","182308","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109436","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483230736","1483107246","1","1","0","-1","123125","365","123125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107279","1483107867","1483230650","1483107279","1","1","0","-1","122783","588","122783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109463","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107280","1483107867","1483231234","1483107280","1","1","0","-1","123367","587","123367","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109464","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107282","1483107867","1483245514","1483107282","1","1","0","-1","137647","585","137647","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109471","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107953","1483107993","1483244309","1483107953","1","1","0","-1","136316","40","136316","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109472","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107955","1483107993","1483235249","1483107955","1","1","0","-1","127256","38","127256","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109475","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107962","1483107993","1483237298","1483107962","1","1","0","-1","129305","31","129305","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107980","1483108122","1483267363","1483107980","1","1","0","-1","159241","142","159241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109500","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107996","1483108122","1483233557","1483107996","1","1","0","-1","125435","126","125435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108001","1483108122","1483268237","1483108001","1","1","0","-1","160115","121","160115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108004","1483108122","1483289925","1483108004","1","1","0","-1","181803","118","181803","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109509","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289925","1483108005","1","1","0","-1","181674","246","181674","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109510","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289923","1483108005","1","1","0","-1","181672","246","181672","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109638","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110753","1483110827","1483253473","1483110753","1","1","0","-1","142646","74","142646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109639","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110766","1483110827","1483231980","1483110766","1","1","0","-1","121153","61","121153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109640","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110772","1483110827","1483233548","1483110772","1","1","0","-1","122721","55","122721","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109650","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110825","1483110966","1483243888","1483110825","1","1","0","-1","132922","141","132922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483286003","1483110837","1","1","0","-1","175037","129","175037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109653","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483242588","1483110837","1","1","0","-1","131622","129","131622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483258143","1483110838","1","1","0","-1","147177","128","147177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109658","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483238119","1483110838","1","1","0","-1","127153","128","127153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109662","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483232478","1483110838","1","1","0","-1","121512","128","121512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109665","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483229790","1483110838","1","1","0","-1","118824","128","118824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109672","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483111106","1483230425","1483110838","1","1","0","-1","119319","268","119319","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109753","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115946","1483116096","1483258108","1483115946","1","1","0","-1","142012","150","142012","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109754","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115951","1483116096","1483235370","1483115951","1","1","0","-1","119274","145","119274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109757","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115977","1483116096","1483251632","1483115977","1","1","0","-1","135536","119","135536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109758","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115980","1483116096","1483255305","1483115980","1","1","0","-1","139209","116","139209","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109759","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115985","1483116096","1483250118","1483115985","1","1","0","-1","134022","111","134022","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109761","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115993","1483116096","1483271931","1483115993","1","1","0","-1","155835","103","155835","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109762","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115994","1483116096","1483246583","1483115994","1","1","0","-1","130487","102","130487","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109767","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116007","1483116096","1483230486","1483116007","1","1","0","-1","114390","89","114390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109769","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116015","1483116096","1483245034","1483116015","1","1","0","-1","128938","81","128938","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116024","1483116096","1483236198","1483116024","1","1","0","-1","120102","72","120102","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116028","1483116096","1483231793","1483116028","1","1","0","-1","115697","68","115697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116041","1483116228","1483234292","1483116041","1","1","0","-1","118064","187","118064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109778","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116059","1483116228","1483246444","1483116059","1","1","0","-1","130216","169","130216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109781","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116068","1483116228","1483243361","1483116068","1","1","0","-1","127133","160","127133","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109783","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116072","1483116228","1483233855","1483116072","1","1","0","-1","117627","156","117627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109787","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116095","1483116228","1483231353","1483116095","1","1","0","-1","115125","133","115125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109791","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483232771","1483116103","1","1","0","-1","116412","256","116412","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109795","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483234692","1483116103","1","1","0","-1","118333","256","118333","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109798","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483228870","1483116103","1","1","0","-1","112511","256","112511","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109800","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483284703","1483116103","1","1","0","-1","168344","256","168344","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109801","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483242068","1483116103","1","1","0","-1","125709","256","125709","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109803","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483237154","1483116103","1","1","0","-1","120795","256","120795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109807","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116359","1483248120","1483116104","1","1","0","-1","131761","255","131761","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109810","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116491","1483253533","1483116104","1","1","0","-1","137042","387","137042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166761","1483166816","1483269042","1483166761","1","1","0","-1","102226","55","102226","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166766","1483166816","1483277010","1483166766","1","1","0","-1","110194","50","110194","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166770","1483166816","1483252858","1483166770","1","1","0","-1","86042","46","86042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166772","1483166816","1483282075","1483166772","1","1","0","-1","115259","44","115259","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166775","1483166816","1483254115","1483166775","1","1","0","-1","87299","41","87299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166783","1483166816","1483287587","1483166783","1","1","0","-1","120771","33","120771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166817","1483166939","1483274727","1483166817","1","1","0","-1","107788","122","107788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112998","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166820","1483166939","1483252870","1483166820","1","1","0","-1","85931","119","85931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166828","1483166939","1483280682","1483166828","1","1","0","-1","113743","111","113743","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113001","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166829","1483166939","1483244723","1483166829","1","1","0","-1","77784","110","77784","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483242282","1483166832","1","1","0","-1","75343","107","75343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113003","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483238850","1483166832","1","1","0","-1","71911","107","71911","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166833","1483166939","1483253762","1483166833","1","1","0","-1","86823","106","86823","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113005","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166837","1483166939","1483296234","1483166837","1","1","0","-1","129295","102","129295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113006","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166838","1483166939","1483299753","1483166838","1","1","0","-1","132814","101","132814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113007","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166840","1483166939","1483273960","1483166840","1","1","0","-1","107021","99","107021","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166843","1483166939","1483286860","1483166843","1","1","0","-1","119921","96","119921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166848","1483166939","1483257045","1483166848","1","1","0","-1","90106","91","90106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166850","1483166939","1483282969","1483166850","1","1","0","-1","116030","89","116030","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113011","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166853","1483166939","1483258397","1483166853","1","1","0","-1","91458","86","91458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166856","1483166939","1483261381","1483166856","1","1","0","-1","94442","83","94442","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166857","1483166939","1483251883","1483166857","1","1","0","-1","84944","82","84944","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166863","1483166939","1483282852","1483166863","1","1","0","-1","115913","76","115913","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113016","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166866","1483166939","1483282200","1483166866","1","1","0","-1","115261","73","115261","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166869","1483167061","1483283954","1483166869","1","1","0","-1","116893","192","116893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166873","1483167061","1483260846","1483166873","1","1","0","-1","93785","188","93785","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166877","1483167061","1483241935","1483166877","1","1","0","-1","74874","184","74874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113020","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166879","1483167061","1483272397","1483166879","1","1","0","-1","105336","182","105336","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166883","1483167061","1483261988","1483166883","1","1","0","-1","94927","178","94927","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166886","1483167061","1483264570","1483166886","1","1","0","-1","97509","175","97509","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166890","1483167061","1483277325","1483166890","1","1","0","-1","110264","171","110264","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483272893","1483166892","1","1","0","-1","105832","169","105832","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483254681","1483166892","1","1","0","-1","87620","169","87620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166899","1483167061","1483277041","1483166899","1","1","0","-1","109980","162","109980","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166900","1483167061","1483270355","1483166900","1","1","0","-1","103294","161","103294","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113028","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166904","1483167061","1483276308","1483166904","1","1","0","-1","109247","157","109247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166911","1483167061","1483254926","1483166911","1","1","0","-1","87865","150","87865","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166913","1483167061","1483241324","1483166913","1","1","0","-1","74263","148","74263","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483253485","1483166917","1","1","0","-1","86424","144","86424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113032","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483260120","1483166917","1","1","0","-1","93059","144","93059","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166921","1483167061","1483287820","1483166921","1","1","0","-1","120759","140","120759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167347","1483167429","1483249508","1483167347","1","1","0","-1","82079","82","82079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167348","1483167429","1483269724","1483167348","1","1","0","-1","102295","81","102295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167353","1483167429","1483262520","1483167353","1","1","0","-1","95091","76","95091","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167357","1483167429","1483252056","1483167357","1","1","0","-1","84627","72","84627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113049","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167361","1483167429","1483284840","1483167361","1","1","0","-1","117411","68","117411","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167367","1483167429","1483289687","1483167367","1","1","0","-1","122258","62","122258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113051","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167370","1483167429","1483276792","1483167370","1","1","0","-1","109363","59","109363","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167374","1483167429","1483289052","1483167374","1","1","0","-1","121623","55","121623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167376","1483167429","1483257249","1483167376","1","1","0","-1","89820","53","89820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167378","1483167429","1483279828","1483167378","1","1","0","-1","112399","51","112399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113056","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167383","1483167429","1483267303","1483167383","1","1","0","-1","99874","46","99874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113057","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167387","1483167429","1483289725","1483167387","1","1","0","-1","122296","42","122296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113058","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167390","1483167429","1483285489","1483167390","1","1","0","-1","118060","39","118060","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113059","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167391","1483167429","1483283086","1483167391","1","1","0","-1","115657","38","115657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113060","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167393","1483167429","1483288387","1483167393","1","1","0","-1","120958","36","120958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113061","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167396","1483167429","1483286008","1483167396","1","1","0","-1","118579","33","118579","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113064","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167412","1483167551","1483247709","1483167412","1","1","0","-1","80158","139","80158","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113067","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167420","1483167551","1483271720","1483167420","1","1","0","-1","104169","131","104169","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113068","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167422","1483167551","1483252894","1483167422","1","1","0","-1","85343","129","85343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113069","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167426","1483167551","1483236395","1483167426","1","1","0","-1","68844","125","68844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113070","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167427","1483167551","1483269724","1483167427","1","1","0","-1","102173","124","102173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113071","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167434","1483167551","1483276511","1483167434","1","1","0","-1","108960","117","108960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113072","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167439","1483167551","1483287282","1483167439","1","1","0","-1","119731","112","119731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113073","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167442","1483167551","1483240264","1483167442","1","1","0","-1","72713","109","72713","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167467","1483167551","1483285724","1483167467","1","1","0","-1","118173","84","118173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167469","1483167551","1483255688","1483167469","1","1","0","-1","88137","82","88137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113077","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167474","1483167551","1483265025","1483167474","1","1","0","-1","97474","77","97474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167475","1483167551","1483277565","1483167475","1","1","0","-1","110014","76","110014","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167479","1483167551","1483252844","1483167479","1","1","0","-1","85293","72","85293","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167482","1483167551","1483267395","1483167482","1","1","0","-1","99844","69","99844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167483","1483167551","1483247894","1483167483","1","1","0","-1","80343","68","80343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113082","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167488","1483167551","1483266857","1483167488","1","1","0","-1","99306","63","99306","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113083","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167491","1483167551","1483280930","1483167491","1","1","0","-1","113379","60","113379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167496","1483167673","1483275845","1483167496","1","1","0","-1","108172","177","108172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167501","1483167673","1483305397","1483167501","1","1","0","-1","137724","172","137724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167504","1483167673","1483270191","1483167504","1","1","0","-1","102518","169","102518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167508","1483167673","1483268894","1483167508","1","1","0","-1","101221","165","101221","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113092","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167512","1483167673","1483284147","1483167512","1","1","0","-1","116474","161","116474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113094","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167514","1483167673","1483254050","1483167514","1","1","0","-1","86377","159","86377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167517","1483167673","1483289060","1483167517","1","1","0","-1","121387","156","121387","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167522","1483167673","1483277050","1483167522","1","1","0","-1","109377","151","109377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167527","1483167796","1483295885","1483167527","1","1","0","-1","128089","269","128089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167534","1483167796","1483279842","1483167534","1","1","0","-1","112046","262","112046","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113110","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167539","1483167796","1483266565","1483167539","1","1","0","-1","98769","257","98769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113112","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167547","1483167796","1483304454","1483167547","1","1","0","-1","136658","249","136658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483274486","1483167548","1","1","0","-1","106690","248","106690","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483291393","1483167548","1","1","0","-1","123597","248","123597","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113117","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167558","1483167796","1483282424","1483167558","1","1","0","-1","114628","238","114628","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113118","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167559","1483167796","1483277894","1483167559","1","1","0","-1","110098","237","110098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167796","1483262321","1483167566","1","1","0","-1","94525","230","94525","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483258416","1483167566","1","1","0","-1","90497","353","90497","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483262483","1483167566","1","1","0","-1","94564","353","94564","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113127","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483289062","1483167566","1","1","0","-1","121143","353","121143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483283172","1483167566","1","1","0","-1","115253","353","115253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113131","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483277853","1483167566","1","1","0","-1","109934","353","109934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483276426","1483167566","1","1","0","-1","108507","353","108507","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113135","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483311360","1483167566","1","1","0","-1","143441","353","143441","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113137","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483266989","1483167566","1","1","0","-1","99070","353","99070","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483275956","1483167566","1","1","0","-1","108037","353","108037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483246072","1483167566","1","1","0","-1","78028","478","78028","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113142","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483284006","1483167566","1","1","0","-1","115962","478","115962","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113143","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483274130","1483167566","1","1","0","-1","106086","478","106086","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113144","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483276701","1483167566","1","1","0","-1","108657","478","108657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113146","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167591","1483168044","1483261530","1483167591","1","1","0","-1","93486","453","93486","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113147","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167594","1483168044","1483303854","1483167594","1","1","0","-1","135810","450","135810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113148","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167597","1483168044","1483256318","1483167597","1","1","0","-1","88274","447","88274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113149","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167599","1483168044","1483290785","1483167599","1","1","0","-1","122741","445","122741","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113151","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167605","1483168044","1483269603","1483167605","1","1","0","-1","101559","439","101559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113152","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167611","1483168044","1483291276","1483167611","1","1","0","-1","123232","433","123232","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113153","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167614","1483168044","1483264572","1483167614","1","1","0","-1","96528","430","96528","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113154","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167619","1483168044","1483292496","1483167619","1","1","0","-1","124452","425","124452","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113156","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167628","1483168044","1483277962","1483167628","1","1","0","-1","109918","416","109918","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113157","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167633","1483168044","1483252324","1483167633","1","1","0","-1","84280","411","84280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113158","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167638","1483168044","1483298762","1483167638","1","1","0","-1","130718","406","130718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113160","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167643","1483168044","1483260002","1483167643","1","1","0","-1","91958","401","91958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113161","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167647","1483168167","1483259657","1483167647","1","1","0","-1","91490","520","91490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113162","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167651","1483168167","1483284026","1483167651","1","1","0","-1","115859","516","115859","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113163","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483277512","1483167655","1","1","0","-1","109345","512","109345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113164","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483242064","1483167655","1","1","0","-1","73897","512","73897","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113165","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167659","1483168167","1483280729","1483167659","1","1","0","-1","112562","508","112562","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113166","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167661","1483168167","1483268600","1483167661","1","1","0","-1","100433","506","100433","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113167","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167668","1483168167","1483272750","1483167668","1","1","0","-1","104583","499","104583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113170","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167669","1483168167","1483271667","1483167669","1","1","0","-1","103500","498","103500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113172","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167672","1483168167","1483291830","1483167672","1","1","0","-1","123663","495","123663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113173","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167678","1483168167","1483310057","1483167678","1","1","0","-1","141890","489","141890","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113174","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167681","1483168167","1483234338","1483167681","1","1","0","-1","66171","486","66171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113175","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167684","1483168167","1483259402","1483167684","1","1","0","-1","91235","483","91235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113176","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167686","1483168167","1483270020","1483167686","1","1","0","-1","101853","481","101853","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113177","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167690","1483168167","1483284736","1483167690","1","1","0","-1","116569","477","116569","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113178","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167693","1483168167","1483267110","1483167693","1","1","0","-1","98943","474","98943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113179","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167694","1483168167","1483264504","1483167694","1","1","0","-1","96337","473","96337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113180","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167697","1483168167","1483306467","1483167697","1","1","0","-1","138300","470","138300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113181","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167701","1483168167","1483274669","1483167701","1","1","0","-1","106502","466","106502","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113182","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167704","1483168167","1483259110","1483167704","1","1","0","-1","90943","463","90943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113183","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167707","1483168293","1483284336","1483167707","1","1","0","-1","116043","586","116043","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113184","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167711","1483168293","1483279445","1483167711","1","1","0","-1","111152","582","111152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113186","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167717","1483168293","1483259448","1483167717","1","1","0","-1","91155","576","91155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113187","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167719","1483168293","1483241550","1483167719","1","1","0","-1","73257","574","73257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113188","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167721","1483168293","1483291051","1483167721","1","1","0","-1","122758","572","122758","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113189","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167724","1483168293","1483271123","1483167724","1","1","0","-1","102830","569","102830","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113190","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167734","1483168293","1483254905","1483167734","1","1","0","-1","86612","559","86612","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113191","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167745","1483168293","1483246951","1483167745","1","1","0","-1","78658","548","78658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113192","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167748","1483168293","1483302566","1483167748","1","1","0","-1","134273","545","134273","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167752","1483168293","1483297364","1483167752","1","1","0","-1","129071","541","129071","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113194","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167755","1483168293","1483310708","1483167755","1","1","0","-1","142415","538","142415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113195","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167759","1483168293","1483290930","1483167759","1","1","0","-1","122637","534","122637","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113197","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167766","1483168293","1483267912","1483167766","1","1","0","-1","99619","527","99619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113198","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167770","1483168293","1483274580","1483167770","1","1","0","-1","106287","523","106287","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113200","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167802","1483168293","1483303506","1483167802","1","1","0","-1","135213","491","135213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113201","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167805","1483168293","1483276261","1483167805","1","1","0","-1","107968","488","107968","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113202","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167809","1483168293","1483261686","1483167809","1","1","0","-1","93393","484","93393","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113203","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167812","1483168417","1483279694","1483167812","1","1","0","-1","111277","605","111277","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113204","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167818","1483168417","1483308104","1483167818","1","1","0","-1","139687","599","139687","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113205","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167820","1483168541","1483245671","1483167820","1","1","0","-1","77130","721","77130","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113206","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167822","1483168418","1483286459","1483167822","1","1","0","-1","118041","596","118041","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113207","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167827","1483168418","1483262590","1483167827","1","1","0","-1","94172","591","94172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113208","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167834","1483168418","1483280349","1483167834","1","1","0","-1","111931","584","111931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113209","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167836","1483168418","1483247171","1483167836","1","1","0","-1","78753","582","78753","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113210","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167839","1483168418","1483259214","1483167839","1","1","0","-1","90796","579","90796","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113211","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167841","1483168418","1483264389","1483167841","1","1","0","-1","95971","577","95971","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113212","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167842","1483168418","1483282201","1483167842","1","1","0","-1","113783","576","113783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113213","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167847","1483168418","1483277299","1483167847","1","1","0","-1","108881","571","108881","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113214","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167848","1483168418","1483307529","1483167848","1","1","0","-1","139111","570","139111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113215","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167852","1483168418","1483246671","1483167852","1","1","0","-1","78253","566","78253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113217","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167855","1483168418","1483291353","1483167855","1","1","0","-1","122935","563","122935","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113218","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167858","1483168418","1483277842","1483167858","1","1","0","-1","109424","560","109424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113219","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167861","1483168418","1483302922","1483167861","1","1","0","-1","134504","557","134504","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113220","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167866","1483168418","1483298033","1483167866","1","1","0","-1","129615","552","129615","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113222","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167877","1483168541","1483288257","1483167877","1","1","0","-1","119716","664","119716","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113223","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167882","1483168541","1483248685","1483167882","1","1","0","-1","80144","659","80144","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113224","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167886","1483168541","1483253377","1483167886","1","1","0","-1","84836","655","84836","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113225","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167892","1483168541","1483262702","1483167892","1","1","0","-1","94161","649","94161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167895","1483168541","1483293107","1483167895","1","1","0","-1","124566","646","124566","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113227","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167898","1483168541","1483263588","1483167898","1","1","0","-1","95047","643","95047","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113228","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167899","1483168541","1483282781","1483167899","1","1","0","-1","114240","642","114240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167901","1483168541","1483296085","1483167901","1","1","0","-1","127544","640","127544","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113230","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167908","1483168541","1483292794","1483167908","1","1","0","-1","124253","633","124253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113231","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167913","1483168541","1483257142","1483167913","1","1","0","-1","88601","628","88601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113232","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483283936","1483167915","1","1","0","-1","115395","626","115395","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113233","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483296310","1483167915","1","1","0","-1","127769","626","127769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113234","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167924","1483168541","1483306322","1483167924","1","1","0","-1","137781","617","137781","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113235","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167927","1483168541","1483306202","1483167927","1","1","0","-1","137661","614","137661","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113236","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167934","1483168541","1483274191","1483167934","1","1","0","-1","105650","607","105650","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113237","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167935","1483168541","1483253896","1483167935","1","1","0","-1","85355","606","85355","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113238","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167937","1483168541","1483296769","1483167937","1","1","0","-1","128228","604","128228","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167939","1483168541","1483263187","1483167939","1","1","0","-1","94646","602","94646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113240","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167974","1483168664","1483258435","1483167974","1","1","0","-1","89771","690","89771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167978","1483168664","1483274634","1483167978","1","1","0","-1","105970","686","105970","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113243","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167983","1483168664","1483263103","1483167983","1","1","0","-1","94439","681","94439","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113244","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167987","1483168664","1483278666","1483167987","1","1","0","-1","110002","677","110002","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113245","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167992","1483168664","1483287749","1483167992","1","1","0","-1","119085","672","119085","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167996","1483168664","1483284293","1483167996","1","1","0","-1","115629","668","115629","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167997","1483168664","1483270394","1483167997","1","1","0","-1","101730","667","101730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113248","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167998","1483168664","1483246154","1483167998","1","1","0","-1","77490","666","77490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113249","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168002","1483168664","1483298024","1483168002","1","1","0","-1","129360","662","129360","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113251","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168006","1483168664","1483296526","1483168006","1","1","0","-1","127862","658","127862","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113252","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168013","1483168664","1483255319","1483168013","1","1","0","-1","86655","651","86655","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113253","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168016","1483168664","1483284135","1483168016","1","1","0","-1","115471","648","115471","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113254","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168022","1483168664","1483301536","1483168022","1","1","0","-1","132872","642","132872","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168023","1483168664","1483276312","1483168023","1","1","0","-1","107648","641","107648","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168027","1483168664","1483242092","1483168027","1","1","0","-1","73428","637","73428","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168029","1483168664","1483269238","1483168029","1","1","0","-1","100574","635","100574","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168033","1483168664","1483272557","1483168033","1","1","0","-1","103893","631","103893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113259","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168037","1483168664","1483275539","1483168037","1","1","0","-1","106875","627","106875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113260","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168040","1483168786","1483275336","1483168040","1","1","0","-1","106550","746","106550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168045","1483168786","1483257934","1483168045","1","1","0","-1","89148","741","89148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168049","1483168786","1483262353","1483168049","1","1","0","-1","93567","737","93567","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113263","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168055","1483168786","1483246889","1483168055","1","1","0","-1","78103","731","78103","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168057","1483168786","1483270212","1483168057","1","1","0","-1","101426","729","101426","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483306737","1483168063","1","1","0","-1","137951","723","137951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113267","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483312064","1483168063","1","1","0","-1","143278","723","143278","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483260109","1483168063","1","1","0","-1","91323","723","91323","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483282835","1483168064","1","1","0","-1","114049","722","114049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113271","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483283551","1483168064","1","1","0","-1","114765","722","114765","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113272","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276006","1483168064","1","1","0","-1","107220","722","107220","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113273","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483274256","1483168064","1","1","0","-1","105470","722","105470","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113274","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276058","1483168064","1","1","0","-1","107272","722","107272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113276","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483284221","1483168064","1","1","0","-1","115435","722","115435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483291245","1483168064","1","1","0","-1","122459","722","122459","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113278","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168069","1483168786","1483282987","1483168069","1","1","0","-1","114201","717","114201","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168073","1483168909","1483280854","1483168073","1","1","0","-1","111945","836","111945","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168074","1483168909","1483241767","1483168074","1","1","0","-1","72858","835","72858","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113281","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168077","1483168909","1483261052","1483168077","1","1","0","-1","92143","832","92143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168078","1483168909","1483244528","1483168078","1","1","0","-1","75619","831","75619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113284","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168083","1483168909","1483283958","1483168083","1","1","0","-1","115049","826","115049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168084","1483168909","1483244547","1483168084","1","1","0","-1","75638","825","75638","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113286","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168118","1483168909","1483276125","1483168118","1","1","0","-1","107216","791","107216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168124","1483168909","1483266024","1483168124","1","1","0","-1","97115","785","97115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168126","1483168909","1483276477","1483168126","1","1","0","-1","107568","783","107568","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113289","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168128","1483168909","1483287643","1483168128","1","1","0","-1","118734","781","118734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168132","1483168909","1483294262","1483168132","1","1","0","-1","125353","777","125353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113291","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168138","1483168909","1483273730","1483168138","1","1","0","-1","104821","771","104821","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113292","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168142","1483168909","1483293516","1483168142","1","1","0","-1","124607","767","124607","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168152","1483168909","1483259052","1483168152","1","1","0","-1","90143","757","90143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168158","1483168909","1483237450","1483168158","1","1","0","-1","68541","751","68541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168160","1483168909","1483313682","1483168160","1","1","0","-1","144773","749","144773","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168163","1483168909","1483287534","1483168163","1","1","0","-1","118625","746","118625","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168172","1483168909","1483297855","1483168172","1","1","0","-1","128946","737","128946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113299","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168176","1483168909","1483243709","1483168176","1","1","0","-1","74800","733","74800","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113300","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168181","1483169032","1483274322","1483168181","1","1","0","-1","105290","851","105290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113301","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168186","1483169032","1483258568","1483168186","1","1","0","-1","89536","846","89536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113302","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168187","1483169032","1483272834","1483168187","1","1","0","-1","103802","845","103802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168189","1483169032","1483247340","1483168189","1","1","0","-1","78308","843","78308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113304","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169154","1483289411","1483168190","1","1","0","-1","120257","964","120257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483254966","1483168190","1","1","0","-1","85934","842","85934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113306","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483308992","1483168190","1","1","0","-1","139960","842","139960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113307","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483239129","1483168190","1","1","0","-1","70097","842","70097","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113308","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483312056","1483168190","1","1","0","-1","143024","842","143024","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113309","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483273872","1483168190","1","1","0","-1","104840","842","104840","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113310","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483298031","1483168190","1","1","0","-1","128999","842","128999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113311","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483305247","1483168190","1","1","0","-1","136215","842","136215","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483280565","1483168190","1","1","0","-1","111533","842","111533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113313","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168194","1483169032","1483283837","1483168194","1","1","0","-1","114805","838","114805","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113314","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168197","1483169032","1483297431","1483168197","1","1","0","-1","128399","835","128399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113315","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168201","1483169032","1483276984","1483168201","1","1","0","-1","107952","831","107952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113317","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483283710","1483168208","1","1","0","-1","114678","824","114678","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113318","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483248416","1483168208","1","1","0","-1","79384","824","79384","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113319","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168210","1483169154","1483310113","1483168210","1","1","0","-1","140959","944","140959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113320","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168214","1483169154","1483295878","1483168214","1","1","0","-1","126724","940","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168228","1483169154","1483287707","1483168228","1","1","0","-1","118553","926","118553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113322","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168230","1483169154","1483278429","1483168230","1","1","0","-1","109275","924","109275","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113323","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168233","1483169154","1483287981","1483168233","1","1","0","-1","118827","921","118827","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113324","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168238","1483169154","1483250746","1483168238","1","1","0","-1","81592","916","81592","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168243","1483169154","1483287940","1483168243","1","1","0","-1","118786","911","118786","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168245","1483169154","1483249333","1483168245","1","1","0","-1","80179","909","80179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168249","1483169154","1483300715","1483168249","1","1","0","-1","131561","905","131561","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113328","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168253","1483169154","1483260194","1483168253","1","1","0","-1","91040","901","91040","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168258","1483169154","1483279518","1483168258","1","1","0","-1","110364","896","110364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168259","1483169154","1483267360","1483168259","1","1","0","-1","98206","895","98206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168263","1483169154","1483276548","1483168263","1","1","0","-1","107394","891","107394","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113333","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168273","1483169154","1483254687","1483168273","1","1","0","-1","85533","881","85533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113334","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168278","1483169154","1483302710","1483168278","1","1","0","-1","133556","876","133556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168283","1483169154","1483258315","1483168283","1","1","0","-1","89161","871","89161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168288","1483169154","1483262299","1483168288","1","1","0","-1","93145","866","93145","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168291","1483169154","1483269817","1483168291","1","1","0","-1","100663","863","100663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168301","1483169279","1483267055","1483168301","1","1","0","-1","97776","978","97776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168305","1483169279","1483235134","1483168305","1","1","0","-1","65855","974","65855","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168307","1483169279","1483287038","1483168307","1","1","0","-1","117759","972","117759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168309","1483169279","1483314859","1483168309","1","1","0","-1","145580","970","145580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113342","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168312","1483169279","1483237172","1483168312","1","1","0","-1","67893","967","67893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168316","1483169279","1483252150","1483168316","1","1","0","-1","82871","963","82871","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113385","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171819","1483171856","1483282270","1483171819","1","1","0","-1","110414","37","110414","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171823","1483171856","1483279928","1483171823","1","1","0","-1","108072","33","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113394","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171859","1483171978","1483256151","1483171859","1","1","0","-1","84173","119","84173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113395","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171867","1483171978","1483254438","1483171867","1","1","0","-1","82460","111","82460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113396","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171871","1483171978","1483268945","1483171871","1","1","0","-1","96967","107","96967","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171880","1483171978","1483248421","1483171880","1","1","0","-1","76443","98","76443","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171885","1483171978","1483287436","1483171885","1","1","0","-1","115458","93","115458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171888","1483171978","1483309993","1483171888","1","1","0","-1","138015","90","138015","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171890","1483171978","1483309501","1483171890","1","1","0","-1","137523","88","137523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171891","1483171978","1483249947","1483171891","1","1","0","-1","77969","87","77969","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113402","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171898","1483171978","1483308217","1483171898","1","1","0","-1","136239","80","136239","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113403","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171903","1483171978","1483297802","1483171903","1","1","0","-1","125824","75","125824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113404","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171907","1483171978","1483279767","1483171907","1","1","0","-1","107789","71","107789","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113406","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171915","1483171978","1483282208","1483171915","1","1","0","-1","110230","63","110230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113407","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171926","1483171978","1483260323","1483171926","1","1","0","-1","88345","52","88345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113408","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171931","1483171978","1483312213","1483171931","1","1","0","-1","140235","47","140235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171932","1483171978","1483259488","1483171932","1","1","0","-1","87510","46","87510","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171935","1483171978","1483247531","1483171935","1","1","0","-1","75553","43","75553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113411","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171938","1483171978","1483275535","1483171938","1","1","0","-1","103557","40","103557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113412","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171941","1483171978","1483279405","1483171941","1","1","0","-1","107427","37","107427","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171945","1483172100","1483265904","1483171945","1","1","0","-1","93804","155","93804","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171947","1483172100","1483269408","1483171947","1","1","0","-1","97308","153","97308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171949","1483172100","1483280274","1483171949","1","1","0","-1","108174","151","108174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113416","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171950","1483172100","1483273212","1483171950","1","1","0","-1","101112","150","101112","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171959","1483172100","1483303709","1483171959","1","1","0","-1","131609","141","131609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171964","1483172100","1483307695","1483171964","1","1","0","-1","135595","136","135595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113419","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171970","1483172100","1483280353","1483171970","1","1","0","-1","108253","130","108253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113420","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171973","1483172100","1483289464","1483171973","1","1","0","-1","117364","127","117364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171977","1483172100","1483258325","1483171977","1","1","0","-1","86225","123","86225","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171983","1483172100","1483298824","1483171983","1","1","0","-1","126724","117","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113424","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171987","1483172100","1483291536","1483171987","1","1","0","-1","119436","113","119436","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113425","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171991","1483172100","1483286402","1483171991","1","1","0","-1","114302","109","114302","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171993","1483172100","1483289810","1483171993","1","1","0","-1","117710","107","117710","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171995","1483172100","1483268308","1483171995","1","1","0","-1","96208","105","96208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171999","1483172100","1483312092","1483171999","1","1","0","-1","139992","101","139992","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172000","1483172100","1483271960","1483172000","1","1","0","-1","99860","100","99860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172003","1483172100","1483280400","1483172003","1","1","0","-1","108300","97","108300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172006","1483172100","1483296273","1483172006","1","1","0","-1","124173","94","124173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172010","1483172100","1483276939","1483172010","1","1","0","-1","104839","90","104839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113433","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172013","1483172223","1483286718","1483172013","1","1","0","-1","114495","210","114495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172016","1483172223","1483259137","1483172016","1","1","0","-1","86914","207","86914","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113830","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200005","1483200053","1483296245","1483200005","1","1","0","-1","96192","48","96192","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113831","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200006","1483200053","1483298992","1483200006","1","1","0","-1","98939","47","98939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113832","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200007","1483200053","1483286337","1483200007","1","1","0","-1","86284","46","86284","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113833","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200011","1483200053","1483310003","1483200011","1","1","0","-1","109950","42","109950","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200013","1483200053","1483296688","1483200013","1","1","0","-1","96635","40","96635","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200017","1483200053","1483291976","1483200017","1","1","0","-1","91923","36","91923","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113836","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200018","1483200053","1483289913","1483200018","1","1","0","-1","89860","35","89860","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200048","1483200175","1483287999","1483200048","1","1","0","-1","87824","127","87824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113850","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200050","1483200175","1483293078","1483200050","1","1","0","-1","92903","125","92903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113864","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200058","1483200175","1483309147","1483200058","1","1","0","-1","108972","117","108972","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113866","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200064","1483200175","1483281545","1483200064","1","1","0","-1","81370","111","81370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113868","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292528","1483200066","1","1","0","-1","92353","109","92353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113869","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314377","1483200066","1","1","0","-1","114202","109","114202","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113870","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483281716","1483200066","1","1","0","-1","81541","109","81541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113871","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289925","1483200066","1","1","0","-1","89750","109","89750","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113873","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314312","1483200066","1","1","0","-1","114137","109","114137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113874","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483285844","1483200066","1","1","0","-1","85669","109","85669","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483315004","1483200066","1","1","0","-1","114829","109","114829","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483310674","1483200066","1","1","0","-1","110499","109","110499","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289097","1483200066","1","1","0","-1","88922","109","88922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113879","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483304947","1483200066","1","1","0","-1","104772","109","104772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113880","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292487","1483200066","1","1","0","-1","92312","109","92312","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483298771","1483200066","1","1","0","-1","98474","231","98474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483309627","1483200066","1","1","0","-1","109330","231","109330","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113885","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483313852","1483200066","1","1","0","-1","113555","231","113555","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113886","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483303395","1483200066","1","1","0","-1","103098","231","103098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113887","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483284263","1483200066","1","1","0","-1","83966","231","83966","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201086","1483201151","1483311521","1483201086","1","1","0","-1","110370","65","110370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201089","1483201151","1483293195","1483201089","1","1","0","-1","92044","62","92044","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201093","1483201151","1483286060","1483201093","1","1","0","-1","84909","58","84909","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201095","1483201151","1483289923","1483201095","1","1","0","-1","88772","56","88772","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201098","1483201151","1483289409","1483201098","1","1","0","-1","88258","53","88258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201100","1483201151","1483303639","1483201100","1","1","0","-1","102488","51","102488","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201104","1483201151","1483302425","1483201104","1","1","0","-1","101274","47","101274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201107","1483201151","1483288723","1483201107","1","1","0","-1","87572","44","87572","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201108","1483201151","1483297774","1483201108","1","1","0","-1","96623","43","96623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201113","1483201151","1483302374","1483201113","1","1","0","-1","101223","38","101223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201115","1483201151","1483304177","1483201115","1","1","0","-1","103026","36","103026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201119","1483201151","1483304928","1483201119","1","1","0","-1","103777","32","103777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483295032","1483201135","1","1","0","-1","93759","138","93759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114038","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483296629","1483201135","1","1","0","-1","95356","138","95356","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114040","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483286283","1483201135","1","1","0","-1","85010","138","85010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114041","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483288029","1483201135","1","1","0","-1","86756","138","86756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114042","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483279017","1483201135","1","1","0","-1","77744","138","77744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114043","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292728","1483201135","1","1","0","-1","91455","138","91455","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114044","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483310148","1483201135","1","1","0","-1","108875","138","108875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483315060","1483201135","1","1","0","-1","113787","138","113787","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483276183","1483201135","1","1","0","-1","74910","138","74910","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292998","1483201135","1","1","0","-1","91725","138","91725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201136","1483201273","1483298255","1483201136","1","1","0","-1","96982","137","96982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201139","1483201273","1483314421","1483201139","1","1","0","-1","113148","134","113148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201145","1483201273","1483304167","1483201145","1","1","0","-1","102894","128","102894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201147","1483201273","1483282985","1483201147","1","1","0","-1","81712","126","81712","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201148","1483201273","1483294052","1483201148","1","1","0","-1","92779","125","92779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201163","1483201397","1483297708","1483201163","1","1","0","-1","96311","234","96311","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483268423","1483201165","1","1","0","-1","67026","232","67026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483295408","1483201165","1","1","0","-1","94011","232","94011","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483279169","1483201165","1","1","0","-1","77772","232","77772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483271283","1483201165","1","1","0","-1","69886","232","69886","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483291388","1483201165","1","1","0","-1","89991","232","89991","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483311920","1483201165","1","1","0","-1","110523","232","110523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483276303","1483201165","1","1","0","-1","74906","232","74906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114449","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204151","1483204193","1483308118","1483204151","1","1","0","-1","103925","42","103925","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114450","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204156","1483204193","1483310364","1483204156","1","1","0","-1","106171","37","106171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114451","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204161","1483204193","1483298503","1483204161","1","1","0","-1","94310","32","94310","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114480","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204196","1483204314","1483287771","1483204196","1","1","0","-1","83457","118","83457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204205","1483204314","1483312386","1483204205","1","1","0","-1","108072","109","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204208","1483204314","1483291830","1483204208","1","1","0","-1","87516","106","87516","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114483","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483292696","1483204213","1","1","0","-1","88382","101","88382","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114484","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483291812","1483204213","1","1","0","-1","87498","101","87498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114485","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289916","1483204213","1","1","0","-1","85602","101","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114486","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289915","1483204213","1","1","0","-1","85601","101","85601","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114487","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483274136","1483204213","1","1","0","-1","69822","101","69822","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114488","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483303998","1483204213","1","1","0","-1","99684","101","99684","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114489","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483309919","1483204213","1","1","0","-1","105605","101","105605","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114490","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483306454","1483204213","1","1","0","-1","102140","101","102140","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204215","1483204314","1483294235","1483204215","1","1","0","-1","89921","99","89921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114493","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204222","1483204314","1483310894","1483204222","1","1","0","-1","106580","92","106580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114494","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204225","1483204314","1483286158","1483204225","1","1","0","-1","81844","89","81844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114495","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204229","1483204314","1483289923","1483204229","1","1","0","-1","85609","85","85609","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114496","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204233","1483204314","1483289218","1483204233","1","1","0","-1","84904","81","84904","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114498","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204314","1483289916","1483204234","1","1","0","-1","85602","80","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114501","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483289927","1483204234","1","1","0","-1","85492","201","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114502","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483304933","1483204234","1","1","0","-1","100498","201","100498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483285783","1483204234","1","1","0","-1","81348","201","81348","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114506","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483295366","1483204234","1","1","0","-1","90931","201","90931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483293296","1483204234","1","1","0","-1","88861","201","88861","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204237","1483204435","1483289927","1483204237","1","1","0","-1","85492","198","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114512","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204252","1483204435","1483299417","1483204252","1","1","0","-1","94982","183","94982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114513","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204255","1483204435","1483303675","1483204255","1","1","0","-1","99240","180","99240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114515","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204264","1483204435","1483293730","1483204264","1","1","0","-1","89295","171","89295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206183","1483206254","1483297400","1483206183","1","1","0","-1","91146","71","91146","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206186","1483206254","1483293310","1483206186","1","1","0","-1","87056","68","87056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114837","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206191","1483206254","1483306501","1483206191","1","1","0","-1","100247","63","100247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114838","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206193","1483206254","1483312905","1483206193","1","1","0","-1","106651","61","106651","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206195","1483206254","1483313495","1483206195","1","1","0","-1","107241","59","107241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206199","1483206254","1483308989","1483206199","1","1","0","-1","102735","55","102735","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114842","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206205","1483206254","1483312880","1483206205","1","1","0","-1","106626","49","106626","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206208","1483206254","1483309979","1483206208","1","1","0","-1","103725","46","103725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114845","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206215","1483206254","1483311066","1483206215","1","1","0","-1","104812","39","104812","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206218","1483206254","1483273868","1483206218","1","1","0","-1","67614","36","67614","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206263","1483206375","1483306945","1483206263","1","1","0","-1","100570","112","100570","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483295609","1483206270","1","1","0","-1","89234","105","89234","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483283086","1483206270","1","1","0","-1","76711","105","76711","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206286","1483206375","1483303608","1483206286","1","1","0","-1","97233","89","97233","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114882","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206287","1483206375","1483302011","1483206287","1","1","0","-1","95636","88","95636","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206290","1483206375","1483298553","1483206290","1","1","0","-1","92178","85","92178","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114928","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207478","1483207590","1483302149","1483207478","1","1","0","-1","94559","112","94559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114929","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207484","1483207590","1483313429","1483207484","1","1","0","-1","105839","106","105839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483312903","1483207487","1","1","0","-1","105313","103","105313","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483298820","1483207487","1","1","0","-1","91230","103","91230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114936","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483303919","1483207487","1","1","0","-1","96329","103","96329","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114937","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483301878","1483207487","1","1","0","-1","94288","103","94288","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114940","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483302483","1483207487","1","1","0","-1","94893","103","94893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483311321","1483207487","1","1","0","-1","103731","103","103731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114945","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483304393","1483207487","1","1","0","-1","96803","103","96803","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114946","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483295980","1483207487","1","1","0","-1","88390","103","88390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483300743","1483207487","1","1","0","-1","93032","224","93032","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483309082","1483207487","1","1","0","-1","101371","224","101371","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483313051","1483207487","1","1","0","-1","105340","224","105340","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483291993","1483207487","1","1","0","-1","84282","224","84282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114955","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207488","1483207711","1483301833","1483207488","1","1","0","-1","94122","223","94122","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207491","1483207711","1483295375","1483207491","1","1","0","-1","87664","220","87664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207494","1483207711","1483307072","1483207494","1","1","0","-1","99361","217","99361","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114960","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207500","1483207711","1483295229","1483207500","1","1","0","-1","87518","211","87518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114962","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207502","1483207711","1483313818","1483207502","1","1","0","-1","106107","209","106107","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114963","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207503","1483207711","1483303828","1483207503","1","1","0","-1","96117","208","96117","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114964","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207507","1483207711","1483285846","1483207507","1","1","0","-1","78135","204","78135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208320","1483208439","1483306711","1483208320","1","1","0","-1","98272","119","98272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208331","1483208439","1483306288","1483208331","1","1","0","-1","97849","108","97849","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114978","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208340","1483208439","1483303748","1483208340","1","1","0","-1","95309","99","95309","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208342","1483208439","1483306661","1483208342","1","1","0","-1","98222","97","98222","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208347","1483208439","1483303635","1483208347","1","1","0","-1","95196","92","95196","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208351","1483208439","1483289936","1483208351","1","1","0","-1","81497","88","81497","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208353","1483208439","1483288765","1483208353","1","1","0","-1","80326","86","80326","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208357","1483208439","1483299953","1483208357","1","1","0","-1","91514","82","91514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208359","1483208439","1483308874","1483208359","1","1","0","-1","100435","80","100435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208381","1483208560","1483288374","1483208381","1","1","0","-1","79814","179","79814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208387","1483208560","1483285114","1483208387","1","1","0","-1","76554","173","76554","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208390","1483208560","1483299079","1483208390","1","1","0","-1","90519","170","90519","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208401","1483208560","1483311766","1483208401","1","1","0","-1","103206","159","103206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208410","1483208560","1483287596","1483208410","1","1","0","-1","79036","150","79036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208422","1483208560","1483304512","1483208422","1","1","0","-1","95952","138","95952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208431","1483208560","1483285979","1483208431","1","1","0","-1","77419","129","77419","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208452","1483208560","1483294406","1483208452","1","1","0","-1","85846","108","85846","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208560","1483302388","1483208454","1","1","0","-1","93828","106","93828","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483276469","1483208454","1","1","0","-1","67788","227","67788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483307414","1483208454","1","1","0","-1","98733","227","98733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483290458","1483208454","1","1","0","-1","81777","227","81777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115014","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483311060","1483208454","1","1","0","-1","102379","227","102379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213480","1483213534","1483282058","1483213480","1","1","0","-1","68524","54","68524","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115106","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213489","1483213534","1483306835","1483213489","1","1","0","-1","93301","45","93301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213492","1483213534","1483291252","1483213492","1","1","0","-1","77718","42","77718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483292373","1483213550","1","1","0","-1","78718","105","78718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115128","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483289686","1483213550","1","1","0","-1","76031","105","76031","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483294594","1483213550","1","1","0","-1","80939","105","80939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115132","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483281233","1483213550","1","1","0","-1","67578","105","67578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483303422","1483213550","1","1","0","-1","89767","105","89767","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115134","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483307027","1483213550","1","1","0","-1","93372","105","93372","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222533","1483222630","1483304685","1483222533","1","1","0","-1","82055","97","82055","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222534","1483222630","1483289923","1483222534","1","1","0","-1","67293","96","67293","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222540","1483222630","1483291327","1483222540","1","1","0","-1","68697","90","68697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222541","1483222630","1483310687","1483222541","1","1","0","-1","88057","89","88057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222542","1483222630","1483289282","1483222542","1","1","0","-1","66652","88","66652","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222560","1483222630","1483311524","1483222560","1","1","0","-1","88894","70","88894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222563","1483222630","1483314587","1483222563","1","1","0","-1","91957","67","91957","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222574","1483222750","1483304020","1483222574","1","1","0","-1","81270","176","81270","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222580","1483222750","1483301313","1483222580","1","1","0","-1","78563","170","78563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222586","1483222750","1483307812","1483222586","1","1","0","-1","85062","164","85062","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222606","1483222750","1483309483","1483222606","1","1","0","-1","86733","144","86733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115620","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231340","1483231467","1483298945","1483231340","1","1","0","-1","67478","127","67478","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115637","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231347","1483231467","1483302395","1483231347","1","1","0","-1","70928","120","70928","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115646","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231591","1483231710","1483313236","1483231591","1","1","0","-1","81526","119","81526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115647","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231592","1483231710","1483310917","1483231592","1","1","0","-1","79207","118","79207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115696","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231657","1483231953","1483311763","1483231657","1","1","0","-1","79810","296","79810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115717","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231679","1483232075","1483311252","1483231679","1","1","0","-1","79177","396","79177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483314600","1483243516","1","1","0","-1","70998","86","70998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483309681","1483243516","1","1","0","-1","66079","86","66079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6107586[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[7]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[8]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[9]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483279393","1483036371","1","1","0","-1","242924","98","242924","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483275136","1483036371","1","1","0","-1","238667","98","238667","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[11]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[12]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483270817","1483036371","1","1","0","-1","234348","98","234348","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[15]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483246881","1483036371","1","1","0","-1","210283","227","210283","0","1:0","FAILED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[21]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483240052","1483036371","1","1","0","-1","203454","227","203454","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[27]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483254894","1483039080","1","1","0","-1","215685","131","215685","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[25]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[29]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046922","1483306143","1483046357","1","1","0","-1","259221","565","259221","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483231734","1483046357","1","1","0","-1","185225","152","185225","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[21]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[23]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483296209","1483046357","1","1","0","-1","249566","286","249566","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[24]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[25]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[27]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046778","1483272476","1483046357","1","1","0","-1","225698","421","225698","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108716[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483229565","1483072475","1","1","0","-1","156978","112","156978","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108716[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483270842","1483072475","1","1","0","-1","198255","112","198255","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108800[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483076091","1483076144","1483267927","1483076091","1","1","0","-1","191783","53","191783","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6109585[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483271049","1483109379","1","1","0","-1","161616","56","161616","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6109585[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483312425","1483109379","1","1","0","-1","202992","56","202992","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6111029[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483125543","1483310202","1483125395","1","1","0","-1","184659","149","184659","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112885[16]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148065","1483148185","1483297208","1483148066","1","1","0","-1","149023","120","149023","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112886[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148290","1483148436","1483266206","1483148293","1","1","0","-1","117770","146","117770","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112887[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148944","1483149064","1483255470","1483148944","1","1","0","-1","106406","120","106406","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112904[23]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483155055","1483155085","1483298241","1483155055","1","1","0","-1","143156","30","143156","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107628","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037326","1483037758","1483296961","1483037326","1","8","0","-1","259203","432","2073624","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107630","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037377","1483037889","1483297112","1483037377","1","8","0","-1","259223","512","2073784","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107635","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037430","1483038146","1483297352","1483037430","1","8","0","-1","259206","716","2073648","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107647","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037509","1483038280","1483297502","1483037509","1","8","0","-1","259222","771","2073776","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6108907","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079550","1483079610","1483308226","1483079550","1","8","0","-1","228616","60","1828928","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6108910","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079655","1483079739","1483308222","1483079655","1","8","0","-1","228483","84","1827864","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["995647","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144144","1483273604","1483144114","1","8","0","-1","129460","30","1035680","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995648","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144145","1483283483","1483144114","1","8","0","-1","139338","31","1114704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995650","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144147","1483274577","1483144114","1","8","0","-1","130430","33","1043440","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995652","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144149","1483292769","1483144114","1","8","0","-1","148620","35","1188960","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995653","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144150","1483274570","1483144114","1","8","0","-1","130420","36","1043360","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995654","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483277818","1483144114","1","8","0","-1","133666","38","1069328","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995655","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483286039","1483144114","1","8","0","-1","141887","38","1135096","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995656","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144154","1483273511","1483144114","1","8","0","-1","129357","40","1034856","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995657","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144155","1483280557","1483144115","1","8","0","-1","136402","40","1091216","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995658","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483277112","1483144115","1","8","0","-1","132954","43","1063632","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995659","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483275125","1483144115","1","8","0","-1","130967","43","1047736","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["1016250","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483186506","1483186577","1483254650","1483186506","1","8","0","-1","68073","71","544584","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019924","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483239618","1483239703","1483306378","1483239618","1","8","0","-1","66675","85","533400","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6112942","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161215","1483161307","1483236730","1483161215","2","24","0","-1","75423","92","1810152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112943","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161224","1483161307","1483266720","1483161224","2","24","0","-1","105413","83","2529912","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112944","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161230","1483161307","1483272990","1483161230","2","24","0","-1","111683","77","2680392","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112945","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161240","1483161307","1483240755","1483161240","2","24","0","-1","79448","67","1906752","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6114330","Robertson","UTC","","Warbler, Sardinian","Screwdriver","derby","1483203444","1483203589","1483285437","1483203444","4","32","0","-1","81848","145","2619136","0","0:0","CANCELLED by 284857","32","2147486448Mn","259200","white","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6108018","Robertson","UTC","","Duck, Ferruginous","Screwdriver","derby","1483045081","1483045193","1483297221","1483045081","5","60","0","-1","252028","112","15121680","0","0:0","COMPLETED","60","2147486448Mn","255000","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6111029[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483127378","1483231867","1483125395","1","1","0","-1","104489","1984","104489","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6110309","Robertson","UTC","","Thrush, Mistle","Screwdriver","curry","1483118113","1483120705","1483246965","1483118113","1","12","0","-1","126260","2592","1515120","0","1:0","FAILED","12","2147486448Mn","259200","white","Mathematical and Physical Sciences","Mathematical Sciences","Algebra and Number Theory"],["6110932","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122816","1483129199","1483260184","1483122816","1","1","0","-1","130985","6383","130985","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122827","1483129199","1483241049","1483122827","1","1","0","-1","111850","6372","111850","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122833","1483129199","1483243971","1483122833","1","1","0","-1","114772","6366","114772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110941","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122862","1483129199","1483279653","1483122862","1","1","0","-1","150454","6337","150454","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122866","1483129199","1483253444","1483122866","1","1","0","-1","124245","6333","124245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110944","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122873","1483129199","1483239135","1483122873","1","1","0","-1","109936","6326","109936","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122883","1483129199","1483250001","1483122883","1","1","0","-1","120802","6316","120802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110949","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122889","1483129199","1483269172","1483122889","1","1","0","-1","139973","6310","139973","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122898","1483129199","1483257196","1483122898","1","1","0","-1","127997","6301","127997","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122905","1483129199","1483270373","1483122905","1","1","0","-1","141174","6294","141174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122914","1483129199","1483258374","1483122914","1","1","0","-1","129175","6285","129175","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122927","1483130416","1483232571","1483122927","1","1","0","-1","102155","7489","102155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122928","1483130416","1483269146","1483122928","1","1","0","-1","138730","7488","138730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110959","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122941","1483130416","1483247414","1483122941","1","1","0","-1","116998","7475","116998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110961","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122956","1483130416","1483281503","1483122956","1","1","0","-1","151087","7460","151087","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110965","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122986","1483130940","1483254090","1483122986","1","1","0","-1","123150","7954","123150","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122991","1483130940","1483235921","1483122991","1","1","0","-1","104981","7949","104981","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110967","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122993","1483130940","1483244686","1483122993","1","1","0","-1","113746","7947","113746","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110969","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122999","1483140833","1483230389","1483122999","1","1","0","-1","89556","17834","89556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110970","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123006","1483140833","1483231508","1483123006","1","1","0","-1","90675","17827","90675","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110971","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123011","1483140833","1483243740","1483123011","1","1","0","-1","102907","17822","102907","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123014","1483140833","1483246134","1483123014","1","1","0","-1","105301","17819","105301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110973","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123020","1483140833","1483249560","1483123020","1","1","0","-1","108727","17813","108727","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110974","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123028","1483140833","1483237007","1483123028","1","1","0","-1","96174","17805","96174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123031","1483140833","1483232693","1483123031","1","1","0","-1","91860","17802","91860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110976","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123039","1483140833","1483265721","1483123039","1","1","0","-1","124888","17794","124888","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123058","1483140833","1483259832","1483123058","1","1","0","-1","118999","17775","118999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123059","1483140833","1483242584","1483123059","1","1","0","-1","101751","17774","101751","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123062","1483140833","1483246293","1483123062","1","1","0","-1","105460","17771","105460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123074","1483140833","1483254460","1483123074","1","1","0","-1","113627","17759","113627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123081","1483140833","1483254648","1483123081","1","1","0","-1","113815","17752","113815","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123088","1483140833","1483249312","1483123088","1","1","0","-1","108479","17745","108479","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130503","1483140958","1483273994","1483130503","1","1","0","-1","133036","10455","133036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111669","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130511","1483140958","1483261777","1483130511","1","1","0","-1","120819","10447","120819","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111670","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130519","1483140958","1483237534","1483130519","1","1","0","-1","96576","10439","96576","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130527","1483140958","1483255977","1483130527","1","1","0","-1","115019","10431","115019","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111692","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130555","1483140958","1483255361","1483130555","1","1","0","-1","114403","10403","114403","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130560","1483140958","1483230064","1483130560","1","1","0","-1","89106","10398","89106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111695","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130575","1483143765","1483230749","1483130575","1","1","0","-1","86984","13190","86984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111697","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130582","1483143765","1483258716","1483130582","1","1","0","-1","114951","13183","114951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111700","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130589","1483146922","1483268786","1483130589","1","1","0","-1","121864","16333","121864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111701","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130598","1483146922","1483242979","1483130598","1","1","0","-1","96057","16324","96057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111702","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130612","1483146922","1483287626","1483130612","1","1","0","-1","140704","16310","140704","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111029[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483129193","1483303395","1483125395","1","1","0","-1","174202","3799","174202","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["964695","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959827","1483244087","1482955559","1","16","0","-1","284260","4268","4548160","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964696","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959922","1483241046","1482955559","1","16","0","-1","281124","4363","4497984","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964697","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483244842","1482955560","1","16","0","-1","283623","5659","4537968","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964698","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483243832","1482955560","1","16","0","-1","282613","5659","4521808","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964699","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961261","1483252567","1482955560","1","16","0","-1","291306","5701","4660896","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964700","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482963515","1483249666","1482955560","1","16","0","-1","286151","7955","4578416","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964701","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482964505","1483248060","1482955560","1","16","0","-1","283555","8945","4536880","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964702","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482966664","1483246450","1482955560","1","16","0","-1","279786","11104","4476576","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964703","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482968430","1483254631","1482955560","1","16","0","-1","286201","12870","4579216","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964704","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482969745","1483253462","1482955560","1","16","0","-1","283717","14185","4539472","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964705","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482969934","1483255664","1482955561","1","16","0","-1","285730","14373","4571680","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964706","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482972508","1483258765","1482955561","1","16","0","-1","286257","16947","4580112","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["6112948","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161271","1483177476","1483287539","1483161271","2","16","0","-1","110063","16205","1761008","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112946","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161251","1483169402","1483254005","1483161251","2","24","0","-1","84603","8151","2030472","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112947","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161259","1483170757","1483266921","1483161259","2","24","0","-1","96164","9498","2307936","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112949","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161281","1483178210","1483258133","1483161281","2","24","0","-1","79923","16929","1918152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6111703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130621","1483149447","1483259968","1483130621","1","1","0","-1","110521","18826","110521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111704","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130626","1483149447","1483259737","1483130626","1","1","0","-1","110290","18821","110290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111705","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130632","1483149447","1483243256","1483130632","1","1","0","-1","93809","18815","93809","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130637","1483149447","1483262042","1483130637","1","1","0","-1","112595","18810","112595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130644","1483149447","1483251123","1483130644","1","1","0","-1","101676","18803","101676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111708","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130651","1483149571","1483245286","1483130651","1","1","0","-1","95715","18920","95715","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111709","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483243917","1483130661","1","1","0","-1","94346","18910","94346","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111710","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483297967","1483130661","1","1","0","-1","148396","18910","148396","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111711","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130663","1483149571","1483262372","1483130663","1","1","0","-1","112801","18908","112801","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111731","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130683","1483149571","1483273166","1483130683","1","1","0","-1","123595","18888","123595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111732","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130695","1483149571","1483247653","1483130695","1","1","0","-1","98082","18876","98082","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111733","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130702","1483149697","1483291977","1483130702","1","1","0","-1","142280","18995","142280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111734","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130705","1483149697","1483267146","1483130705","1","1","0","-1","117449","18992","117449","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111735","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130713","1483149697","1483289923","1483130713","1","1","0","-1","140226","18984","140226","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111736","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130716","1483149697","1483273378","1483130716","1","1","0","-1","123681","18981","123681","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111737","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130723","1483149697","1483271994","1483130723","1","1","0","-1","122297","18974","122297","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111738","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130728","1483149697","1483233193","1483130728","1","1","0","-1","83496","18969","83496","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111739","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130742","1483149697","1483247179","1483130742","1","1","0","-1","97482","18955","97482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111741","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130745","1483149823","1483259432","1483130745","1","1","0","-1","109609","19078","109609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111742","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130747","1483149823","1483250848","1483130747","1","1","0","-1","101025","19076","101025","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111743","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130752","1483149823","1483264028","1483130752","1","1","0","-1","114205","19071","114205","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111744","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130755","1483150068","1483240027","1483130755","1","1","0","-1","89959","19313","89959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111748","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130786","1483150190","1483235543","1483130786","1","1","0","-1","85353","19404","85353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111749","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130795","1483150312","1483286368","1483130795","1","1","0","-1","136056","19517","136056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130826","1483150312","1483254519","1483130826","1","1","0","-1","104207","19486","104207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130836","1483150312","1483260043","1483130836","1","1","0","-1","109731","19476","109731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111772","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130843","1483150312","1483261777","1483130843","1","1","0","-1","111465","19469","111465","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111773","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130848","1483150312","1483236580","1483130848","1","1","0","-1","86268","19464","86268","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111774","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130853","1483150312","1483240561","1483130853","1","1","0","-1","90249","19459","90249","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130859","1483150434","1483289924","1483130859","1","1","0","-1","139490","19575","139490","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108176","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483049788","1483075619","1483248447","1483049788","1","12","0","-1","172828","25831","2073936","0","1:0","TIMEOUT","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109583","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109304","1483130147","1483256250","1483109304","1","12","0","-1","126103","20843","1513236","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109608","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109465","1483130016","1483257008","1483109465","1","12","0","-1","126992","20551","1523904","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109610","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109484","1483130147","1483229691","1483109484","1","12","0","-1","99544","20663","1194528","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["964707","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482974294","1483257177","1482955561","1","16","0","-1","282883","18733","4526128","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["6112950","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161291","1483179921","1483263236","1483161291","2","24","0","-1","83315","18630","1999560","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6108913","Robertson","UTC","","Peregrine","Screwdriver","derby","1483079747","1483130147","1483238294","1483079747","5","60","0","-1","108147","50400","6488820","0","0:0","COMPLETED","60","2147486448Mn","110400","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6071470","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916662","1483044536","1483271836","1483044426","1","8","0","-1","227300","1127874","1818400","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071484","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916957","1483044536","1483298941","1483044426","1","8","0","-1","254405","1127579","2035240","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071502","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481917808","1483085948","1483273485","1483064965","1","8","0","-1","187537","1168140","1500296","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071518","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918137","1483184680","1483294800","1483184668","1","8","0","-1","110120","1266543","880960","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071523","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918281","1483184680","1483305127","1483184668","1","8","0","-1","120447","1266399","963576","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071529","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918529","1483184680","1483292468","1483184668","1","8","0","-1","107788","1266151","862304","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071533","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918630","1483184680","1483309102","1483184660","1","8","0","-1","124422","1266050","995376","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["995282","Posidriv","UTC","","Ovenbird","Screwdriver","bavarian-cream","1482865454","1483205093","1483312407","1482865454","1","16","0","-1","107314","339639","1717024","0","0:0","COMPLETED","16","125Gn","345600","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"],["6101316","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784833","1482973835","1483233058","1482784833","8","96","0","-1","259223","189002","24885408","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101317","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784877","1482974692","1483233932","1482784877","8","96","0","-1","259240","189815","24887040","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101752","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811393","1482974692","1483233933","1482811393","8","96","0","-1","259241","163299","24887136","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101753","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811463","1482974940","1483234228","1482811463","8","96","0","-1","259288","163477","24891648","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101754","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811513","1482977031","1483236242","1482811513","8","96","0","-1","259211","165518","24884256","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101755","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811582","1482977031","1483236244","1482811582","8","96","0","-1","259213","165449","24884448","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101756","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811640","1482978251","1483237480","1482811640","8","96","0","-1","259229","166611","24885984","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"]]} +{"success":true,"fields":["Local Job Id","Local Job Id Raw","Resource","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"],"data":[["1012557[29]","1019389","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288350","1483293912","1483230521","1","12","0","-1","5562","57829","66744","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[30]","1019404","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288495","1483292972","1483230521","1","12","0","-1","4477","57974","53724","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[31]","1019419","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288619","1483293176","1483230521","1","12","0","-1","4557","58098","54684","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[32]","1019420","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288670","1483293468","1483230521","1","12","0","-1","4798","58149","57576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[33]","1019421","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288672","1483292962","1483230521","1","12","0","-1","4290","58151","51480","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[34]","1019529","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289641","1483294183","1483230521","1","12","0","-1","4542","59120","54504","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[35]","1019530","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289653","1483294283","1483230521","1","12","0","-1","4630","59132","55560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[36]","1019549","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289824","1483294346","1483230521","1","12","0","-1","4522","59303","54264","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[37]","1019614","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483290566","1483295262","1483230521","1","12","0","-1","4696","60045","56352","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[38]","1019752","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483291925","1483296248","1483230521","1","12","0","-1","4323","61404","51876","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[39]","1019769","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292281","1483296708","1483230521","1","12","0","-1","4427","61760","53124","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[40]","1019830","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292962","1483297444","1483230521","1","12","0","-1","4482","62441","53784","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[41]","1019839","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292973","1483297542","1483230521","1","12","0","-1","4569","62452","54828","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[42]","1019889","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293176","1483297480","1483230521","1","12","0","-1","4304","62655","51648","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[43]","1019906","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293468","1483298032","1483230521","1","12","0","-1","4564","62947","54768","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[44]","1019972","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293912","1483298792","1483230521","1","12","0","-1","4880","63391","58560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[45]","1020005","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294183","1483299108","1483230521","1","12","0","-1","4925","63662","59100","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[46]","1020008","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294283","1483299006","1483230521","1","12","0","-1","4723","63762","56676","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[47]","1020009","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294346","1483299595","1483230521","1","12","0","-1","5249","63825","62988","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[48]","1020127","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295212","1483300731","1483230521","1","12","0","-1","5519","64691","66228","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[49]","1020128","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295263","1483299479","1483230521","1","12","0","-1","4216","64742","50592","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6108925","6108925","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080369","1483232750","1483238034","1483080369","1","8","0","-1","5284","152381","42272","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6112983","6112983","Robertson","UTC","","Dunlin","Screwdriver","curry","1483166772","1483239075","1483243977","1483166772","1","8","0","-1","4902","72303","39216","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6108976","6108976","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083320","1483222024","1483230247","1483083320","1","8","0","-1","8223","138704","65784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108977","6108977","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083401","1483222024","1483230759","1483083401","1","8","0","-1","8735","138623","69880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108991","6108991","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483084371","1483222750","1483229088","1483084371","1","8","0","-1","6338","138379","50704","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108995","6108995","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085380","1483223112","1483234712","1483085380","1","8","0","-1","11600","137732","92800","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108996","6108996","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085590","1483223112","1483229540","1483085590","1","8","0","-1","6428","137522","51424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108997","6108997","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085746","1483223234","1483230389","1483085746","1","8","0","-1","7155","137488","57240","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108998","6108998","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085849","1483223234","1483229603","1483085849","1","8","0","-1","6369","137385","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108999","6108999","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085883","1483223355","1483229322","1483085883","1","8","0","-1","5967","137472","47736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109002","6109002","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086333","1483223598","1483230052","1483086333","1","8","0","-1","6454","137265","51632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109003","6109003","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086372","1483223598","1483230207","1483086372","1","8","0","-1","6609","137226","52872","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109004","6109004","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086630","1483223598","1483229043","1483086630","1","8","0","-1","5445","136968","43560","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109007","6109007","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086757","1483223719","1483229287","1483086757","1","8","0","-1","5568","136962","44544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109008","6109008","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086851","1483223719","1483229022","1483086851","1","8","0","-1","5303","136868","42424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109010","6109010","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086869","1483223719","1483229903","1483086869","1","8","0","-1","6184","136850","49472","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109011","6109011","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087068","1483223840","1483229090","1483087068","1","8","0","-1","5250","136772","42000","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109017","6109017","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087348","1483223961","1483229678","1483087348","1","8","0","-1","5717","136613","45736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109020","6109020","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087552","1483224082","1483228824","1483087552","1","8","0","-1","4742","136530","37936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109024","6109024","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087885","1483224204","1483229349","1483087885","1","8","0","-1","5145","136319","41160","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109025","6109025","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087997","1483224325","1483230127","1483087997","1","8","0","-1","5802","136328","46416","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109027","6109027","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088108","1483224446","1483229274","1483088108","1","8","0","-1","4828","136338","38624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109030","6109030","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088363","1483224446","1483229480","1483088363","1","8","0","-1","5034","136083","40272","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109032","6109032","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088713","1483224566","1483231633","1483088713","1","8","0","-1","7067","135853","56536","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109033","6109033","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088719","1483224566","1483230228","1483088719","1","8","0","-1","5662","135847","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109034","6109034","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088738","1483224566","1483229332","1483088738","1","8","0","-1","4766","135828","38128","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109035","6109035","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088782","1483224566","1483230787","1483088782","1","8","0","-1","6221","135784","49768","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109036","6109036","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088824","1483224566","1483229580","1483088824","1","8","0","-1","5014","135742","40112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109037","6109037","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088866","1483224687","1483231394","1483088866","1","8","0","-1","6707","135821","53656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109038","6109038","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088941","1483224687","1483230384","1483088941","1","8","0","-1","5697","135746","45576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109039","6109039","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089098","1483224687","1483229672","1483089098","1","8","0","-1","4985","135589","39880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109040","6109040","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089159","1483224687","1483228992","1483089159","1","8","0","-1","4305","135528","34440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109041","6109041","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089488","1483224687","1483230409","1483089488","1","8","0","-1","5722","135199","45776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109044","6109044","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089787","1483224687","1483229177","1483089787","1","8","0","-1","4490","134900","35920","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109046","6109046","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089959","1483224808","1483229815","1483089959","1","8","0","-1","5007","134849","40056","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109047","6109047","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090136","1483224808","1483229901","1483090136","1","8","0","-1","5093","134672","40744","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109048","6109048","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090183","1483224808","1483229514","1483090183","1","8","0","-1","4706","134625","37648","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109051","6109051","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090770","1483224808","1483229619","1483090770","1","8","0","-1","4811","134038","38488","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109052","6109052","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090793","1483224808","1483229126","1483090793","1","8","0","-1","4318","134015","34544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109053","6109053","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090812","1483224929","1483231271","1483090812","1","8","0","-1","6342","134117","50736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109054","6109054","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090864","1483224929","1483230715","1483090864","1","8","0","-1","5786","134065","46288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109055","6109055","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090919","1483224929","1483230261","1483090919","1","8","0","-1","5332","134010","42656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109056","6109056","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091023","1483225050","1483231751","1483091023","1","8","0","-1","6701","134027","53608","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109057","6109057","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091053","1483225050","1483230871","1483091053","1","8","0","-1","5821","133997","46568","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109058","6109058","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091231","1483225050","1483229940","1483091231","1","8","0","-1","4890","133819","39120","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109059","6109059","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091458","1483225171","1483231609","1483091458","1","8","0","-1","6438","133713","51504","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109060","6109060","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091633","1483225171","1483229708","1483091633","1","8","0","-1","4537","133538","36296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109061","6109061","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091834","1483225171","1483230308","1483091834","1","8","0","-1","5137","133337","41096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109062","6109062","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091958","1483225171","1483230781","1483091958","1","8","0","-1","5610","133213","44880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109063","6109063","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092218","1483225412","1483230799","1483092218","1","8","0","-1","5387","133194","43096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109064","6109064","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092233","1483225533","1483231071","1483092233","1","8","0","-1","5538","133300","44304","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109065","6109065","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092254","1483225533","1483231436","1483092254","1","8","0","-1","5903","133279","47224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109066","6109066","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092263","1483225533","1483232483","1483092263","1","8","0","-1","6950","133270","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109067","6109067","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092267","1483225533","1483230237","1483092267","1","8","0","-1","4704","133266","37632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109068","6109068","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092363","1483225533","1483230561","1483092363","1","8","0","-1","5028","133170","40224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109069","6109069","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092400","1483225533","1483231113","1483092400","1","8","0","-1","5580","133133","44640","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109072","6109072","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092705","1483225533","1483230470","1483092705","1","8","0","-1","4937","132828","39496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109073","6109073","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092793","1483225654","1483231218","1483092793","1","8","0","-1","5564","132861","44512","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109074","6109074","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092840","1483225654","1483231087","1483092840","1","8","0","-1","5433","132814","43464","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109075","6109075","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092891","1483225654","1483230733","1483092891","1","8","0","-1","5079","132763","40632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109077","6109077","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093085","1483225897","1483231591","1483093085","1","8","0","-1","5694","132812","45552","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109078","6109078","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093167","1483225897","1483231551","1483093167","1","8","0","-1","5654","132730","45232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109079","6109079","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093391","1483225897","1483230730","1483093391","1","8","0","-1","4833","132506","38664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109080","6109080","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093636","1483225897","1483231622","1483093636","1","8","0","-1","5725","132261","45800","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109081","6109081","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093739","1483225897","1483231858","1483093739","1","8","0","-1","5961","132158","47688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109082","6109082","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093894","1483225897","1483232891","1483093894","1","8","0","-1","6994","132003","55952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109083","6109083","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093912","1483225897","1483231168","1483093912","1","8","0","-1","5271","131985","42168","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109084","6109084","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094011","1483225897","1483231651","1483094011","1","8","0","-1","5754","131886","46032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109085","6109085","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094148","1483225897","1483232847","1483094148","1","8","0","-1","6950","131749","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109086","6109086","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094155","1483225897","1483230146","1483094155","1","8","0","-1","4249","131742","33992","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109088","6109088","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094167","1483225897","1483230641","1483094167","1","8","0","-1","4744","131730","37952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109089","6109089","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094195","1483225897","1483230934","1483094195","1","8","0","-1","5037","131702","40296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109090","6109090","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094216","1483225897","1483230451","1483094216","1","8","0","-1","4554","131681","36432","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109091","6109091","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094281","1483225897","1483230400","1483094281","1","8","0","-1","4503","131616","36024","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109092","6109092","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094288","1483226018","1483233119","1483094288","1","8","0","-1","7101","131730","56808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109093","6109093","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094368","1483226018","1483232610","1483094368","1","8","0","-1","6592","131650","52736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109094","6109094","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094474","1483226138","1483234341","1483094474","1","8","0","-1","8203","131664","65624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109095","6109095","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094479","1483226138","1483232492","1483094479","1","8","0","-1","6354","131659","50832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109096","6109096","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094558","1483226138","1483232894","1483094558","1","8","0","-1","6756","131580","54048","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109097","6109097","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094775","1483226138","1483232289","1483094775","1","8","0","-1","6151","131363","49208","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109098","6109098","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094807","1483226138","1483232114","1483094807","1","8","0","-1","5976","131331","47808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109099","6109099","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094833","1483226138","1483232015","1483094833","1","8","0","-1","5877","131305","47016","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109100","6109100","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094912","1483226138","1483233025","1483094912","1","8","0","-1","6887","131226","55096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109101","6109101","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094975","1483226138","1483232621","1483094975","1","8","0","-1","6483","131163","51864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109102","6109102","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094987","1483226138","1483234366","1483094987","1","8","0","-1","8228","131151","65824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109103","6109103","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094991","1483226138","1483232522","1483094991","1","8","0","-1","6384","131147","51072","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109104","6109104","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095009","1483226138","1483232507","1483095009","1","8","0","-1","6369","131129","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109105","6109105","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095189","1483226138","1483231768","1483095189","1","8","0","-1","5630","130949","45040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109106","6109106","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095277","1483226138","1483232267","1483095277","1","8","0","-1","6129","130861","49032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109107","6109107","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095298","1483226138","1483232799","1483095298","1","8","0","-1","6661","130840","53288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109108","6109108","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095351","1483226138","1483234568","1483095351","1","8","0","-1","8430","130787","67440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109109","6109109","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095358","1483226138","1483232335","1483095358","1","8","0","-1","6197","130780","49576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109110","6109110","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095544","1483226138","1483231291","1483095544","1","8","0","-1","5153","130594","41224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109111","6109111","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095597","1483226380","1483232113","1483095597","1","8","0","-1","5733","130783","45864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109112","6109112","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095604","1483226865","1483234633","1483095604","1","8","0","-1","7768","131261","62144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109113","6109113","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095694","1483226865","1483234290","1483095694","1","8","0","-1","7425","131171","59400","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109114","6109114","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095721","1483226865","1483233753","1483095721","1","8","0","-1","6888","131144","55104","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109115","6109115","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095768","1483226865","1483233616","1483095768","1","8","0","-1","6751","131097","54008","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109118","6109118","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095846","1483226986","1483234657","1483095846","1","8","0","-1","7671","131140","61368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109119","6109119","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095859","1483226986","1483233892","1483095859","1","8","0","-1","6906","131127","55248","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109120","6109120","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095887","1483226986","1483233575","1483095887","1","8","0","-1","6589","131099","52712","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109121","6109121","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096300","1483227108","1483234301","1483096300","1","8","0","-1","7193","130808","57544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109122","6109122","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096337","1483227108","1483233337","1483096337","1","8","0","-1","6229","130771","49832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109123","6109123","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096407","1483227108","1483233594","1483096407","1","8","0","-1","6486","130701","51888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109124","6109124","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096437","1483227108","1483232578","1483096437","1","8","0","-1","5470","130671","43760","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109125","6109125","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096476","1483227229","1483233053","1483096476","1","8","0","-1","5824","130753","46592","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109127","6109127","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096578","1483227229","1483233243","1483096578","1","8","0","-1","6014","130651","48112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109128","6109128","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096603","1483227229","1483234670","1483096603","1","8","0","-1","7441","130626","59528","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109130","6109130","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096756","1483227229","1483232190","1483096756","1","8","0","-1","4961","130473","39688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109131","6109131","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096785","1483227229","1483232539","1483096785","1","8","0","-1","5310","130444","42480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109132","6109132","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097110","1483227229","1483233030","1483097110","1","8","0","-1","5801","130119","46408","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109135","6109135","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097235","1483227229","1483233122","1483097235","1","8","0","-1","5893","129994","47144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109138","6109138","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097431","1483227350","1483233175","1483097431","1","8","0","-1","5825","129919","46600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109139","6109139","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097452","1483227350","1483232730","1483097452","1","8","0","-1","5380","129898","43040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109141","6109141","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097541","1483227471","1483233569","1483097541","1","8","0","-1","6098","129930","48784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109142","6109142","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097655","1483227593","1483232801","1483097655","1","8","0","-1","5208","129938","41664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109143","6109143","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097661","1483227714","1483233952","1483097661","1","8","0","-1","6238","130053","49904","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109144","6109144","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097697","1483227714","1483232581","1483097697","1","8","0","-1","4867","130017","38936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109147","6109147","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098258","1483227835","1483232822","1483098258","1","8","0","-1","4987","129577","39896","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109148","6109148","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098518","1483227835","1483232432","1483098518","1","8","0","-1","4597","129317","36776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109149","6109149","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099136","1483227955","1483233558","1483099136","1","8","0","-1","5603","128819","44824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109150","6109150","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099286","1483228197","1483233558","1483099286","1","8","0","-1","5361","128911","42888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109151","6109151","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099326","1483228439","1483233751","1483099326","1","8","0","-1","5312","129113","42496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109152","6109152","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099456","1483228439","1483233268","1483099456","1","8","0","-1","4829","128983","38632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109153","6109153","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099592","1483228439","1483232901","1483099592","1","8","0","-1","4462","128847","35696","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109154","6109154","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099600","1483228439","1483233450","1483099600","1","8","0","-1","5011","128839","40088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109155","6109155","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099637","1483228560","1483234656","1483099637","1","8","0","-1","6096","128923","48768","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109156","6109156","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099646","1483228560","1483234288","1483099646","1","8","0","-1","5728","128914","45824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109157","6109157","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099717","1483228680","1483234692","1483099717","1","8","0","-1","6012","128963","48096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109158","6109158","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099730","1483228801","1483234361","1483099730","1","8","0","-1","5560","129071","44480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109159","6109159","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099925","1483228801","1483234374","1483099925","1","8","0","-1","5573","128876","44584","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109160","6109160","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099982","1483228801","1483233674","1483099982","1","8","0","-1","4873","128819","38984","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109161","6109161","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099997","1483228922","1483234584","1483099997","1","8","0","-1","5662","128925","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109162","6109162","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100041","1483229043","1483234665","1483100041","1","8","0","-1","5622","129002","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109163","6109163","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100045","1483229043","1483234665","1483100045","1","8","0","-1","5622","128998","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109164","6109164","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100124","1483229165","1483234673","1483100124","1","8","0","-1","5508","129041","44064","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109165","6109165","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100146","1483229165","1483234501","1483100146","1","8","0","-1","5336","129019","42688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109166","6109166","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100211","1483229165","1483234641","1483100211","1","8","0","-1","5476","128954","43808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109167","6109167","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100300","1483229285","1483234647","1483100300","1","8","0","-1","5362","128985","42896","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109168","6109168","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100338","1483229285","1483234636","1483100338","1","8","0","-1","5351","128947","42808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109169","6109169","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100388","1483229406","1483233928","1483100388","1","8","0","-1","4522","129018","36176","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109170","6109170","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100468","1483229406","1483234292","1483100468","1","8","0","-1","4886","128938","39088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109171","6109171","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100470","1483229406","1483234322","1483100470","1","8","0","-1","4916","128936","39328","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109172","6109172","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100822","1483229406","1483234324","1483100822","1","8","0","-1","4918","128584","39344","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109173","6109173","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100837","1483229527","1483234696","1483100837","1","8","0","-1","5169","128690","41352","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109174","6109174","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100960","1483229527","1483234016","1483100960","1","8","0","-1","4489","128567","35912","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109175","6109175","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101004","1483229648","1483234673","1483101004","1","8","0","-1","5025","128644","40200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109176","6109176","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101005","1483229648","1483234695","1483101005","1","8","0","-1","5047","128643","40376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109177","6109177","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101140","1483229648","1483234700","1483101140","1","8","0","-1","5052","128508","40416","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109178","6109178","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101266","1483229648","1483234665","1483101266","1","8","0","-1","5017","128382","40136","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109179","6109179","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101273","1483229769","1483234646","1483101273","1","8","0","-1","4877","128496","39016","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109180","6109180","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101441","1483229769","1483234726","1483101441","1","8","0","-1","4957","128328","39656","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109181","6109181","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101453","1483229769","1483234671","1483101453","1","8","0","-1","4902","128316","39216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109182","6109182","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101592","1483229769","1483234656","1483101592","1","8","0","-1","4887","128177","39096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109183","6109183","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101611","1483229890","1483234717","1483101611","1","8","0","-1","4827","128279","38616","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109184","6109184","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101690","1483230012","1483234653","1483101690","1","8","0","-1","4641","128322","37128","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109185","6109185","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101712","1483230012","1483234658","1483101712","1","8","0","-1","4646","128300","37168","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109186","6109186","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101735","1483230133","1483234680","1483101735","1","8","0","-1","4547","128398","36376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109187","6109187","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101747","1483230254","1483234656","1483101747","1","8","0","-1","4402","128507","35216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109188","6109188","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101761","1483230254","1483234669","1483101761","1","8","0","-1","4415","128493","35320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109189","6109189","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101789","1483230254","1483234654","1483101789","1","8","0","-1","4400","128465","35200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109190","6109190","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101824","1483230497","1483234657","1483101824","1","8","0","-1","4160","128673","33280","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109191","6109191","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101838","1483230497","1483234681","1483101838","1","8","0","-1","4184","128659","33472","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109192","6109192","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101940","1483230497","1483234701","1483101940","1","8","0","-1","4204","128557","33632","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109193","6109193","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102021","1483230739","1483234665","1483102021","1","8","0","-1","3926","128718","31408","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109194","6109194","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102063","1483230861","1483234657","1483102063","1","8","0","-1","3796","128798","30368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109195","6109195","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102305","1483230861","1483234681","1483102305","1","8","0","-1","3820","128556","30560","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109196","6109196","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102420","1483230982","1483234647","1483102420","1","8","0","-1","3665","128562","29320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1012557[74]","1012557","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483305309","1483309059","1483230521","1","12","0","-1","3750","74788","45000","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[50]","1020253","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296248","1483300942","1483230521","1","12","0","-1","4694","65727","56328","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[51]","1020281","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296708","1483301965","1483230521","1","12","0","-1","5257","66187","63084","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[52]","1020382","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297445","1483302424","1483230521","1","12","0","-1","4979","66924","59748","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[53]","1020383","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297480","1483302365","1483230521","1","12","0","-1","4885","66959","58620","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[54]","1020402","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297542","1483302018","1483230521","1","12","0","-1","4476","67021","53712","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[55]","1020448","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298032","1483303026","1483230521","1","12","0","-1","4994","67511","59928","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[56]","1020515","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298793","1483303445","1483230521","1","12","0","-1","4652","68272","55824","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[57]","1020540","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299007","1483303788","1483230521","1","12","0","-1","4781","68486","57372","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[58]","1020565","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299108","1483303864","1483230521","1","12","0","-1","4756","68587","57072","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[59]","1020591","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299479","1483304996","1483230521","1","12","0","-1","5517","68958","66204","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[60]","1020609","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299596","1483303401","1483230521","1","12","0","-1","3805","69075","45660","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[61]","1020733","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300731","1483304682","1483230521","1","12","0","-1","3951","70210","47412","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[62]","1020764","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300943","1483306491","1483230521","1","12","0","-1","5548","70422","66576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[67]","1021000","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303027","1483306986","1483230521","1","12","0","-1","3959","72506","47508","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[68]","1021034","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303402","1483307160","1483230521","1","12","0","-1","3758","72881","45096","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[70]","1021070","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303788","1483307453","1483230521","1","12","0","-1","3665","73267","43980","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[71]","1021087","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303865","1483308086","1483230521","1","12","0","-1","4221","73344","50652","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[72]","1021150","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483304682","1483308627","1483230521","1","12","0","-1","3945","74161","47340","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6108929","6108929","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080673","1483231918","1483246389","1483080673","2","16","0","-1","14471","151245","231536","0","1:0","TIMEOUT","16","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6113332","6113332","Robertson","UTC","","Dunlin","Screwdriver","curry","1483168273","1483236943","1483251439","1483168273","2","24","0","-1","14496","68670","347904","0","1:0","TIMEOUT","24","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["1019989","1019989","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483255506","1483255506","1483277244","1483255506","1","8","0","-1","21738","0","173904","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020009","1020009","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483262143","1483262143","1483282140","1483262143","1","8","0","-1","19997","0","159976","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020000","1020000","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483260369","1483260369","1483282571","1483260369","1","8","0","-1","22202","0","177616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020089","1020089","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483289868","1483289868","1483313573","1483289868","1","8","0","-1","23705","0","189640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309861","2309861","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241326","1483275726","1483241326","1","16","0","-1","34400","0","550400","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309884","2309884","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241632","1483241632","1483276573","1483241632","1","16","0","-1","34941","0","559056","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019944","1019944","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483243754","1483243754","1483264519","1483243754","1","20","0","-1","20765","0","415300","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1020095","1020095","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483290808","1483290808","1483311960","1483290808","1","20","0","-1","21152","0","423040","0","1:0","FAILED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6117519","6117519","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250316","1483250340","1483285217","1483250316","1","1","0","-1","34877","24","34877","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6119997","6119997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277789","1483277815","1483304416","1483277789","1","1","0","-1","26601","26","26601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120004","6120004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277799","1483277815","1483297012","1483277799","1","1","0","-1","19197","16","19197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120347","6120347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483309448","1483290531","1","1","0","-1","18901","16","18901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120350","6120350","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483314965","1483290531","1","1","0","-1","24418","16","24418","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120391","6120391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291123","1483291148","1483309307","1483291123","1","1","0","-1","18159","25","18159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120399","6120399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291124","1483291148","1483311554","1483291124","1","1","0","-1","20406","24","20406","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120421","6120421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483314764","1483291498","1","1","0","-1","23254","12","23254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120423","6120423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483310198","1483291498","1","1","0","-1","18688","12","18688","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["1020038","1020038","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483276177","1483276178","1483296547","1483276177","1","8","0","-1","20369","1","162952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018470","1018470","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483209281","1483209306","1483241614","1483209281","1","8","0","-1","32308","25","258464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2308432","2308432","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483231015","1483231016","1483252678","1483231015","1","16","0","-1","21662","1","346592","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309845","2309845","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483240905","1483240916","1483264210","1483240905","1","16","0","-1","23294","11","372704","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309860","2309860","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241321","1483241326","1483275836","1483241321","1","16","0","-1","34510","5","552160","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115789","6115789","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233680","1483233777","1483262633","1483233680","1","1","0","-1","28856","97","28856","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117558","6117558","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250375","1483250591","1483284587","1483250375","1","1","0","-1","33996","216","33996","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117561","6117561","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250385","1483250591","1483275064","1483250385","1","1","0","-1","24473","206","24473","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117576","6117576","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250424","1483250716","1483285752","1483250424","1","1","0","-1","35036","292","35036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120037","6120037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277851","1483278055","1483297236","1483277851","1","1","0","-1","19181","204","19181","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120074","6120074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277897","1483278295","1483314227","1483277897","1","1","0","-1","35932","398","35932","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120079","6120079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277902","1483278295","1483299228","1483277902","1","1","0","-1","20933","393","20933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120105","6120105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277948","1483278535","1483307536","1483277948","1","1","0","-1","29001","587","29001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120115","6120115","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277958","1483278535","1483309618","1483277958","1","1","0","-1","31083","577","31083","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120140","6120140","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277980","1483278655","1483309089","1483277980","1","1","0","-1","30434","675","30434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120150","6120150","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277995","1483278776","1483309421","1483277995","1","1","0","-1","30645","781","30645","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120193","6120193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483278052","1483279016","1483302406","1483278052","1","1","0","-1","23390","964","23390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120296","6120296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287733","1483288145","1483308104","1483287733","1","1","0","-1","19959","412","19959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120298","6120298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287738","1483288145","1483313129","1483287738","1","1","0","-1","24984","407","24984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120343","6120343","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290456","1483290547","1483312223","1483290456","1","1","0","-1","21676","91","21676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120357","6120357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290582","1483290667","1483314627","1483290582","1","1","0","-1","23960","85","23960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120363","6120363","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483313406","1483290679","1","1","0","-1","22619","108","22619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120367","6120367","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483309066","1483290679","1","1","0","-1","18279","108","18279","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120380","6120380","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290972","1483291028","1483313591","1483290972","1","1","0","-1","22563","56","22563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120388","6120388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483314051","1483291085","1","1","0","-1","22903","63","22903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120389","6120389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483312361","1483291085","1","1","0","-1","21213","63","21213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120409","6120409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291185","1483291269","1483315123","1483291185","1","1","0","-1","23854","84","23854","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120418","6120418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291478","1483291510","1483314889","1483291478","1","1","0","-1","23379","32","23379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120427","6120427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483313217","1483291694","1","1","0","-1","21466","57","21466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120428","6120428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483314996","1483291694","1","1","0","-1","23245","57","23245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120429","6120429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483309886","1483291694","1","1","0","-1","18135","57","18135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120430","6120430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483312872","1483291694","1","1","0","-1","21121","57","21121","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120431","6120431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310758","1483291694","1","1","0","-1","19007","57","19007","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120432","6120432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311228","1483291694","1","1","0","-1","19477","57","19477","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120434","6120434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311251","1483291694","1","1","0","-1","19500","57","19500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120441","6120441","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310302","1483291694","1","1","0","-1","18551","57","18551","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120447","6120447","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310421","1483291774","1","1","0","-1","18550","97","18550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120448","6120448","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310491","1483291774","1","1","0","-1","18620","97","18620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120458","6120458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483313528","1483292046","1","1","0","-1","21416","66","21416","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120461","6120461","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483312309","1483292046","1","1","0","-1","20197","66","20197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120462","6120462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483314786","1483292046","1","1","0","-1","22674","66","22674","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["1019923","1019923","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483239608","1483239703","1483265574","1483239608","1","8","0","-1","25871","95","206968","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019934","1019934","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483241902","1483241991","1483270583","1483241902","1","8","0","-1","28592","89","228736","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018314","1018314","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483206818","1483207021","1483233329","1483206818","1","8","0","-1","26308","203","210464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018806","1018806","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215142","1483215195","1483236458","1483215142","1","8","0","-1","21263","53","170104","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018919","1018919","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483217367","1483217479","1483237249","1483217367","1","8","0","-1","19770","112","158160","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115525[22]","6115580","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231224","1483251512","1483230137","1","12","0","-1","20288","1090","243456","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[22]","6115855","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483236943","1483257688","1483230268","1","12","0","-1","20745","6678","248940","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[59]","6115979","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483238516","1483268469","1483230268","1","12","0","-1","29953","8251","359436","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115537[22]","6116062","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230317","1483240424","1483259619","1483230317","1","12","0","-1","19195","10107","230340","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115539[22]","6117004","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230378","1483248057","1483270798","1483230379","1","12","0","-1","22741","17679","272892","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[18]","6119128","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259700","1483280279","1483245145","1","12","0","-1","20579","14555","246948","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[46]","6119349","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483260934","1483280736","1483245145","1","12","0","-1","19802","15789","237624","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116050","6116050","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240024","1483272770","1483295769","1483240024","8","96","0","-1","22999","32746","2207904","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6116051","6116051","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240051","1483273371","1483295772","1483240051","8","96","0","-1","22401","33320","2150496","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1004733","1004733","Mortorq","UTC","","Redpoll, Lesser","Screwdriver","cherry","1483207214","1483207214","1483270166","1483207214","1","4","0","-1","62952","0","251808","0","0:0","COMPLETED","4","2147491648Mn","3596400","pita","Humanities\/Arts","Arts","Arts"],["1019945","1019945","Posidriv","UTC","","Fieldfare","Screwdriver","banana-cream","1483244077","1483244077","1483284074","1483244077","1","8","0","-1","39997","0","319976","0","0:0","COMPLETED","8","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1019972","1019972","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483251196","1483251196","1483287446","1483251196","1","8","0","-1","36250","0","290000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6113839","6113839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200024","1483200053","1483264736","1483200024","1","1","0","-1","64683","29","64683","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115604","6115604","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231323","1483231346","1483289925","1483231323","1","1","0","-1","58579","23","58579","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116091","6116091","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240958","1483240975","1483289936","1483240958","1","1","0","-1","48961","17","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116096","6116096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241082","1483241099","1483289936","1483241082","1","1","0","-1","48837","17","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116097","6116097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241091","1483241099","1483289936","1483241091","1","1","0","-1","48837","8","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116098","6116098","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241097","1483241099","1483289937","1483241097","1","1","0","-1","48838","2","48838","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115303","6115303","Robertson","UTC","","Lapwing","Screwdriver","curry","1483221161","1483221173","1483257175","1483221161","1","1","0","-1","36002","12","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115438","6115438","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225756","1483225776","1483261776","1483225756","1","1","0","-1","36000","20","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115457","6115457","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226357","1483226380","1483262380","1483226357","1","1","0","-1","36000","23","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119921","6119921","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264580","1483264584","1483307795","1483264580","1","1","0","-1","43211","4","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119923","6119923","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264696","1483264704","1483307916","1483264696","1","1","0","-1","43212","8","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1019139","1019139","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483221197","1483221204","1483283907","1483221197","1","8","0","-1","62703","7","501624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020005","1020005","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483261479","1483261480","1483303453","1483261479","1","8","0","-1","41973","1","335784","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020025","1020025","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483270272","1483270273","1483310835","1483270272","1","8","0","-1","40562","1","324496","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309863","2309863","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241329","1483291507","1483241326","1","16","0","-1","50178","3","802848","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6113101","6113101","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167526","1483167673","1483230521","1483167526","1","1","0","-1","62848","147","62848","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113155","6113155","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167624","1483168044","1483231590","1483167624","1","1","0","-1","63546","420","63546","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113185","6113185","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167713","1483168293","1483231990","1483167713","1","1","0","-1","63697","580","63697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113270","6113270","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483229989","1483168064","1","1","0","-1","61203","722","61203","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114074","6114074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201161","1483201397","1483257208","1483201161","1","1","0","-1","55811","236","55811","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114085","6114085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483266122","1483201165","1","1","0","-1","64725","232","64725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114087","6114087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483240301","1483201165","1","1","0","-1","38904","232","38904","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114847","6114847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206222","1483206254","1483264688","1483206222","1","1","0","-1","58434","32","58434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114933","6114933","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483265591","1483207487","1","1","0","-1","58001","103","58001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114966","6114966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207513","1483207711","1483249010","1483207513","1","1","0","-1","41299","198","41299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115015","6115015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483266614","1483208454","1","1","0","-1","57933","227","57933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115017","6115017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483248131","1483208454","1","1","0","-1","39450","227","39450","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115105","6115105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213485","1483213534","1483267435","1483213485","1","1","0","-1","53901","49","53901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115123","6115123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213541","1483213655","1483274175","1483213541","1","1","0","-1","60520","114","60520","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115139","6115139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483270089","1483213550","1","1","0","-1","56434","105","56434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115141","6115141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483276819","1483213550","1","1","0","-1","63164","105","63164","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115592","6115592","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231313","1483231346","1483289926","1483231313","1","1","0","-1","58580","33","58580","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115607","6115607","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231326","1483231467","1483289924","1483231326","1","1","0","-1","58457","141","58457","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115617","6115617","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231337","1483231467","1483289927","1483231337","1","1","0","-1","58460","130","58460","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115621","6115621","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231342","1483231467","1483289926","1483231342","1","1","0","-1","58459","125","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115623","6115623","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231344","1483231467","1483289926","1483231344","1","1","0","-1","58459","123","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115651","6115651","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231596","1483231710","1483289927","1483231596","1","1","0","-1","58217","114","58217","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115652","6115652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231597","1483231710","1483289930","1483231597","1","1","0","-1","58220","113","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115654","6115654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231598","1483231710","1483289930","1483231598","1","1","0","-1","58220","112","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115655","6115655","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231599","1483231710","1483296505","1483231599","1","1","0","-1","64795","111","64795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115667","6115667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231611","1483231831","1483289931","1483231611","1","1","0","-1","58100","220","58100","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115671","6115671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231614","1483231831","1483289930","1483231614","1","1","0","-1","58099","217","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115673","6115673","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231616","1483231831","1483289930","1483231616","1","1","0","-1","58099","215","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115685","6115685","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231629","1483231953","1483289930","1483231629","1","1","0","-1","57977","324","57977","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115686","6115686","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231630","1483231953","1483294153","1483231630","1","1","0","-1","62200","323","62200","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115687","6115687","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231631","1483231953","1483289931","1483231631","1","1","0","-1","57978","322","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115689","6115689","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231632","1483231953","1483289931","1483231632","1","1","0","-1","57978","321","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115693","6115693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231655","1483231953","1483289931","1483231655","1","1","0","-1","57978","298","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115703","6115703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231665","1483231953","1483289934","1483231665","1","1","0","-1","57981","288","57981","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115721","6115721","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231682","1483232075","1483289934","1483231682","1","1","0","-1","57859","393","57859","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115724","6115724","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231686","1483232075","1483281980","1483231686","1","1","0","-1","49905","389","49905","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115782","6115782","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233674","1483233777","1483289923","1483233674","1","1","0","-1","56146","103","56146","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116066","6116066","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240665","1483240701","1483289916","1483240665","1","1","0","-1","49215","36","49215","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116085","6116085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240903","1483240975","1483289936","1483240903","1","1","0","-1","48961","72","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116087","6116087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240920","1483240975","1483289936","1483240920","1","1","0","-1","48961","55","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116368","6116368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243515","1483243602","1483289913","1483243515","1","1","0","-1","46311","87","46311","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116401","6116401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243520","1483243729","1483287616","1483243520","1","1","0","-1","43887","209","43887","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117507","6117507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250283","1483250340","1483289915","1483250283","1","1","0","-1","39575","57","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117508","6117508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250288","1483250340","1483289913","1483250288","1","1","0","-1","39573","52","39573","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117511","6117511","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250300","1483250340","1483289915","1483250300","1","1","0","-1","39575","40","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117527","6117527","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250326","1483250465","1483314554","1483250326","1","1","0","-1","64089","139","64089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117550","6117550","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250363","1483250465","1483301209","1483250363","1","1","0","-1","50744","102","50744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117554","6117554","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250370","1483250465","1483306007","1483250370","1","1","0","-1","55542","95","55542","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117563","6117563","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250392","1483250591","1483297322","1483250392","1","1","0","-1","46731","199","46731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117578","6117578","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250429","1483250716","1483309722","1483250429","1","1","0","-1","59006","287","59006","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115287","6115287","Robertson","UTC","","Lapwing","Screwdriver","curry","1483220029","1483220083","1483256111","1483220029","1","1","0","-1","36028","54","36028","0","1:0","TIMEOUT","1","12000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115435","6115435","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225598","1483225654","1483261656","1483225598","1","1","0","-1","36002","56","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115436","6115436","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225613","1483225654","1483261656","1483225613","1","1","0","-1","36002","41","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115441","6115441","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225835","1483225897","1483261927","1483225835","1","1","0","-1","36030","62","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115444","6115444","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225916","1483226018","1483262048","1483225916","1","1","0","-1","36030","102","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115447","6115447","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226028","1483226138","1483262169","1483226028","1","1","0","-1","36031","110","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115449","6115449","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226097","1483226138","1483262169","1483226097","1","1","0","-1","36031","41","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115453","6115453","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226179","1483226259","1483262259","1483226179","1","1","0","-1","36000","80","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115455","6115455","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226290","1483226380","1483262380","1483226290","1","1","0","-1","36000","90","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119918","6119918","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264431","1483264463","1483307674","1483264431","1","1","0","-1","43211","32","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119919","6119919","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264477","1483264584","1483307795","1483264477","1","1","0","-1","43211","107","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119920","6119920","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264523","1483264584","1483307795","1483264523","1","1","0","-1","43211","61","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119922","6119922","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264619","1483264704","1483307916","1483264619","1","1","0","-1","43212","85","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119924","6119924","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264745","1483264825","1483308035","1483264745","1","1","0","-1","43210","80","43210","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1019938","1019938","Posidriv","UTC","","Bunting, Reed","Screwdriver","apple","1483242540","1483242591","1483293892","1483242540","1","8","0","-1","51301","51","410408","0","0:0","COMPLETED","8","2147486448Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018813","1018813","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215252","1483215315","1483260424","1483215252","1","8","0","-1","45109","63","360872","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115525[38]","6115642","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231587","1483278496","1483230137","1","12","0","-1","46909","1453","562908","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115298","6115298","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483220537","1483220568","1483256650","1483220537","6","72","0","-1","36082","31","2597904","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6113512","6113512","Robertson","UTC","","Crane","Screwdriver","curry","1483182608","1483183091","1483230785","1483182608","8","96","0","-1","47694","483","4578624","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6113518","6113518","Robertson","UTC","","Crane","Screwdriver","curry","1483183083","1483183459","1483231301","1483183083","8","96","0","-1","47842","376","4592832","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6114923","6114923","Robertson","UTC","","Crane","Screwdriver","curry","1483206575","1483206616","1483254675","1483206575","8","96","0","-1","48059","41","4613664","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6115525[56]","6115801","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483234019","1483281109","1483230137","1","12","0","-1","47090","3885","565080","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[25]","6115869","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483237064","1483283961","1483230268","1","12","0","-1","46897","6799","562764","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116630[22]","6118522","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245072","1483256381","1483303137","1483245073","1","12","0","-1","46756","11309","561072","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[22]","6119148","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259973","1483306773","1483245145","1","12","0","-1","46800","14828","561600","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[67]","6119553","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483262171","1483299336","1483245145","1","12","0","-1","37165","17026","445980","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6118546","6118546","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483256650","1483264221","1483300304","1483256650","6","72","0","-1","36083","7571","2597976","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6115641","6115641","Robertson","UTC","","Crane","Screwdriver","curry","1483231577","1483236943","1483284718","1483231577","8","96","0","-1","47775","5366","4586400","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6118367","6118367","Robertson","UTC","","Crane","Screwdriver","curry","1483255541","1483263737","1483311418","1483255541","8","96","0","-1","47681","8196","4577376","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6115544[22]","6117893","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230419","1483252300","1483293906","1483230420","1","12","0","-1","41606","21881","499272","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6112876","6112876","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483147452","1483170019","1483231575","1483147452","2","24","0","-1","61556","22567","1477344","0","0:0","COMPLETED","24","60000Mn","79200","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["6116000","6116000","Robertson","UTC","","Crane","Screwdriver","curry","1483238795","1483263616","1483311612","1483238795","8","96","0","-1","47996","24821","4607616","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["1005924","1005924","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","banana-cream","1483079071","1483178773","1483234032","1483079071","1","4","0","-1","55259","99702","221036","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["995612","995612","Posidriv","UTC","","Honey-buzzard","Screwdriver","blackberry","1482871620","1482871620","1483264213","1482871620","1","1","0","-1","392593","0","392593","0","0:0","COMPLETED","1","2147487648Mn","10800000","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999221","999221","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984433","1482984433","1483260983","1482984433","1","4","0","-1","276550","0","1106200","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999242","999242","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984771","1482984771","1483298329","1482984771","1","4","0","-1","313558","0","1254232","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999289","999289","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985634","1482985634","1483313872","1482985634","1","4","0","-1","328238","0","1312952","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["165381","165381","Phillips","UTC","","Chaffinch","Screwdriver","coconut-cream","1482869521","1482869521","1483301547","1482869521","8","64","0","-1","432026","0","27649664","0","1:0","TIMEOUT","64","8000Mn","432000","crumpet","Biological Sciences","Molecular Biosciences","Biophysics"],["6109335","6109335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106949","1483106978","1483229086","1483106949","1","1","0","-1","122108","29","122108","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109336","6109336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106950","1483106978","1483241323","1483106950","1","1","0","-1","134345","28","134345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109479","6109479","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107966","1483107993","1483237408","1483107966","1","1","0","-1","129415","27","129415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109481","6109481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107969","1483107993","1483232459","1483107969","1","1","0","-1","124466","24","124466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109482","6109482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107970","1483107993","1483233124","1483107970","1","1","0","-1","125131","23","125131","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109648","6109648","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110807","1483110827","1483238284","1483110807","1","1","0","-1","127457","20","127457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112989","6112989","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166796","1483166816","1483275917","1483166796","1","1","0","-1","109101","20","109101","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112990","6112990","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166797","1483166816","1483250594","1483166797","1","1","0","-1","83778","19","83778","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112991","6112991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166802","1483166816","1483251770","1483166802","1","1","0","-1","84954","14","84954","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112992","6112992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166806","1483166816","1483260779","1483166806","1","1","0","-1","93963","10","93963","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112993","6112993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483263895","1483166811","1","1","0","-1","97079","5","97079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112994","6112994","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483300191","1483166811","1","1","0","-1","133375","5","133375","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112995","6112995","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166812","1483166816","1483253854","1483166812","1","1","0","-1","87038","4","87038","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112996","6112996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166815","1483166816","1483240975","1483166815","1","1","0","-1","74159","1","74159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113062","6113062","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167402","1483167429","1483271686","1483167402","1","1","0","-1","104257","27","104257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113063","6113063","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167406","1483167429","1483303312","1483167406","1","1","0","-1","135883","23","135883","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113387","6113387","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171828","1483171856","1483245992","1483171828","1","1","0","-1","74136","28","74136","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113388","6113388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483305040","1483171835","1","1","0","-1","133184","21","133184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113389","6113389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483275724","1483171835","1","1","0","-1","103868","21","103868","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113390","6113390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171837","1483171856","1483236804","1483171837","1","1","0","-1","64948","19","64948","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113391","6113391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171839","1483171856","1483261370","1483171839","1","1","0","-1","89514","17","89514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113392","6113392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171845","1483171856","1483277008","1483171845","1","1","0","-1","105152","11","105152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113393","6113393","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171849","1483171856","1483269720","1483171849","1","1","0","-1","97864","7","97864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113840","6113840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200026","1483200053","1483268680","1483200026","1","1","0","-1","68627","27","68627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113841","6113841","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200029","1483200053","1483296754","1483200029","1","1","0","-1","96701","24","96701","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113843","6113843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200032","1483200053","1483290999","1483200032","1","1","0","-1","90946","21","90946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113844","6113844","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200034","1483200053","1483289923","1483200034","1","1","0","-1","89870","19","89870","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113846","6113846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200040","1483200053","1483310191","1483200040","1","1","0","-1","110138","13","110138","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113847","6113847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200044","1483200053","1483301176","1483200044","1","1","0","-1","101123","9","101123","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113848","6113848","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200047","1483200053","1483308043","1483200047","1","1","0","-1","107990","6","107990","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114033","6114033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201123","1483201151","1483286885","1483201123","1","1","0","-1","85734","28","85734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114034","6114034","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201127","1483201151","1483287672","1483201127","1","1","0","-1","86521","24","86521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114035","6114035","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201130","1483201151","1483291125","1483201130","1","1","0","-1","89974","21","89974","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114452","6114452","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204166","1483204193","1483301479","1483204166","1","1","0","-1","97286","27","97286","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114453","6114453","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204168","1483204193","1483282778","1483204168","1","1","0","-1","78585","25","78585","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114454","6114454","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204171","1483204193","1483277750","1483204171","1","1","0","-1","73557","22","73557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114455","6114455","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204174","1483204193","1483289915","1483204174","1","1","0","-1","85722","19","85722","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114457","6114457","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204179","1483204193","1483310949","1483204179","1","1","0","-1","106756","14","106756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114458","6114458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204181","1483204193","1483306489","1483204181","1","1","0","-1","102296","12","102296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114459","6114459","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204182","1483204193","1483289922","1483204182","1","1","0","-1","85729","11","85729","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114460","6114460","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204183","1483204193","1483300363","1483204183","1","1","0","-1","96170","10","96170","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114849","6114849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206228","1483206254","1483300042","1483206228","1","1","0","-1","93788","26","93788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114852","6114852","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206242","1483206254","1483296160","1483206242","1","1","0","-1","89906","12","89906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114853","6114853","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206247","1483206254","1483303604","1483206247","1","1","0","-1","97350","7","97350","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114925","6114925","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207464","1483207469","1483315068","1483207464","1","1","0","-1","107599","5","107599","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115113","6115113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213507","1483213534","1483308024","1483213507","1","1","0","-1","94490","27","94490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115114","6115114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213511","1483213534","1483295328","1483213511","1","1","0","-1","81794","23","81794","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115116","6115116","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213517","1483213534","1483297718","1483213517","1","1","0","-1","84184","17","84184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115120","6115120","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213529","1483213534","1483310606","1483213529","1","1","0","-1","97072","5","97072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115121","6115121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213533","1483213534","1483279893","1483213533","1","1","0","-1","66359","1","66359","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115598","6115598","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231319","1483231346","1483312600","1483231319","1","1","0","-1","81254","27","81254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108027[4]","6108031","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483302591","1483046357","1","1","0","-1","256219","15","256219","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[5]","6108032","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[6]","6108033","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[7]","6108034","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[8]","6108035","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[9]","6108036","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[10]","6108037","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[11]","6108038","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[13]","6108040","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[14]","6108041","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[15]","6108042","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[16]","6108043","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[17]","6108044","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483303689","1483046357","1","1","0","-1","257317","15","257317","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[18]","6108045","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[19]","6108046","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483278569","1483046357","1","1","0","-1","232197","15","232197","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1003355","1003355","Posidriv","UTC","","Thrush, Grey-cheeked","Screwdriver","boysenberry","1483042952","1483042968","1483292265","1483042952","1","2","0","-1","249297","16","498594","0","0:0","COMPLETED","2","10000Mn","864600","barm","Engineering","Electrical and Communication Systems","Solid-State and Microstructures"],["999183","999183","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983884","1482983885","1483300262","1482983884","1","4","0","-1","316377","1","1265508","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999188","999188","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983954","1482983955","1483310084","1482983954","1","4","0","-1","326129","1","1304516","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999254","999254","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985000","1482985003","1483255914","1482985000","1","4","0","-1","270911","3","1083644","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005888","1005888","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078681","1483078683","1483278101","1483078681","1","4","0","-1","199418","2","797672","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005890","1005890","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078715","1483078716","1483241139","1483078715","1","4","0","-1","162423","1","649692","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005900","1005900","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078793","1483078794","1483288500","1483078793","1","4","0","-1","209706","1","838824","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005907","1005907","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078870","1483078874","1483244477","1483078870","1","4","0","-1","165603","4","662412","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1012029","1012029","Posidriv","UTC","","Fieldfare","Screwdriver","butter","1483157560","1483157563","1483243989","1483157560","1","8","0","-1","86426","3","691408","0","1:0","TIMEOUT","8","2147490048Mn","86400","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["995583","995583","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483143988","1483143991","1483272379","1483143988","1","8","0","-1","128388","3","1027104","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995627","995627","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483283156","1483144111","1","8","0","-1","139039","6","1112312","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995628","995628","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483274205","1483144111","1","8","0","-1","130088","6","1040704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995629","995629","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144119","1483275459","1483144112","1","8","0","-1","131340","7","1050720","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995630","995630","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144120","1483275145","1483144112","1","8","0","-1","131025","8","1048200","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995631","995631","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483287078","1483144112","1","8","0","-1","142956","10","1143648","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995632","995632","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483285810","1483144112","1","8","0","-1","141688","10","1133504","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995633","995633","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144124","1483274960","1483144112","1","8","0","-1","130836","12","1046688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995634","995634","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144125","1483275348","1483144112","1","8","0","-1","131223","13","1049784","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995635","995635","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144127","1483272663","1483144112","1","8","0","-1","128536","15","1028288","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995636","995636","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144128","1483276578","1483144112","1","8","0","-1","132450","16","1059600","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995637","995637","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144130","1483285036","1483144113","1","8","0","-1","140906","17","1127248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995638","995638","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144131","1483274399","1483144113","1","8","0","-1","130268","18","1042144","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995639","995639","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483290495","1483144113","1","8","0","-1","146362","20","1170896","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995640","995640","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483278084","1483144113","1","8","0","-1","133951","20","1071608","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995641","995641","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483270417","1483144113","1","8","0","-1","126281","23","1010248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995642","995642","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483275165","1483144113","1","8","0","-1","131029","23","1048232","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995643","995643","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144138","1483275003","1483144113","1","8","0","-1","130865","25","1046920","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995644","995644","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144139","1483284417","1483144113","1","8","0","-1","140278","26","1122224","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995645","995645","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144141","1483273977","1483144113","1","8","0","-1","129836","28","1038688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995646","995646","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144142","1483281314","1483144114","1","8","0","-1","137172","28","1097376","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["163485","163485","Phillips","UTC","","Oriole, Baltimore","Screwdriver","chestnut","1482390912","1482390913","1483303339","1482390912","1","12","2","-1","912426","1","10949112","1824852","0:0","CANCELLED by 380693","12","31000Mn","3247200","focaccia","Biological Sciences","Molecular Biosciences","Biophysics"],["964693","964693","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483244230","1482955559","1","16","0","-1","288669","2","4618704","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964694","964694","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483245344","1482955559","1","16","0","-1","289783","2","4636528","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["2286681","2286681","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483159130","1483159136","1483238310","1483159130","1","16","0","-1","79174","6","1266784","0","0:0","COMPLETED","8","2147486648Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2288753","2288753","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483169234","1483169236","1483282760","1483169234","1","16","0","-1","113524","2","1816384","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2289004","2289004","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483170485","1483170487","1483261366","1483170485","1","16","0","-1","90879","2","1454064","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009531","1009531","Posidriv","UTC","","Shag","Screwdriver","apple","1483125690","1483125694","1483246634","1483125690","1","24","0","-1","120940","4","2902560","0","0:0","COMPLETED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6106081","6106081","Robertson","UTC","","Moorhen","Screwdriver","curry","1482980903","1482980942","1483240261","1482980903","1","1","0","-1","259319","39","259319","0","1:0","TIMEOUT","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108682","6108682","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071799","1483072045","1483253984","1483071799","1","1","0","-1","181939","246","181939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108706","6108706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071825","1483072181","1483229663","1483071825","1","1","0","-1","157482","356","157482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108707","6108707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071827","1483072181","1483230693","1483071827","1","1","0","-1","158512","354","158512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109226","6109226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483230934","1483106095","1","1","0","-1","124720","119","124720","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109229","6109229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483248678","1483106095","1","1","0","-1","142464","119","142464","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109239","6109239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106214","1483241753","1483106096","1","1","0","-1","135539","118","135539","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109242","6109242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483263234","1483106096","1","1","0","-1","156892","246","156892","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109246","6109246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483246507","1483106096","1","1","0","-1","140165","246","140165","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109247","6109247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483235218","1483106096","1","1","0","-1","128876","246","128876","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109255","6109255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483252066","1483106096","1","1","0","-1","145724","246","145724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109256","6109256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483234006","1483106097","1","1","0","-1","127664","245","127664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109257","6109257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483232072","1483106097","1","1","0","-1","125730","245","125730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109258","6109258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483242337","1483106097","1","1","0","-1","135995","245","135995","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109261","6109261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234289","1483106097","1","1","0","-1","127820","372","127820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109262","6109262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483235964","1483106097","1","1","0","-1","129495","372","129495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109264","6109264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483274649","1483106097","1","1","0","-1","168180","372","168180","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109266","6109266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483238533","1483106097","1","1","0","-1","132064","372","132064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109268","6109268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234473","1483106097","1","1","0","-1","128004","372","128004","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109269","6109269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483252479","1483106097","1","1","0","-1","146010","372","146010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109275","6109275","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483246648","1483106098","1","1","0","-1","140179","371","140179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109277","6109277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483241385","1483106098","1","1","0","-1","134916","371","134916","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109279","6109279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483253169","1483106098","1","1","0","-1","146700","371","146700","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109280","6109280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289888","1483106098","1","1","0","-1","183291","499","183291","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109282","6109282","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483229396","1483106098","1","1","0","-1","122799","499","122799","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109283","6109283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289887","1483106098","1","1","0","-1","183290","499","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109285","6109285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106141","1483106597","1483289889","1483106141","1","1","0","-1","183292","456","183292","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109287","6109287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106145","1483106597","1483289887","1483106145","1","1","0","-1","183290","452","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109288","6109288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106147","1483106597","1483289891","1483106147","1","1","0","-1","183294","450","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109290","6109290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106153","1483106597","1483246847","1483106153","1","1","0","-1","140250","444","140250","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109293","6109293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106156","1483106597","1483289893","1483106156","1","1","0","-1","183296","441","183296","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109294","6109294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106158","1483106597","1483289891","1483106158","1","1","0","-1","183294","439","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109296","6109296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106162","1483106597","1483289892","1483106162","1","1","0","-1","183295","435","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109297","6109297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106165","1483106597","1483289892","1483106165","1","1","0","-1","183295","432","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109303","6109303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106178","1483106724","1483233322","1483106178","1","1","0","-1","126598","546","126598","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109305","6109305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106181","1483106724","1483247835","1483106181","1","1","0","-1","141111","543","141111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109312","6109312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106192","1483106724","1483243302","1483106192","1","1","0","-1","136578","532","136578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109321","6109321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106919","1483106978","1483262786","1483106919","1","1","0","-1","155808","59","155808","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109327","6109327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106934","1483106978","1483236315","1483106934","1","1","0","-1","129337","44","129337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109329","6109329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106936","1483106978","1483241600","1483106936","1","1","0","-1","134622","42","134622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109332","6109332","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106944","1483106978","1483231757","1483106944","1","1","0","-1","124779","34","124779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109339","6109339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106954","1483107104","1483264536","1483106954","1","1","0","-1","157432","150","157432","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109347","6109347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106985","1483107104","1483241640","1483106985","1","1","0","-1","134536","119","134536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109348","6109348","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106986","1483107104","1483229938","1483106986","1","1","0","-1","122834","118","122834","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109351","6109351","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483258633","1483106989","1","1","0","-1","151529","115","151529","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109353","6109353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483243386","1483106989","1","1","0","-1","136282","115","136282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109356","6109356","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483251312","1483106990","1","1","0","-1","144208","114","144208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109357","6109357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483241610","1483106990","1","1","0","-1","134506","114","134506","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109359","6109359","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289895","1483106990","1","1","0","-1","182665","240","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109360","6109360","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109361","6109361","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109362","6109362","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289893","1483106990","1","1","0","-1","182663","240","182663","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109365","6109365","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107051","1483107230","1483289895","1483107051","1","1","0","-1","182665","179","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109368","6109368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107057","1483107230","1483229404","1483107057","1","1","0","-1","122174","173","122174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109369","6109369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107059","1483107230","1483237756","1483107059","1","1","0","-1","130526","171","130526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109370","6109370","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107060","1483107230","1483241929","1483107060","1","1","0","-1","134699","170","134699","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109371","6109371","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107063","1483107230","1483289896","1483107063","1","1","0","-1","182666","167","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109372","6109372","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107065","1483107230","1483238813","1483107065","1","1","0","-1","131583","165","131583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109373","6109373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107067","1483107230","1483289896","1483107067","1","1","0","-1","182666","163","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109374","6109374","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107073","1483107230","1483289898","1483107073","1","1","0","-1","182668","157","182668","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109376","6109376","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107078","1483107230","1483289894","1483107078","1","1","0","-1","182664","152","182664","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109378","6109378","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107082","1483107357","1483289905","1483107082","1","1","0","-1","182548","275","182548","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109381","6109381","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107088","1483107357","1483289913","1483107088","1","1","0","-1","182556","269","182556","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109386","6109386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107097","1483107357","1483245580","1483107097","1","1","0","-1","138223","260","138223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109388","6109388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107108","1483107357","1483289902","1483107108","1","1","0","-1","182545","249","182545","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109390","6109390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107112","1483107357","1483289903","1483107112","1","1","0","-1","182546","245","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109391","6109391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107113","1483107357","1483289903","1483107113","1","1","0","-1","182546","244","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109392","6109392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107114","1483107357","1483289901","1483107114","1","1","0","-1","182544","243","182544","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109397","6109397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107357","1483289904","1483107116","1","1","0","-1","182547","241","182547","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109398","6109398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289901","1483107116","1","1","0","-1","182417","368","182417","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109399","6109399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289902","1483107116","1","1","0","-1","182418","368","182418","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109400","6109400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289910","1483107117","1","1","0","-1","182426","367","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109401","6109401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289904","1483107117","1","1","0","-1","182420","367","182420","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109405","6109405","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483249260","1483107117","1","1","0","-1","141776","367","141776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109409","6109409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107209","1483107484","1483289909","1483107209","1","1","0","-1","182425","275","182425","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109410","6109410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107212","1483107484","1483289912","1483107212","1","1","0","-1","182428","272","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109413","6109413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107217","1483107484","1483289908","1483107217","1","1","0","-1","182424","267","182424","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109414","6109414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107219","1483107484","1483245969","1483107219","1","1","0","-1","138485","265","138485","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109415","6109415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107220","1483107484","1483289911","1483107220","1","1","0","-1","182427","264","182427","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109417","6109417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107223","1483107484","1483289912","1483107223","1","1","0","-1","182428","261","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109418","6109418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107224","1483107484","1483289910","1483107224","1","1","0","-1","182426","260","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109421","6109421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107234","1483107611","1483289911","1483107234","1","1","0","-1","182300","377","182300","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109426","6109426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483289914","1483107242","1","1","0","-1","182303","369","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109427","6109427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483232979","1483107242","1","1","0","-1","125368","369","125368","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109429","6109429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107243","1483107611","1483289915","1483107243","1","1","0","-1","182304","368","182304","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109430","6109430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107244","1483107611","1483289914","1483107244","1","1","0","-1","182303","367","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109434","6109434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483289919","1483107246","1","1","0","-1","182308","365","182308","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109436","6109436","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483230736","1483107246","1","1","0","-1","123125","365","123125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109462","6109462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107279","1483107867","1483230650","1483107279","1","1","0","-1","122783","588","122783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109463","6109463","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107280","1483107867","1483231234","1483107280","1","1","0","-1","123367","587","123367","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109464","6109464","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107282","1483107867","1483245514","1483107282","1","1","0","-1","137647","585","137647","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109471","6109471","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107953","1483107993","1483244309","1483107953","1","1","0","-1","136316","40","136316","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109472","6109472","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107955","1483107993","1483235249","1483107955","1","1","0","-1","127256","38","127256","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109475","6109475","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107962","1483107993","1483237298","1483107962","1","1","0","-1","129305","31","129305","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109492","6109492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107980","1483108122","1483267363","1483107980","1","1","0","-1","159241","142","159241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109500","6109500","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107996","1483108122","1483233557","1483107996","1","1","0","-1","125435","126","125435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109503","6109503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108001","1483108122","1483268237","1483108001","1","1","0","-1","160115","121","160115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109508","6109508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108004","1483108122","1483289925","1483108004","1","1","0","-1","181803","118","181803","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109509","6109509","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289925","1483108005","1","1","0","-1","181674","246","181674","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109510","6109510","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289923","1483108005","1","1","0","-1","181672","246","181672","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109638","6109638","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110753","1483110827","1483253473","1483110753","1","1","0","-1","142646","74","142646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109639","6109639","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110766","1483110827","1483231980","1483110766","1","1","0","-1","121153","61","121153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109640","6109640","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110772","1483110827","1483233548","1483110772","1","1","0","-1","122721","55","122721","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109650","6109650","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110825","1483110966","1483243888","1483110825","1","1","0","-1","132922","141","132922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109652","6109652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483286003","1483110837","1","1","0","-1","175037","129","175037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109653","6109653","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483242588","1483110837","1","1","0","-1","131622","129","131622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109654","6109654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483258143","1483110838","1","1","0","-1","147177","128","147177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109658","6109658","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483238119","1483110838","1","1","0","-1","127153","128","127153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109662","6109662","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483232478","1483110838","1","1","0","-1","121512","128","121512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109665","6109665","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483229790","1483110838","1","1","0","-1","118824","128","118824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109672","6109672","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483111106","1483230425","1483110838","1","1","0","-1","119319","268","119319","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109753","6109753","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115946","1483116096","1483258108","1483115946","1","1","0","-1","142012","150","142012","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109754","6109754","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115951","1483116096","1483235370","1483115951","1","1","0","-1","119274","145","119274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109757","6109757","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115977","1483116096","1483251632","1483115977","1","1","0","-1","135536","119","135536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109758","6109758","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115980","1483116096","1483255305","1483115980","1","1","0","-1","139209","116","139209","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109759","6109759","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115985","1483116096","1483250118","1483115985","1","1","0","-1","134022","111","134022","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109761","6109761","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115993","1483116096","1483271931","1483115993","1","1","0","-1","155835","103","155835","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109762","6109762","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115994","1483116096","1483246583","1483115994","1","1","0","-1","130487","102","130487","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109767","6109767","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116007","1483116096","1483230486","1483116007","1","1","0","-1","114390","89","114390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109769","6109769","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116015","1483116096","1483245034","1483116015","1","1","0","-1","128938","81","128938","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109770","6109770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116024","1483116096","1483236198","1483116024","1","1","0","-1","120102","72","120102","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109771","6109771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116028","1483116096","1483231793","1483116028","1","1","0","-1","115697","68","115697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109775","6109775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116041","1483116228","1483234292","1483116041","1","1","0","-1","118064","187","118064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109778","6109778","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116059","1483116228","1483246444","1483116059","1","1","0","-1","130216","169","130216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109781","6109781","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116068","1483116228","1483243361","1483116068","1","1","0","-1","127133","160","127133","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109783","6109783","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116072","1483116228","1483233855","1483116072","1","1","0","-1","117627","156","117627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109787","6109787","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116095","1483116228","1483231353","1483116095","1","1","0","-1","115125","133","115125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109791","6109791","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483232771","1483116103","1","1","0","-1","116412","256","116412","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109795","6109795","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483234692","1483116103","1","1","0","-1","118333","256","118333","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109798","6109798","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483228870","1483116103","1","1","0","-1","112511","256","112511","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109800","6109800","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483284703","1483116103","1","1","0","-1","168344","256","168344","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109801","6109801","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483242068","1483116103","1","1","0","-1","125709","256","125709","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109803","6109803","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483237154","1483116103","1","1","0","-1","120795","256","120795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109807","6109807","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116359","1483248120","1483116104","1","1","0","-1","131761","255","131761","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109810","6109810","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116491","1483253533","1483116104","1","1","0","-1","137042","387","137042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112980","6112980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166761","1483166816","1483269042","1483166761","1","1","0","-1","102226","55","102226","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112981","6112981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166766","1483166816","1483277010","1483166766","1","1","0","-1","110194","50","110194","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112982","6112982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166770","1483166816","1483252858","1483166770","1","1","0","-1","86042","46","86042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112984","6112984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166772","1483166816","1483282075","1483166772","1","1","0","-1","115259","44","115259","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112985","6112985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166775","1483166816","1483254115","1483166775","1","1","0","-1","87299","41","87299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112986","6112986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166783","1483166816","1483287587","1483166783","1","1","0","-1","120771","33","120771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112997","6112997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166817","1483166939","1483274727","1483166817","1","1","0","-1","107788","122","107788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112998","6112998","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166820","1483166939","1483252870","1483166820","1","1","0","-1","85931","119","85931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113000","6113000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166828","1483166939","1483280682","1483166828","1","1","0","-1","113743","111","113743","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113001","6113001","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166829","1483166939","1483244723","1483166829","1","1","0","-1","77784","110","77784","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113002","6113002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483242282","1483166832","1","1","0","-1","75343","107","75343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113003","6113003","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483238850","1483166832","1","1","0","-1","71911","107","71911","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113004","6113004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166833","1483166939","1483253762","1483166833","1","1","0","-1","86823","106","86823","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113005","6113005","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166837","1483166939","1483296234","1483166837","1","1","0","-1","129295","102","129295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113006","6113006","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166838","1483166939","1483299753","1483166838","1","1","0","-1","132814","101","132814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113007","6113007","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166840","1483166939","1483273960","1483166840","1","1","0","-1","107021","99","107021","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113008","6113008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166843","1483166939","1483286860","1483166843","1","1","0","-1","119921","96","119921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113009","6113009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166848","1483166939","1483257045","1483166848","1","1","0","-1","90106","91","90106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113010","6113010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166850","1483166939","1483282969","1483166850","1","1","0","-1","116030","89","116030","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113011","6113011","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166853","1483166939","1483258397","1483166853","1","1","0","-1","91458","86","91458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113012","6113012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166856","1483166939","1483261381","1483166856","1","1","0","-1","94442","83","94442","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113013","6113013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166857","1483166939","1483251883","1483166857","1","1","0","-1","84944","82","84944","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113015","6113015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166863","1483166939","1483282852","1483166863","1","1","0","-1","115913","76","115913","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113016","6113016","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166866","1483166939","1483282200","1483166866","1","1","0","-1","115261","73","115261","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113017","6113017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166869","1483167061","1483283954","1483166869","1","1","0","-1","116893","192","116893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113018","6113018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166873","1483167061","1483260846","1483166873","1","1","0","-1","93785","188","93785","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113019","6113019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166877","1483167061","1483241935","1483166877","1","1","0","-1","74874","184","74874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113020","6113020","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166879","1483167061","1483272397","1483166879","1","1","0","-1","105336","182","105336","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113021","6113021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166883","1483167061","1483261988","1483166883","1","1","0","-1","94927","178","94927","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113022","6113022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166886","1483167061","1483264570","1483166886","1","1","0","-1","97509","175","97509","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113023","6113023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166890","1483167061","1483277325","1483166890","1","1","0","-1","110264","171","110264","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113024","6113024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483272893","1483166892","1","1","0","-1","105832","169","105832","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113025","6113025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483254681","1483166892","1","1","0","-1","87620","169","87620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113026","6113026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166899","1483167061","1483277041","1483166899","1","1","0","-1","109980","162","109980","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113027","6113027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166900","1483167061","1483270355","1483166900","1","1","0","-1","103294","161","103294","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113028","6113028","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166904","1483167061","1483276308","1483166904","1","1","0","-1","109247","157","109247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113029","6113029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166911","1483167061","1483254926","1483166911","1","1","0","-1","87865","150","87865","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113030","6113030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166913","1483167061","1483241324","1483166913","1","1","0","-1","74263","148","74263","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113031","6113031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483253485","1483166917","1","1","0","-1","86424","144","86424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113032","6113032","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483260120","1483166917","1","1","0","-1","93059","144","93059","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113033","6113033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166921","1483167061","1483287820","1483166921","1","1","0","-1","120759","140","120759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113045","6113045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167347","1483167429","1483249508","1483167347","1","1","0","-1","82079","82","82079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113046","6113046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167348","1483167429","1483269724","1483167348","1","1","0","-1","102295","81","102295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113047","6113047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167353","1483167429","1483262520","1483167353","1","1","0","-1","95091","76","95091","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113048","6113048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167357","1483167429","1483252056","1483167357","1","1","0","-1","84627","72","84627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113049","6113049","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167361","1483167429","1483284840","1483167361","1","1","0","-1","117411","68","117411","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113050","6113050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167367","1483167429","1483289687","1483167367","1","1","0","-1","122258","62","122258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113051","6113051","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167370","1483167429","1483276792","1483167370","1","1","0","-1","109363","59","109363","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113052","6113052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167374","1483167429","1483289052","1483167374","1","1","0","-1","121623","55","121623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113053","6113053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167376","1483167429","1483257249","1483167376","1","1","0","-1","89820","53","89820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113054","6113054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167378","1483167429","1483279828","1483167378","1","1","0","-1","112399","51","112399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113056","6113056","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167383","1483167429","1483267303","1483167383","1","1","0","-1","99874","46","99874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113057","6113057","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167387","1483167429","1483289725","1483167387","1","1","0","-1","122296","42","122296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113058","6113058","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167390","1483167429","1483285489","1483167390","1","1","0","-1","118060","39","118060","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113059","6113059","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167391","1483167429","1483283086","1483167391","1","1","0","-1","115657","38","115657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113060","6113060","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167393","1483167429","1483288387","1483167393","1","1","0","-1","120958","36","120958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113061","6113061","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167396","1483167429","1483286008","1483167396","1","1","0","-1","118579","33","118579","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113064","6113064","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167412","1483167551","1483247709","1483167412","1","1","0","-1","80158","139","80158","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113067","6113067","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167420","1483167551","1483271720","1483167420","1","1","0","-1","104169","131","104169","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113068","6113068","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167422","1483167551","1483252894","1483167422","1","1","0","-1","85343","129","85343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113069","6113069","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167426","1483167551","1483236395","1483167426","1","1","0","-1","68844","125","68844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113070","6113070","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167427","1483167551","1483269724","1483167427","1","1","0","-1","102173","124","102173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113071","6113071","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167434","1483167551","1483276511","1483167434","1","1","0","-1","108960","117","108960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113072","6113072","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167439","1483167551","1483287282","1483167439","1","1","0","-1","119731","112","119731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113073","6113073","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167442","1483167551","1483240264","1483167442","1","1","0","-1","72713","109","72713","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113075","6113075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167467","1483167551","1483285724","1483167467","1","1","0","-1","118173","84","118173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113076","6113076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167469","1483167551","1483255688","1483167469","1","1","0","-1","88137","82","88137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113077","6113077","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167474","1483167551","1483265025","1483167474","1","1","0","-1","97474","77","97474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113078","6113078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167475","1483167551","1483277565","1483167475","1","1","0","-1","110014","76","110014","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113079","6113079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167479","1483167551","1483252844","1483167479","1","1","0","-1","85293","72","85293","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113080","6113080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167482","1483167551","1483267395","1483167482","1","1","0","-1","99844","69","99844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113081","6113081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167483","1483167551","1483247894","1483167483","1","1","0","-1","80343","68","80343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113082","6113082","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167488","1483167551","1483266857","1483167488","1","1","0","-1","99306","63","99306","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113083","6113083","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167491","1483167551","1483280930","1483167491","1","1","0","-1","113379","60","113379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113085","6113085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167496","1483167673","1483275845","1483167496","1","1","0","-1","108172","177","108172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113087","6113087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167501","1483167673","1483305397","1483167501","1","1","0","-1","137724","172","137724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113088","6113088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167504","1483167673","1483270191","1483167504","1","1","0","-1","102518","169","102518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113090","6113090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167508","1483167673","1483268894","1483167508","1","1","0","-1","101221","165","101221","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113092","6113092","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167512","1483167673","1483284147","1483167512","1","1","0","-1","116474","161","116474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113094","6113094","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167514","1483167673","1483254050","1483167514","1","1","0","-1","86377","159","86377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113096","6113096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167517","1483167673","1483289060","1483167517","1","1","0","-1","121387","156","121387","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113097","6113097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167522","1483167673","1483277050","1483167522","1","1","0","-1","109377","151","109377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113103","6113103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167527","1483167796","1483295885","1483167527","1","1","0","-1","128089","269","128089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113107","6113107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167534","1483167796","1483279842","1483167534","1","1","0","-1","112046","262","112046","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113110","6113110","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167539","1483167796","1483266565","1483167539","1","1","0","-1","98769","257","98769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113112","6113112","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167547","1483167796","1483304454","1483167547","1","1","0","-1","136658","249","136658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113113","6113113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483274486","1483167548","1","1","0","-1","106690","248","106690","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113114","6113114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483291393","1483167548","1","1","0","-1","123597","248","123597","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113117","6113117","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167558","1483167796","1483282424","1483167558","1","1","0","-1","114628","238","114628","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113118","6113118","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167559","1483167796","1483277894","1483167559","1","1","0","-1","110098","237","110098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113121","6113121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167796","1483262321","1483167566","1","1","0","-1","94525","230","94525","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113123","6113123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483258416","1483167566","1","1","0","-1","90497","353","90497","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113125","6113125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483262483","1483167566","1","1","0","-1","94564","353","94564","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113127","6113127","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483289062","1483167566","1","1","0","-1","121143","353","121143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113129","6113129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483283172","1483167566","1","1","0","-1","115253","353","115253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113131","6113131","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483277853","1483167566","1","1","0","-1","109934","353","109934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113133","6113133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483276426","1483167566","1","1","0","-1","108507","353","108507","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113135","6113135","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483311360","1483167566","1","1","0","-1","143441","353","143441","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113137","6113137","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483266989","1483167566","1","1","0","-1","99070","353","99070","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113139","6113139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483275956","1483167566","1","1","0","-1","108037","353","108037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113141","6113141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483246072","1483167566","1","1","0","-1","78028","478","78028","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113142","6113142","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483284006","1483167566","1","1","0","-1","115962","478","115962","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113143","6113143","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483274130","1483167566","1","1","0","-1","106086","478","106086","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113144","6113144","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483276701","1483167566","1","1","0","-1","108657","478","108657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113146","6113146","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167591","1483168044","1483261530","1483167591","1","1","0","-1","93486","453","93486","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113147","6113147","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167594","1483168044","1483303854","1483167594","1","1","0","-1","135810","450","135810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113148","6113148","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167597","1483168044","1483256318","1483167597","1","1","0","-1","88274","447","88274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113149","6113149","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167599","1483168044","1483290785","1483167599","1","1","0","-1","122741","445","122741","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113151","6113151","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167605","1483168044","1483269603","1483167605","1","1","0","-1","101559","439","101559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113152","6113152","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167611","1483168044","1483291276","1483167611","1","1","0","-1","123232","433","123232","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113153","6113153","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167614","1483168044","1483264572","1483167614","1","1","0","-1","96528","430","96528","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113154","6113154","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167619","1483168044","1483292496","1483167619","1","1","0","-1","124452","425","124452","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113156","6113156","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167628","1483168044","1483277962","1483167628","1","1","0","-1","109918","416","109918","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113157","6113157","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167633","1483168044","1483252324","1483167633","1","1","0","-1","84280","411","84280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113158","6113158","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167638","1483168044","1483298762","1483167638","1","1","0","-1","130718","406","130718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113160","6113160","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167643","1483168044","1483260002","1483167643","1","1","0","-1","91958","401","91958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113161","6113161","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167647","1483168167","1483259657","1483167647","1","1","0","-1","91490","520","91490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113162","6113162","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167651","1483168167","1483284026","1483167651","1","1","0","-1","115859","516","115859","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113163","6113163","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483277512","1483167655","1","1","0","-1","109345","512","109345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113164","6113164","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483242064","1483167655","1","1","0","-1","73897","512","73897","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113165","6113165","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167659","1483168167","1483280729","1483167659","1","1","0","-1","112562","508","112562","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113166","6113166","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167661","1483168167","1483268600","1483167661","1","1","0","-1","100433","506","100433","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113167","6113167","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167668","1483168167","1483272750","1483167668","1","1","0","-1","104583","499","104583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113170","6113170","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167669","1483168167","1483271667","1483167669","1","1","0","-1","103500","498","103500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113172","6113172","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167672","1483168167","1483291830","1483167672","1","1","0","-1","123663","495","123663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113173","6113173","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167678","1483168167","1483310057","1483167678","1","1","0","-1","141890","489","141890","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113174","6113174","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167681","1483168167","1483234338","1483167681","1","1","0","-1","66171","486","66171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113175","6113175","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167684","1483168167","1483259402","1483167684","1","1","0","-1","91235","483","91235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113176","6113176","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167686","1483168167","1483270020","1483167686","1","1","0","-1","101853","481","101853","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113177","6113177","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167690","1483168167","1483284736","1483167690","1","1","0","-1","116569","477","116569","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113178","6113178","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167693","1483168167","1483267110","1483167693","1","1","0","-1","98943","474","98943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113179","6113179","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167694","1483168167","1483264504","1483167694","1","1","0","-1","96337","473","96337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113180","6113180","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167697","1483168167","1483306467","1483167697","1","1","0","-1","138300","470","138300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113181","6113181","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167701","1483168167","1483274669","1483167701","1","1","0","-1","106502","466","106502","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113182","6113182","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167704","1483168167","1483259110","1483167704","1","1","0","-1","90943","463","90943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113183","6113183","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167707","1483168293","1483284336","1483167707","1","1","0","-1","116043","586","116043","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113184","6113184","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167711","1483168293","1483279445","1483167711","1","1","0","-1","111152","582","111152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113186","6113186","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167717","1483168293","1483259448","1483167717","1","1","0","-1","91155","576","91155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113187","6113187","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167719","1483168293","1483241550","1483167719","1","1","0","-1","73257","574","73257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113188","6113188","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167721","1483168293","1483291051","1483167721","1","1","0","-1","122758","572","122758","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113189","6113189","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167724","1483168293","1483271123","1483167724","1","1","0","-1","102830","569","102830","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113190","6113190","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167734","1483168293","1483254905","1483167734","1","1","0","-1","86612","559","86612","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113191","6113191","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167745","1483168293","1483246951","1483167745","1","1","0","-1","78658","548","78658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113192","6113192","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167748","1483168293","1483302566","1483167748","1","1","0","-1","134273","545","134273","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113193","6113193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167752","1483168293","1483297364","1483167752","1","1","0","-1","129071","541","129071","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113194","6113194","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167755","1483168293","1483310708","1483167755","1","1","0","-1","142415","538","142415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113195","6113195","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167759","1483168293","1483290930","1483167759","1","1","0","-1","122637","534","122637","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113197","6113197","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167766","1483168293","1483267912","1483167766","1","1","0","-1","99619","527","99619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113198","6113198","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167770","1483168293","1483274580","1483167770","1","1","0","-1","106287","523","106287","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113200","6113200","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167802","1483168293","1483303506","1483167802","1","1","0","-1","135213","491","135213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113201","6113201","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167805","1483168293","1483276261","1483167805","1","1","0","-1","107968","488","107968","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113202","6113202","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167809","1483168293","1483261686","1483167809","1","1","0","-1","93393","484","93393","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113203","6113203","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167812","1483168417","1483279694","1483167812","1","1","0","-1","111277","605","111277","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113204","6113204","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167818","1483168417","1483308104","1483167818","1","1","0","-1","139687","599","139687","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113205","6113205","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167820","1483168541","1483245671","1483167820","1","1","0","-1","77130","721","77130","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113206","6113206","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167822","1483168418","1483286459","1483167822","1","1","0","-1","118041","596","118041","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113207","6113207","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167827","1483168418","1483262590","1483167827","1","1","0","-1","94172","591","94172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113208","6113208","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167834","1483168418","1483280349","1483167834","1","1","0","-1","111931","584","111931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113209","6113209","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167836","1483168418","1483247171","1483167836","1","1","0","-1","78753","582","78753","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113210","6113210","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167839","1483168418","1483259214","1483167839","1","1","0","-1","90796","579","90796","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113211","6113211","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167841","1483168418","1483264389","1483167841","1","1","0","-1","95971","577","95971","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113212","6113212","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167842","1483168418","1483282201","1483167842","1","1","0","-1","113783","576","113783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113213","6113213","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167847","1483168418","1483277299","1483167847","1","1","0","-1","108881","571","108881","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113214","6113214","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167848","1483168418","1483307529","1483167848","1","1","0","-1","139111","570","139111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113215","6113215","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167852","1483168418","1483246671","1483167852","1","1","0","-1","78253","566","78253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113217","6113217","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167855","1483168418","1483291353","1483167855","1","1","0","-1","122935","563","122935","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113218","6113218","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167858","1483168418","1483277842","1483167858","1","1","0","-1","109424","560","109424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113219","6113219","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167861","1483168418","1483302922","1483167861","1","1","0","-1","134504","557","134504","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113220","6113220","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167866","1483168418","1483298033","1483167866","1","1","0","-1","129615","552","129615","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113222","6113222","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167877","1483168541","1483288257","1483167877","1","1","0","-1","119716","664","119716","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113223","6113223","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167882","1483168541","1483248685","1483167882","1","1","0","-1","80144","659","80144","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113224","6113224","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167886","1483168541","1483253377","1483167886","1","1","0","-1","84836","655","84836","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113225","6113225","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167892","1483168541","1483262702","1483167892","1","1","0","-1","94161","649","94161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113226","6113226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167895","1483168541","1483293107","1483167895","1","1","0","-1","124566","646","124566","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113227","6113227","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167898","1483168541","1483263588","1483167898","1","1","0","-1","95047","643","95047","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113228","6113228","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167899","1483168541","1483282781","1483167899","1","1","0","-1","114240","642","114240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113229","6113229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167901","1483168541","1483296085","1483167901","1","1","0","-1","127544","640","127544","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113230","6113230","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167908","1483168541","1483292794","1483167908","1","1","0","-1","124253","633","124253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113231","6113231","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167913","1483168541","1483257142","1483167913","1","1","0","-1","88601","628","88601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113232","6113232","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483283936","1483167915","1","1","0","-1","115395","626","115395","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113233","6113233","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483296310","1483167915","1","1","0","-1","127769","626","127769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113234","6113234","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167924","1483168541","1483306322","1483167924","1","1","0","-1","137781","617","137781","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113235","6113235","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167927","1483168541","1483306202","1483167927","1","1","0","-1","137661","614","137661","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113236","6113236","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167934","1483168541","1483274191","1483167934","1","1","0","-1","105650","607","105650","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113237","6113237","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167935","1483168541","1483253896","1483167935","1","1","0","-1","85355","606","85355","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113238","6113238","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167937","1483168541","1483296769","1483167937","1","1","0","-1","128228","604","128228","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113239","6113239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167939","1483168541","1483263187","1483167939","1","1","0","-1","94646","602","94646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113240","6113240","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167974","1483168664","1483258435","1483167974","1","1","0","-1","89771","690","89771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113242","6113242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167978","1483168664","1483274634","1483167978","1","1","0","-1","105970","686","105970","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113243","6113243","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167983","1483168664","1483263103","1483167983","1","1","0","-1","94439","681","94439","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113244","6113244","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167987","1483168664","1483278666","1483167987","1","1","0","-1","110002","677","110002","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113245","6113245","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167992","1483168664","1483287749","1483167992","1","1","0","-1","119085","672","119085","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113246","6113246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167996","1483168664","1483284293","1483167996","1","1","0","-1","115629","668","115629","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113247","6113247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167997","1483168664","1483270394","1483167997","1","1","0","-1","101730","667","101730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113248","6113248","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167998","1483168664","1483246154","1483167998","1","1","0","-1","77490","666","77490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113249","6113249","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168002","1483168664","1483298024","1483168002","1","1","0","-1","129360","662","129360","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113251","6113251","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168006","1483168664","1483296526","1483168006","1","1","0","-1","127862","658","127862","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113252","6113252","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168013","1483168664","1483255319","1483168013","1","1","0","-1","86655","651","86655","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113253","6113253","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168016","1483168664","1483284135","1483168016","1","1","0","-1","115471","648","115471","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113254","6113254","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168022","1483168664","1483301536","1483168022","1","1","0","-1","132872","642","132872","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113255","6113255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168023","1483168664","1483276312","1483168023","1","1","0","-1","107648","641","107648","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113256","6113256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168027","1483168664","1483242092","1483168027","1","1","0","-1","73428","637","73428","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113257","6113257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168029","1483168664","1483269238","1483168029","1","1","0","-1","100574","635","100574","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113258","6113258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168033","1483168664","1483272557","1483168033","1","1","0","-1","103893","631","103893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113259","6113259","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168037","1483168664","1483275539","1483168037","1","1","0","-1","106875","627","106875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113260","6113260","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168040","1483168786","1483275336","1483168040","1","1","0","-1","106550","746","106550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113261","6113261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168045","1483168786","1483257934","1483168045","1","1","0","-1","89148","741","89148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113262","6113262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168049","1483168786","1483262353","1483168049","1","1","0","-1","93567","737","93567","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113263","6113263","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168055","1483168786","1483246889","1483168055","1","1","0","-1","78103","731","78103","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113264","6113264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168057","1483168786","1483270212","1483168057","1","1","0","-1","101426","729","101426","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113266","6113266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483306737","1483168063","1","1","0","-1","137951","723","137951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113267","6113267","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483312064","1483168063","1","1","0","-1","143278","723","143278","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113268","6113268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483260109","1483168063","1","1","0","-1","91323","723","91323","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113269","6113269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483282835","1483168064","1","1","0","-1","114049","722","114049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113271","6113271","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483283551","1483168064","1","1","0","-1","114765","722","114765","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113272","6113272","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276006","1483168064","1","1","0","-1","107220","722","107220","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113273","6113273","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483274256","1483168064","1","1","0","-1","105470","722","105470","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113274","6113274","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276058","1483168064","1","1","0","-1","107272","722","107272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113276","6113276","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483284221","1483168064","1","1","0","-1","115435","722","115435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113277","6113277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483291245","1483168064","1","1","0","-1","122459","722","122459","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113278","6113278","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168069","1483168786","1483282987","1483168069","1","1","0","-1","114201","717","114201","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113279","6113279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168073","1483168909","1483280854","1483168073","1","1","0","-1","111945","836","111945","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113280","6113280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168074","1483168909","1483241767","1483168074","1","1","0","-1","72858","835","72858","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113281","6113281","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168077","1483168909","1483261052","1483168077","1","1","0","-1","92143","832","92143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113283","6113283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168078","1483168909","1483244528","1483168078","1","1","0","-1","75619","831","75619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113284","6113284","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168083","1483168909","1483283958","1483168083","1","1","0","-1","115049","826","115049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113285","6113285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168084","1483168909","1483244547","1483168084","1","1","0","-1","75638","825","75638","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113286","6113286","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168118","1483168909","1483276125","1483168118","1","1","0","-1","107216","791","107216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113287","6113287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168124","1483168909","1483266024","1483168124","1","1","0","-1","97115","785","97115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113288","6113288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168126","1483168909","1483276477","1483168126","1","1","0","-1","107568","783","107568","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113289","6113289","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168128","1483168909","1483287643","1483168128","1","1","0","-1","118734","781","118734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113290","6113290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168132","1483168909","1483294262","1483168132","1","1","0","-1","125353","777","125353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113291","6113291","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168138","1483168909","1483273730","1483168138","1","1","0","-1","104821","771","104821","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113292","6113292","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168142","1483168909","1483293516","1483168142","1","1","0","-1","124607","767","124607","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113293","6113293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168152","1483168909","1483259052","1483168152","1","1","0","-1","90143","757","90143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113294","6113294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168158","1483168909","1483237450","1483168158","1","1","0","-1","68541","751","68541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113296","6113296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168160","1483168909","1483313682","1483168160","1","1","0","-1","144773","749","144773","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113297","6113297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168163","1483168909","1483287534","1483168163","1","1","0","-1","118625","746","118625","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113298","6113298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168172","1483168909","1483297855","1483168172","1","1","0","-1","128946","737","128946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113299","6113299","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168176","1483168909","1483243709","1483168176","1","1","0","-1","74800","733","74800","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113300","6113300","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168181","1483169032","1483274322","1483168181","1","1","0","-1","105290","851","105290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113301","6113301","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168186","1483169032","1483258568","1483168186","1","1","0","-1","89536","846","89536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113302","6113302","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168187","1483169032","1483272834","1483168187","1","1","0","-1","103802","845","103802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113303","6113303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168189","1483169032","1483247340","1483168189","1","1","0","-1","78308","843","78308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113304","6113304","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169154","1483289411","1483168190","1","1","0","-1","120257","964","120257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113305","6113305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483254966","1483168190","1","1","0","-1","85934","842","85934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113306","6113306","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483308992","1483168190","1","1","0","-1","139960","842","139960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113307","6113307","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483239129","1483168190","1","1","0","-1","70097","842","70097","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113308","6113308","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483312056","1483168190","1","1","0","-1","143024","842","143024","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113309","6113309","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483273872","1483168190","1","1","0","-1","104840","842","104840","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113310","6113310","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483298031","1483168190","1","1","0","-1","128999","842","128999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113311","6113311","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483305247","1483168190","1","1","0","-1","136215","842","136215","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113312","6113312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483280565","1483168190","1","1","0","-1","111533","842","111533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113313","6113313","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168194","1483169032","1483283837","1483168194","1","1","0","-1","114805","838","114805","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113314","6113314","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168197","1483169032","1483297431","1483168197","1","1","0","-1","128399","835","128399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113315","6113315","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168201","1483169032","1483276984","1483168201","1","1","0","-1","107952","831","107952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113317","6113317","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483283710","1483168208","1","1","0","-1","114678","824","114678","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113318","6113318","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483248416","1483168208","1","1","0","-1","79384","824","79384","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113319","6113319","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168210","1483169154","1483310113","1483168210","1","1","0","-1","140959","944","140959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113320","6113320","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168214","1483169154","1483295878","1483168214","1","1","0","-1","126724","940","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113321","6113321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168228","1483169154","1483287707","1483168228","1","1","0","-1","118553","926","118553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113322","6113322","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168230","1483169154","1483278429","1483168230","1","1","0","-1","109275","924","109275","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113323","6113323","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168233","1483169154","1483287981","1483168233","1","1","0","-1","118827","921","118827","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113324","6113324","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168238","1483169154","1483250746","1483168238","1","1","0","-1","81592","916","81592","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113325","6113325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168243","1483169154","1483287940","1483168243","1","1","0","-1","118786","911","118786","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113326","6113326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168245","1483169154","1483249333","1483168245","1","1","0","-1","80179","909","80179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113327","6113327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168249","1483169154","1483300715","1483168249","1","1","0","-1","131561","905","131561","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113328","6113328","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168253","1483169154","1483260194","1483168253","1","1","0","-1","91040","901","91040","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113329","6113329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168258","1483169154","1483279518","1483168258","1","1","0","-1","110364","896","110364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113330","6113330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168259","1483169154","1483267360","1483168259","1","1","0","-1","98206","895","98206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113331","6113331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168263","1483169154","1483276548","1483168263","1","1","0","-1","107394","891","107394","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113333","6113333","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168273","1483169154","1483254687","1483168273","1","1","0","-1","85533","881","85533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113334","6113334","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168278","1483169154","1483302710","1483168278","1","1","0","-1","133556","876","133556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113335","6113335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168283","1483169154","1483258315","1483168283","1","1","0","-1","89161","871","89161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113336","6113336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168288","1483169154","1483262299","1483168288","1","1","0","-1","93145","866","93145","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113337","6113337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168291","1483169154","1483269817","1483168291","1","1","0","-1","100663","863","100663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113338","6113338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168301","1483169279","1483267055","1483168301","1","1","0","-1","97776","978","97776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113339","6113339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168305","1483169279","1483235134","1483168305","1","1","0","-1","65855","974","65855","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113340","6113340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168307","1483169279","1483287038","1483168307","1","1","0","-1","117759","972","117759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113341","6113341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168309","1483169279","1483314859","1483168309","1","1","0","-1","145580","970","145580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113342","6113342","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168312","1483169279","1483237172","1483168312","1","1","0","-1","67893","967","67893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113344","6113344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168316","1483169279","1483252150","1483168316","1","1","0","-1","82871","963","82871","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113385","6113385","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171819","1483171856","1483282270","1483171819","1","1","0","-1","110414","37","110414","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113386","6113386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171823","1483171856","1483279928","1483171823","1","1","0","-1","108072","33","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113394","6113394","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171859","1483171978","1483256151","1483171859","1","1","0","-1","84173","119","84173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113395","6113395","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171867","1483171978","1483254438","1483171867","1","1","0","-1","82460","111","82460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113396","6113396","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171871","1483171978","1483268945","1483171871","1","1","0","-1","96967","107","96967","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113397","6113397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171880","1483171978","1483248421","1483171880","1","1","0","-1","76443","98","76443","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113398","6113398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171885","1483171978","1483287436","1483171885","1","1","0","-1","115458","93","115458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113399","6113399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171888","1483171978","1483309993","1483171888","1","1","0","-1","138015","90","138015","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113400","6113400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171890","1483171978","1483309501","1483171890","1","1","0","-1","137523","88","137523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113401","6113401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171891","1483171978","1483249947","1483171891","1","1","0","-1","77969","87","77969","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113402","6113402","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171898","1483171978","1483308217","1483171898","1","1","0","-1","136239","80","136239","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113403","6113403","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171903","1483171978","1483297802","1483171903","1","1","0","-1","125824","75","125824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113404","6113404","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171907","1483171978","1483279767","1483171907","1","1","0","-1","107789","71","107789","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113406","6113406","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171915","1483171978","1483282208","1483171915","1","1","0","-1","110230","63","110230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113407","6113407","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171926","1483171978","1483260323","1483171926","1","1","0","-1","88345","52","88345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113408","6113408","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171931","1483171978","1483312213","1483171931","1","1","0","-1","140235","47","140235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113409","6113409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171932","1483171978","1483259488","1483171932","1","1","0","-1","87510","46","87510","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113410","6113410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171935","1483171978","1483247531","1483171935","1","1","0","-1","75553","43","75553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113411","6113411","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171938","1483171978","1483275535","1483171938","1","1","0","-1","103557","40","103557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113412","6113412","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171941","1483171978","1483279405","1483171941","1","1","0","-1","107427","37","107427","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113413","6113413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171945","1483172100","1483265904","1483171945","1","1","0","-1","93804","155","93804","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113414","6113414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171947","1483172100","1483269408","1483171947","1","1","0","-1","97308","153","97308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113415","6113415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171949","1483172100","1483280274","1483171949","1","1","0","-1","108174","151","108174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113416","6113416","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171950","1483172100","1483273212","1483171950","1","1","0","-1","101112","150","101112","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113417","6113417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171959","1483172100","1483303709","1483171959","1","1","0","-1","131609","141","131609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113418","6113418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171964","1483172100","1483307695","1483171964","1","1","0","-1","135595","136","135595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113419","6113419","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171970","1483172100","1483280353","1483171970","1","1","0","-1","108253","130","108253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113420","6113420","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171973","1483172100","1483289464","1483171973","1","1","0","-1","117364","127","117364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113421","6113421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171977","1483172100","1483258325","1483171977","1","1","0","-1","86225","123","86225","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113423","6113423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171983","1483172100","1483298824","1483171983","1","1","0","-1","126724","117","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113424","6113424","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171987","1483172100","1483291536","1483171987","1","1","0","-1","119436","113","119436","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113425","6113425","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171991","1483172100","1483286402","1483171991","1","1","0","-1","114302","109","114302","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113426","6113426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171993","1483172100","1483289810","1483171993","1","1","0","-1","117710","107","117710","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113427","6113427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171995","1483172100","1483268308","1483171995","1","1","0","-1","96208","105","96208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113428","6113428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171999","1483172100","1483312092","1483171999","1","1","0","-1","139992","101","139992","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113429","6113429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172000","1483172100","1483271960","1483172000","1","1","0","-1","99860","100","99860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113430","6113430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172003","1483172100","1483280400","1483172003","1","1","0","-1","108300","97","108300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113431","6113431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172006","1483172100","1483296273","1483172006","1","1","0","-1","124173","94","124173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113432","6113432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172010","1483172100","1483276939","1483172010","1","1","0","-1","104839","90","104839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113433","6113433","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172013","1483172223","1483286718","1483172013","1","1","0","-1","114495","210","114495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113434","6113434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172016","1483172223","1483259137","1483172016","1","1","0","-1","86914","207","86914","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113830","6113830","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200005","1483200053","1483296245","1483200005","1","1","0","-1","96192","48","96192","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113831","6113831","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200006","1483200053","1483298992","1483200006","1","1","0","-1","98939","47","98939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113832","6113832","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200007","1483200053","1483286337","1483200007","1","1","0","-1","86284","46","86284","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113833","6113833","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200011","1483200053","1483310003","1483200011","1","1","0","-1","109950","42","109950","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113834","6113834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200013","1483200053","1483296688","1483200013","1","1","0","-1","96635","40","96635","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113835","6113835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200017","1483200053","1483291976","1483200017","1","1","0","-1","91923","36","91923","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113836","6113836","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200018","1483200053","1483289913","1483200018","1","1","0","-1","89860","35","89860","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113849","6113849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200048","1483200175","1483287999","1483200048","1","1","0","-1","87824","127","87824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113850","6113850","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200050","1483200175","1483293078","1483200050","1","1","0","-1","92903","125","92903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113864","6113864","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200058","1483200175","1483309147","1483200058","1","1","0","-1","108972","117","108972","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113866","6113866","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200064","1483200175","1483281545","1483200064","1","1","0","-1","81370","111","81370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113868","6113868","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292528","1483200066","1","1","0","-1","92353","109","92353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113869","6113869","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314377","1483200066","1","1","0","-1","114202","109","114202","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113870","6113870","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483281716","1483200066","1","1","0","-1","81541","109","81541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113871","6113871","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289925","1483200066","1","1","0","-1","89750","109","89750","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113873","6113873","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314312","1483200066","1","1","0","-1","114137","109","114137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113874","6113874","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483285844","1483200066","1","1","0","-1","85669","109","85669","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113876","6113876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483315004","1483200066","1","1","0","-1","114829","109","114829","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113877","6113877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483310674","1483200066","1","1","0","-1","110499","109","110499","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113878","6113878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289097","1483200066","1","1","0","-1","88922","109","88922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113879","6113879","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483304947","1483200066","1","1","0","-1","104772","109","104772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113880","6113880","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292487","1483200066","1","1","0","-1","92312","109","92312","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113881","6113881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483298771","1483200066","1","1","0","-1","98474","231","98474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113883","6113883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483309627","1483200066","1","1","0","-1","109330","231","109330","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113885","6113885","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483313852","1483200066","1","1","0","-1","113555","231","113555","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113886","6113886","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483303395","1483200066","1","1","0","-1","103098","231","103098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113887","6113887","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483284263","1483200066","1","1","0","-1","83966","231","83966","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114018","6114018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201086","1483201151","1483311521","1483201086","1","1","0","-1","110370","65","110370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114019","6114019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201089","1483201151","1483293195","1483201089","1","1","0","-1","92044","62","92044","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114021","6114021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201093","1483201151","1483286060","1483201093","1","1","0","-1","84909","58","84909","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114022","6114022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201095","1483201151","1483289923","1483201095","1","1","0","-1","88772","56","88772","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114023","6114023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201098","1483201151","1483289409","1483201098","1","1","0","-1","88258","53","88258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114024","6114024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201100","1483201151","1483303639","1483201100","1","1","0","-1","102488","51","102488","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114025","6114025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201104","1483201151","1483302425","1483201104","1","1","0","-1","101274","47","101274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114026","6114026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201107","1483201151","1483288723","1483201107","1","1","0","-1","87572","44","87572","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114027","6114027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201108","1483201151","1483297774","1483201108","1","1","0","-1","96623","43","96623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114029","6114029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201113","1483201151","1483302374","1483201113","1","1","0","-1","101223","38","101223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114030","6114030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201115","1483201151","1483304177","1483201115","1","1","0","-1","103026","36","103026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114031","6114031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201119","1483201151","1483304928","1483201119","1","1","0","-1","103777","32","103777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114037","6114037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483295032","1483201135","1","1","0","-1","93759","138","93759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114038","6114038","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483296629","1483201135","1","1","0","-1","95356","138","95356","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114040","6114040","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483286283","1483201135","1","1","0","-1","85010","138","85010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114041","6114041","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483288029","1483201135","1","1","0","-1","86756","138","86756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114042","6114042","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483279017","1483201135","1","1","0","-1","77744","138","77744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114043","6114043","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292728","1483201135","1","1","0","-1","91455","138","91455","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114044","6114044","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483310148","1483201135","1","1","0","-1","108875","138","108875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114045","6114045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483315060","1483201135","1","1","0","-1","113787","138","113787","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114046","6114046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483276183","1483201135","1","1","0","-1","74910","138","74910","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114047","6114047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292998","1483201135","1","1","0","-1","91725","138","91725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114048","6114048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201136","1483201273","1483298255","1483201136","1","1","0","-1","96982","137","96982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114050","6114050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201139","1483201273","1483314421","1483201139","1","1","0","-1","113148","134","113148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114052","6114052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201145","1483201273","1483304167","1483201145","1","1","0","-1","102894","128","102894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114053","6114053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201147","1483201273","1483282985","1483201147","1","1","0","-1","81712","126","81712","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114054","6114054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201148","1483201273","1483294052","1483201148","1","1","0","-1","92779","125","92779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114075","6114075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201163","1483201397","1483297708","1483201163","1","1","0","-1","96311","234","96311","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114076","6114076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483268423","1483201165","1","1","0","-1","67026","232","67026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114078","6114078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483295408","1483201165","1","1","0","-1","94011","232","94011","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114079","6114079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483279169","1483201165","1","1","0","-1","77772","232","77772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114080","6114080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483271283","1483201165","1","1","0","-1","69886","232","69886","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114081","6114081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483291388","1483201165","1","1","0","-1","89991","232","89991","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114088","6114088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483311920","1483201165","1","1","0","-1","110523","232","110523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114090","6114090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483276303","1483201165","1","1","0","-1","74906","232","74906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114449","6114449","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204151","1483204193","1483308118","1483204151","1","1","0","-1","103925","42","103925","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114450","6114450","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204156","1483204193","1483310364","1483204156","1","1","0","-1","106171","37","106171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114451","6114451","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204161","1483204193","1483298503","1483204161","1","1","0","-1","94310","32","94310","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114480","6114480","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204196","1483204314","1483287771","1483204196","1","1","0","-1","83457","118","83457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114481","6114481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204205","1483204314","1483312386","1483204205","1","1","0","-1","108072","109","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114482","6114482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204208","1483204314","1483291830","1483204208","1","1","0","-1","87516","106","87516","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114483","6114483","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483292696","1483204213","1","1","0","-1","88382","101","88382","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114484","6114484","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483291812","1483204213","1","1","0","-1","87498","101","87498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114485","6114485","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289916","1483204213","1","1","0","-1","85602","101","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114486","6114486","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289915","1483204213","1","1","0","-1","85601","101","85601","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114487","6114487","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483274136","1483204213","1","1","0","-1","69822","101","69822","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114488","6114488","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483303998","1483204213","1","1","0","-1","99684","101","99684","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114489","6114489","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483309919","1483204213","1","1","0","-1","105605","101","105605","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114490","6114490","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483306454","1483204213","1","1","0","-1","102140","101","102140","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114492","6114492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204215","1483204314","1483294235","1483204215","1","1","0","-1","89921","99","89921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114493","6114493","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204222","1483204314","1483310894","1483204222","1","1","0","-1","106580","92","106580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114494","6114494","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204225","1483204314","1483286158","1483204225","1","1","0","-1","81844","89","81844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114495","6114495","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204229","1483204314","1483289923","1483204229","1","1","0","-1","85609","85","85609","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114496","6114496","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204233","1483204314","1483289218","1483204233","1","1","0","-1","84904","81","84904","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114498","6114498","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204314","1483289916","1483204234","1","1","0","-1","85602","80","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114501","6114501","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483289927","1483204234","1","1","0","-1","85492","201","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114502","6114502","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483304933","1483204234","1","1","0","-1","100498","201","100498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114503","6114503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483285783","1483204234","1","1","0","-1","81348","201","81348","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114506","6114506","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483295366","1483204234","1","1","0","-1","90931","201","90931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114507","6114507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483293296","1483204234","1","1","0","-1","88861","201","88861","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114508","6114508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204237","1483204435","1483289927","1483204237","1","1","0","-1","85492","198","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114512","6114512","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204252","1483204435","1483299417","1483204252","1","1","0","-1","94982","183","94982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114513","6114513","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204255","1483204435","1483303675","1483204255","1","1","0","-1","99240","180","99240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114515","6114515","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204264","1483204435","1483293730","1483204264","1","1","0","-1","89295","171","89295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114834","6114834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206183","1483206254","1483297400","1483206183","1","1","0","-1","91146","71","91146","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114835","6114835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206186","1483206254","1483293310","1483206186","1","1","0","-1","87056","68","87056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114837","6114837","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206191","1483206254","1483306501","1483206191","1","1","0","-1","100247","63","100247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114838","6114838","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206193","1483206254","1483312905","1483206193","1","1","0","-1","106651","61","106651","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114839","6114839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206195","1483206254","1483313495","1483206195","1","1","0","-1","107241","59","107241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114840","6114840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206199","1483206254","1483308989","1483206199","1","1","0","-1","102735","55","102735","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114842","6114842","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206205","1483206254","1483312880","1483206205","1","1","0","-1","106626","49","106626","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114843","6114843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206208","1483206254","1483309979","1483206208","1","1","0","-1","103725","46","103725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114845","6114845","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206215","1483206254","1483311066","1483206215","1","1","0","-1","104812","39","104812","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114846","6114846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206218","1483206254","1483273868","1483206218","1","1","0","-1","67614","36","67614","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114876","6114876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206263","1483206375","1483306945","1483206263","1","1","0","-1","100570","112","100570","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114877","6114877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483295609","1483206270","1","1","0","-1","89234","105","89234","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114878","6114878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483283086","1483206270","1","1","0","-1","76711","105","76711","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114881","6114881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206286","1483206375","1483303608","1483206286","1","1","0","-1","97233","89","97233","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114882","6114882","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206287","1483206375","1483302011","1483206287","1","1","0","-1","95636","88","95636","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114883","6114883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206290","1483206375","1483298553","1483206290","1","1","0","-1","92178","85","92178","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114928","6114928","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207478","1483207590","1483302149","1483207478","1","1","0","-1","94559","112","94559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114929","6114929","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207484","1483207590","1483313429","1483207484","1","1","0","-1","105839","106","105839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114934","6114934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483312903","1483207487","1","1","0","-1","105313","103","105313","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114935","6114935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483298820","1483207487","1","1","0","-1","91230","103","91230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114936","6114936","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483303919","1483207487","1","1","0","-1","96329","103","96329","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114937","6114937","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483301878","1483207487","1","1","0","-1","94288","103","94288","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114940","6114940","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483302483","1483207487","1","1","0","-1","94893","103","94893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114943","6114943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483311321","1483207487","1","1","0","-1","103731","103","103731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114945","6114945","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483304393","1483207487","1","1","0","-1","96803","103","96803","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114946","6114946","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483295980","1483207487","1","1","0","-1","88390","103","88390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114948","6114948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483300743","1483207487","1","1","0","-1","93032","224","93032","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114951","6114951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483309082","1483207487","1","1","0","-1","101371","224","101371","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114952","6114952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483313051","1483207487","1","1","0","-1","105340","224","105340","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114953","6114953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483291993","1483207487","1","1","0","-1","84282","224","84282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114955","6114955","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207488","1483207711","1483301833","1483207488","1","1","0","-1","94122","223","94122","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114956","6114956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207491","1483207711","1483295375","1483207491","1","1","0","-1","87664","220","87664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114957","6114957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207494","1483207711","1483307072","1483207494","1","1","0","-1","99361","217","99361","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114960","6114960","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207500","1483207711","1483295229","1483207500","1","1","0","-1","87518","211","87518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114962","6114962","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207502","1483207711","1483313818","1483207502","1","1","0","-1","106107","209","106107","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114963","6114963","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207503","1483207711","1483303828","1483207503","1","1","0","-1","96117","208","96117","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114964","6114964","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207507","1483207711","1483285846","1483207507","1","1","0","-1","78135","204","78135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114972","6114972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208320","1483208439","1483306711","1483208320","1","1","0","-1","98272","119","98272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114975","6114975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208331","1483208439","1483306288","1483208331","1","1","0","-1","97849","108","97849","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114978","6114978","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208340","1483208439","1483303748","1483208340","1","1","0","-1","95309","99","95309","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114979","6114979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208342","1483208439","1483306661","1483208342","1","1","0","-1","98222","97","98222","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114981","6114981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208347","1483208439","1483303635","1483208347","1","1","0","-1","95196","92","95196","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114982","6114982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208351","1483208439","1483289936","1483208351","1","1","0","-1","81497","88","81497","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114983","6114983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208353","1483208439","1483288765","1483208353","1","1","0","-1","80326","86","80326","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114984","6114984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208357","1483208439","1483299953","1483208357","1","1","0","-1","91514","82","91514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114985","6114985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208359","1483208439","1483308874","1483208359","1","1","0","-1","100435","80","100435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114991","6114991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208381","1483208560","1483288374","1483208381","1","1","0","-1","79814","179","79814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114992","6114992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208387","1483208560","1483285114","1483208387","1","1","0","-1","76554","173","76554","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114993","6114993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208390","1483208560","1483299079","1483208390","1","1","0","-1","90519","170","90519","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114996","6114996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208401","1483208560","1483311766","1483208401","1","1","0","-1","103206","159","103206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114997","6114997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208410","1483208560","1483287596","1483208410","1","1","0","-1","79036","150","79036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115000","6115000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208422","1483208560","1483304512","1483208422","1","1","0","-1","95952","138","95952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115002","6115002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208431","1483208560","1483285979","1483208431","1","1","0","-1","77419","129","77419","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115008","6115008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208452","1483208560","1483294406","1483208452","1","1","0","-1","85846","108","85846","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115009","6115009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208560","1483302388","1483208454","1","1","0","-1","93828","106","93828","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115010","6115010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483276469","1483208454","1","1","0","-1","67788","227","67788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115012","6115012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483307414","1483208454","1","1","0","-1","98733","227","98733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115013","6115013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483290458","1483208454","1","1","0","-1","81777","227","81777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115014","6115014","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483311060","1483208454","1","1","0","-1","102379","227","102379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115103","6115103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213480","1483213534","1483282058","1483213480","1","1","0","-1","68524","54","68524","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115106","6115106","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213489","1483213534","1483306835","1483213489","1","1","0","-1","93301","45","93301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115107","6115107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213492","1483213534","1483291252","1483213492","1","1","0","-1","77718","42","77718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115125","6115125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483292373","1483213550","1","1","0","-1","78718","105","78718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115128","6115128","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483289686","1483213550","1","1","0","-1","76031","105","76031","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115129","6115129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483294594","1483213550","1","1","0","-1","80939","105","80939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115132","6115132","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483281233","1483213550","1","1","0","-1","67578","105","67578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115133","6115133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483303422","1483213550","1","1","0","-1","89767","105","89767","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115134","6115134","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483307027","1483213550","1","1","0","-1","93372","105","93372","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115325","6115325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222533","1483222630","1483304685","1483222533","1","1","0","-1","82055","97","82055","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115326","6115326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222534","1483222630","1483289923","1483222534","1","1","0","-1","67293","96","67293","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115329","6115329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222540","1483222630","1483291327","1483222540","1","1","0","-1","68697","90","68697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115330","6115330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222541","1483222630","1483310687","1483222541","1","1","0","-1","88057","89","88057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115331","6115331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222542","1483222630","1483289282","1483222542","1","1","0","-1","66652","88","66652","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115337","6115337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222560","1483222630","1483311524","1483222560","1","1","0","-1","88894","70","88894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115338","6115338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222563","1483222630","1483314587","1483222563","1","1","0","-1","91957","67","91957","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115340","6115340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222574","1483222750","1483304020","1483222574","1","1","0","-1","81270","176","81270","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115341","6115341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222580","1483222750","1483301313","1483222580","1","1","0","-1","78563","170","78563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115344","6115344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222586","1483222750","1483307812","1483222586","1","1","0","-1","85062","164","85062","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115353","6115353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222606","1483222750","1483309483","1483222606","1","1","0","-1","86733","144","86733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115620","6115620","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231340","1483231467","1483298945","1483231340","1","1","0","-1","67478","127","67478","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115637","6115637","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231347","1483231467","1483302395","1483231347","1","1","0","-1","70928","120","70928","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115646","6115646","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231591","1483231710","1483313236","1483231591","1","1","0","-1","81526","119","81526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115647","6115647","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231592","1483231710","1483310917","1483231592","1","1","0","-1","79207","118","79207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115696","6115696","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231657","1483231953","1483311763","1483231657","1","1","0","-1","79810","296","79810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115717","6115717","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231679","1483232075","1483311252","1483231679","1","1","0","-1","79177","396","79177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116369","6116369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483314600","1483243516","1","1","0","-1","70998","86","70998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116373","6116373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483309681","1483243516","1","1","0","-1","66079","86","66079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6107586[30]","6107586","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[7]","6107594","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[8]","6107595","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[9]","6107596","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483279393","1483036371","1","1","0","-1","242924","98","242924","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[10]","6107597","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483275136","1483036371","1","1","0","-1","238667","98","238667","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[11]","6107598","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[12]","6107599","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[13]","6107600","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483270817","1483036371","1","1","0","-1","234348","98","234348","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[14]","6107601","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[15]","6107602","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[17]","6107604","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[18]","6107605","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[19]","6107606","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[20]","6107607","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483246881","1483036371","1","1","0","-1","210283","227","210283","0","1:0","FAILED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[21]","6107608","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483240052","1483036371","1","1","0","-1","203454","227","203454","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[22]","6107609","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[26]","6107613","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[27]","6107614","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[30]","6107820","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[13]","6107869","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[14]","6107870","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483254894","1483039080","1","1","0","-1","215685","131","215685","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[18]","6107874","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[19]","6107875","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[25]","6107901","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[26]","6107902","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[29]","6107906","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[30]","6108027","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046922","1483306143","1483046357","1","1","0","-1","259221","565","259221","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[20]","6108048","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483231734","1483046357","1","1","0","-1","185225","152","185225","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[21]","6108049","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[22]","6108050","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[23]","6108053","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483296209","1483046357","1","1","0","-1","249566","286","249566","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[24]","6108054","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[25]","6108055","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[26]","6108056","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[27]","6108063","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046778","1483272476","1483046357","1","1","0","-1","225698","421","225698","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108716[1]","6108723","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483229565","1483072475","1","1","0","-1","156978","112","156978","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108716[2]","6108724","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483270842","1483072475","1","1","0","-1","198255","112","198255","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108800[1]","6108801","Robertson","UTC","","Lapwing","Screwdriver","curry","1483076091","1483076144","1483267927","1483076091","1","1","0","-1","191783","53","191783","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6109585[1]","6109587","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483271049","1483109379","1","1","0","-1","161616","56","161616","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6109585[2]","6109588","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483312425","1483109379","1","1","0","-1","202992","56","202992","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6111029[2]","6111031","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483125543","1483310202","1483125395","1","1","0","-1","184659","149","184659","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112885[16]","6112885","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148065","1483148185","1483297208","1483148066","1","1","0","-1","149023","120","149023","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112886[17]","6112886","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148290","1483148436","1483266206","1483148293","1","1","0","-1","117770","146","117770","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112887[20]","6112887","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148944","1483149064","1483255470","1483148944","1","1","0","-1","106406","120","106406","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112904[23]","6112904","Robertson","UTC","","Lapwing","Screwdriver","curry","1483155055","1483155085","1483298241","1483155055","1","1","0","-1","143156","30","143156","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107628","6107628","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037326","1483037758","1483296961","1483037326","1","8","0","-1","259203","432","2073624","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107630","6107630","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037377","1483037889","1483297112","1483037377","1","8","0","-1","259223","512","2073784","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107635","6107635","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037430","1483038146","1483297352","1483037430","1","8","0","-1","259206","716","2073648","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107647","6107647","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037509","1483038280","1483297502","1483037509","1","8","0","-1","259222","771","2073776","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6108907","6108907","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079550","1483079610","1483308226","1483079550","1","8","0","-1","228616","60","1828928","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6108910","6108910","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079655","1483079739","1483308222","1483079655","1","8","0","-1","228483","84","1827864","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["995647","995647","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144144","1483273604","1483144114","1","8","0","-1","129460","30","1035680","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995648","995648","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144145","1483283483","1483144114","1","8","0","-1","139338","31","1114704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995650","995650","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144147","1483274577","1483144114","1","8","0","-1","130430","33","1043440","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995652","995652","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144149","1483292769","1483144114","1","8","0","-1","148620","35","1188960","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995653","995653","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144150","1483274570","1483144114","1","8","0","-1","130420","36","1043360","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995654","995654","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483277818","1483144114","1","8","0","-1","133666","38","1069328","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995655","995655","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483286039","1483144114","1","8","0","-1","141887","38","1135096","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995656","995656","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144154","1483273511","1483144114","1","8","0","-1","129357","40","1034856","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995657","995657","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144155","1483280557","1483144115","1","8","0","-1","136402","40","1091216","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995658","995658","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483277112","1483144115","1","8","0","-1","132954","43","1063632","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995659","995659","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483275125","1483144115","1","8","0","-1","130967","43","1047736","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["1016250","1016250","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483186506","1483186577","1483254650","1483186506","1","8","0","-1","68073","71","544584","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019924","1019924","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483239618","1483239703","1483306378","1483239618","1","8","0","-1","66675","85","533400","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6112942","6112942","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161215","1483161307","1483236730","1483161215","2","24","0","-1","75423","92","1810152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112943","6112943","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161224","1483161307","1483266720","1483161224","2","24","0","-1","105413","83","2529912","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112944","6112944","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161230","1483161307","1483272990","1483161230","2","24","0","-1","111683","77","2680392","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112945","6112945","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161240","1483161307","1483240755","1483161240","2","24","0","-1","79448","67","1906752","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6114330","6114330","Robertson","UTC","","Warbler, Sardinian","Screwdriver","derby","1483203444","1483203589","1483285437","1483203444","4","32","0","-1","81848","145","2619136","0","0:0","CANCELLED by 284857","32","2147486448Mn","259200","white","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6108018","6108018","Robertson","UTC","","Duck, Ferruginous","Screwdriver","derby","1483045081","1483045193","1483297221","1483045081","5","60","0","-1","252028","112","15121680","0","0:0","COMPLETED","60","2147486448Mn","255000","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6111029[10]","6111232","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483127378","1483231867","1483125395","1","1","0","-1","104489","1984","104489","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6110309","6110309","Robertson","UTC","","Thrush, Mistle","Screwdriver","curry","1483118113","1483120705","1483246965","1483118113","1","12","0","-1","126260","2592","1515120","0","1:0","FAILED","12","2147486448Mn","259200","white","Mathematical and Physical Sciences","Mathematical Sciences","Algebra and Number Theory"],["6110932","6110932","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122816","1483129199","1483260184","1483122816","1","1","0","-1","130985","6383","130985","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110934","6110934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122827","1483129199","1483241049","1483122827","1","1","0","-1","111850","6372","111850","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110935","6110935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122833","1483129199","1483243971","1483122833","1","1","0","-1","114772","6366","114772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110941","6110941","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122862","1483129199","1483279653","1483122862","1","1","0","-1","150454","6337","150454","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110943","6110943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122866","1483129199","1483253444","1483122866","1","1","0","-1","124245","6333","124245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110944","6110944","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122873","1483129199","1483239135","1483122873","1","1","0","-1","109936","6326","109936","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110948","6110948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122883","1483129199","1483250001","1483122883","1","1","0","-1","120802","6316","120802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110949","6110949","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122889","1483129199","1483269172","1483122889","1","1","0","-1","139973","6310","139973","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110951","6110951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122898","1483129199","1483257196","1483122898","1","1","0","-1","127997","6301","127997","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110952","6110952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122905","1483129199","1483270373","1483122905","1","1","0","-1","141174","6294","141174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110953","6110953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122914","1483129199","1483258374","1483122914","1","1","0","-1","129175","6285","129175","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110956","6110956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122927","1483130416","1483232571","1483122927","1","1","0","-1","102155","7489","102155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110957","6110957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122928","1483130416","1483269146","1483122928","1","1","0","-1","138730","7488","138730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110959","6110959","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122941","1483130416","1483247414","1483122941","1","1","0","-1","116998","7475","116998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110961","6110961","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122956","1483130416","1483281503","1483122956","1","1","0","-1","151087","7460","151087","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110965","6110965","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122986","1483130940","1483254090","1483122986","1","1","0","-1","123150","7954","123150","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110966","6110966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122991","1483130940","1483235921","1483122991","1","1","0","-1","104981","7949","104981","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110967","6110967","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122993","1483130940","1483244686","1483122993","1","1","0","-1","113746","7947","113746","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110969","6110969","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122999","1483140833","1483230389","1483122999","1","1","0","-1","89556","17834","89556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110970","6110970","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123006","1483140833","1483231508","1483123006","1","1","0","-1","90675","17827","90675","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110971","6110971","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123011","1483140833","1483243740","1483123011","1","1","0","-1","102907","17822","102907","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110972","6110972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123014","1483140833","1483246134","1483123014","1","1","0","-1","105301","17819","105301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110973","6110973","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123020","1483140833","1483249560","1483123020","1","1","0","-1","108727","17813","108727","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110974","6110974","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123028","1483140833","1483237007","1483123028","1","1","0","-1","96174","17805","96174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110975","6110975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123031","1483140833","1483232693","1483123031","1","1","0","-1","91860","17802","91860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110976","6110976","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123039","1483140833","1483265721","1483123039","1","1","0","-1","124888","17794","124888","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110979","6110979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123058","1483140833","1483259832","1483123058","1","1","0","-1","118999","17775","118999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110980","6110980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123059","1483140833","1483242584","1483123059","1","1","0","-1","101751","17774","101751","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110982","6110982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123062","1483140833","1483246293","1483123062","1","1","0","-1","105460","17771","105460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110983","6110983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123074","1483140833","1483254460","1483123074","1","1","0","-1","113627","17759","113627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110984","6110984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123081","1483140833","1483254648","1483123081","1","1","0","-1","113815","17752","113815","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110986","6110986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123088","1483140833","1483249312","1483123088","1","1","0","-1","108479","17745","108479","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111667","6111667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130503","1483140958","1483273994","1483130503","1","1","0","-1","133036","10455","133036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111669","6111669","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130511","1483140958","1483261777","1483130511","1","1","0","-1","120819","10447","120819","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111670","6111670","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130519","1483140958","1483237534","1483130519","1","1","0","-1","96576","10439","96576","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111671","6111671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130527","1483140958","1483255977","1483130527","1","1","0","-1","115019","10431","115019","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111692","6111692","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130555","1483140958","1483255361","1483130555","1","1","0","-1","114403","10403","114403","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111693","6111693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130560","1483140958","1483230064","1483130560","1","1","0","-1","89106","10398","89106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111695","6111695","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130575","1483143765","1483230749","1483130575","1","1","0","-1","86984","13190","86984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111697","6111697","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130582","1483143765","1483258716","1483130582","1","1","0","-1","114951","13183","114951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111700","6111700","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130589","1483146922","1483268786","1483130589","1","1","0","-1","121864","16333","121864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111701","6111701","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130598","1483146922","1483242979","1483130598","1","1","0","-1","96057","16324","96057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111702","6111702","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130612","1483146922","1483287626","1483130612","1","1","0","-1","140704","16310","140704","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111029[22]","6111495","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483129193","1483303395","1483125395","1","1","0","-1","174202","3799","174202","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["964695","964695","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959827","1483244087","1482955559","1","16","0","-1","284260","4268","4548160","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964696","964696","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959922","1483241046","1482955559","1","16","0","-1","281124","4363","4497984","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964697","964697","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483244842","1482955560","1","16","0","-1","283623","5659","4537968","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964698","964698","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483243832","1482955560","1","16","0","-1","282613","5659","4521808","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964699","964699","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961261","1483252567","1482955560","1","16","0","-1","291306","5701","4660896","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964700","964700","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482963515","1483249666","1482955560","1","16","0","-1","286151","7955","4578416","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964701","964701","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482964505","1483248060","1482955560","1","16","0","-1","283555","8945","4536880","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964702","964702","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482966664","1483246450","1482955560","1","16","0","-1","279786","11104","4476576","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964703","964703","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482968430","1483254631","1482955560","1","16","0","-1","286201","12870","4579216","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964704","964704","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482969745","1483253462","1482955560","1","16","0","-1","283717","14185","4539472","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964705","964705","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482969934","1483255664","1482955561","1","16","0","-1","285730","14373","4571680","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964706","964706","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482972508","1483258765","1482955561","1","16","0","-1","286257","16947","4580112","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["6112948","6112948","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161271","1483177476","1483287539","1483161271","2","16","0","-1","110063","16205","1761008","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112946","6112946","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161251","1483169402","1483254005","1483161251","2","24","0","-1","84603","8151","2030472","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112947","6112947","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161259","1483170757","1483266921","1483161259","2","24","0","-1","96164","9498","2307936","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112949","6112949","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161281","1483178210","1483258133","1483161281","2","24","0","-1","79923","16929","1918152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6111703","6111703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130621","1483149447","1483259968","1483130621","1","1","0","-1","110521","18826","110521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111704","6111704","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130626","1483149447","1483259737","1483130626","1","1","0","-1","110290","18821","110290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111705","6111705","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130632","1483149447","1483243256","1483130632","1","1","0","-1","93809","18815","93809","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111706","6111706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130637","1483149447","1483262042","1483130637","1","1","0","-1","112595","18810","112595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111707","6111707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130644","1483149447","1483251123","1483130644","1","1","0","-1","101676","18803","101676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111708","6111708","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130651","1483149571","1483245286","1483130651","1","1","0","-1","95715","18920","95715","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111709","6111709","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483243917","1483130661","1","1","0","-1","94346","18910","94346","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111710","6111710","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483297967","1483130661","1","1","0","-1","148396","18910","148396","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111711","6111711","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130663","1483149571","1483262372","1483130663","1","1","0","-1","112801","18908","112801","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111731","6111731","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130683","1483149571","1483273166","1483130683","1","1","0","-1","123595","18888","123595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111732","6111732","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130695","1483149571","1483247653","1483130695","1","1","0","-1","98082","18876","98082","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111733","6111733","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130702","1483149697","1483291977","1483130702","1","1","0","-1","142280","18995","142280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111734","6111734","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130705","1483149697","1483267146","1483130705","1","1","0","-1","117449","18992","117449","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111735","6111735","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130713","1483149697","1483289923","1483130713","1","1","0","-1","140226","18984","140226","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111736","6111736","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130716","1483149697","1483273378","1483130716","1","1","0","-1","123681","18981","123681","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111737","6111737","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130723","1483149697","1483271994","1483130723","1","1","0","-1","122297","18974","122297","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111738","6111738","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130728","1483149697","1483233193","1483130728","1","1","0","-1","83496","18969","83496","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111739","6111739","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130742","1483149697","1483247179","1483130742","1","1","0","-1","97482","18955","97482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111741","6111741","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130745","1483149823","1483259432","1483130745","1","1","0","-1","109609","19078","109609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111742","6111742","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130747","1483149823","1483250848","1483130747","1","1","0","-1","101025","19076","101025","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111743","6111743","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130752","1483149823","1483264028","1483130752","1","1","0","-1","114205","19071","114205","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111744","6111744","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130755","1483150068","1483240027","1483130755","1","1","0","-1","89959","19313","89959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111748","6111748","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130786","1483150190","1483235543","1483130786","1","1","0","-1","85353","19404","85353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111749","6111749","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130795","1483150312","1483286368","1483130795","1","1","0","-1","136056","19517","136056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111770","6111770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130826","1483150312","1483254519","1483130826","1","1","0","-1","104207","19486","104207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111771","6111771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130836","1483150312","1483260043","1483130836","1","1","0","-1","109731","19476","109731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111772","6111772","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130843","1483150312","1483261777","1483130843","1","1","0","-1","111465","19469","111465","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111773","6111773","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130848","1483150312","1483236580","1483130848","1","1","0","-1","86268","19464","86268","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111774","6111774","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130853","1483150312","1483240561","1483130853","1","1","0","-1","90249","19459","90249","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111775","6111775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130859","1483150434","1483289924","1483130859","1","1","0","-1","139490","19575","139490","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108176","6108176","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483049788","1483075619","1483248447","1483049788","1","12","0","-1","172828","25831","2073936","0","1:0","TIMEOUT","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109583","6109583","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109304","1483130147","1483256250","1483109304","1","12","0","-1","126103","20843","1513236","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109608","6109608","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109465","1483130016","1483257008","1483109465","1","12","0","-1","126992","20551","1523904","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109610","6109610","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109484","1483130147","1483229691","1483109484","1","12","0","-1","99544","20663","1194528","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["964707","964707","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482974294","1483257177","1482955561","1","16","0","-1","282883","18733","4526128","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["6112950","6112950","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161291","1483179921","1483263236","1483161291","2","24","0","-1","83315","18630","1999560","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6108913","6108913","Robertson","UTC","","Peregrine","Screwdriver","derby","1483079747","1483130147","1483238294","1483079747","5","60","0","-1","108147","50400","6488820","0","0:0","COMPLETED","60","2147486448Mn","110400","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6071470","6071470","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916662","1483044536","1483271836","1483044426","1","8","0","-1","227300","1127874","1818400","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071484","6071484","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916957","1483044536","1483298941","1483044426","1","8","0","-1","254405","1127579","2035240","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071502","6071502","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481917808","1483085948","1483273485","1483064965","1","8","0","-1","187537","1168140","1500296","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071518","6071518","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918137","1483184680","1483294800","1483184668","1","8","0","-1","110120","1266543","880960","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071523","6071523","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918281","1483184680","1483305127","1483184668","1","8","0","-1","120447","1266399","963576","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071529","6071529","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918529","1483184680","1483292468","1483184668","1","8","0","-1","107788","1266151","862304","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071533","6071533","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918630","1483184680","1483309102","1483184660","1","8","0","-1","124422","1266050","995376","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["995282","995282","Posidriv","UTC","","Ovenbird","Screwdriver","bavarian-cream","1482865454","1483205093","1483312407","1482865454","1","16","0","-1","107314","339639","1717024","0","0:0","COMPLETED","16","125Gn","345600","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"],["6101316","6101316","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784833","1482973835","1483233058","1482784833","8","96","0","-1","259223","189002","24885408","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101317","6101317","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784877","1482974692","1483233932","1482784877","8","96","0","-1","259240","189815","24887040","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101752","6101752","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811393","1482974692","1483233933","1482811393","8","96","0","-1","259241","163299","24887136","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101753","6101753","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811463","1482974940","1483234228","1482811463","8","96","0","-1","259288","163477","24891648","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101754","6101754","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811513","1482977031","1483236242","1482811513","8","96","0","-1","259211","165518","24884256","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101755","6101755","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811582","1482977031","1483236244","1482811582","8","96","0","-1","259213","165449","24884448","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101756","6101756","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811640","1482978251","1483237480","1482811640","8","96","0","-1","259229","166611","24885984","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"]]} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json index c2682dcc59..838ed83d25 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json +++ b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json @@ -1 +1 @@ -{"success":true,"fields":["Local Job Id","Resource","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"],"data":[["1012557[29]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288350","1483293912","1483230521","1","12","0","-1","5562","57829","66744","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[30]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288495","1483292972","1483230521","1","12","0","-1","4477","57974","53724","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[31]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288619","1483293176","1483230521","1","12","0","-1","4557","58098","54684","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[32]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288670","1483293468","1483230521","1","12","0","-1","4798","58149","57576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[33]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288672","1483292962","1483230521","1","12","0","-1","4290","58151","51480","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[34]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289641","1483294183","1483230521","1","12","0","-1","4542","59120","54504","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[35]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289653","1483294283","1483230521","1","12","0","-1","4630","59132","55560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[36]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289824","1483294346","1483230521","1","12","0","-1","4522","59303","54264","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[37]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483290566","1483295262","1483230521","1","12","0","-1","4696","60045","56352","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[38]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483291925","1483296248","1483230521","1","12","0","-1","4323","61404","51876","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[39]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292281","1483296708","1483230521","1","12","0","-1","4427","61760","53124","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[40]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292962","1483297444","1483230521","1","12","0","-1","4482","62441","53784","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[41]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292973","1483297542","1483230521","1","12","0","-1","4569","62452","54828","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[42]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293176","1483297480","1483230521","1","12","0","-1","4304","62655","51648","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[43]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293468","1483298032","1483230521","1","12","0","-1","4564","62947","54768","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[44]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293912","1483298792","1483230521","1","12","0","-1","4880","63391","58560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[45]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294183","1483299108","1483230521","1","12","0","-1","4925","63662","59100","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[46]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294283","1483299006","1483230521","1","12","0","-1","4723","63762","56676","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[47]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294346","1483299595","1483230521","1","12","0","-1","5249","63825","62988","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[48]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295212","1483300731","1483230521","1","12","0","-1","5519","64691","66228","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[49]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295263","1483299479","1483230521","1","12","0","-1","4216","64742","50592","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6108925","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080369","1483232750","1483238034","1483080369","1","8","0","-1","5284","152381","42272","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6112983","Robertson","UTC","","Dunlin","Screwdriver","curry","1483166772","1483239075","1483243977","1483166772","1","8","0","-1","4902","72303","39216","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6108976","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083320","1483222024","1483230247","1483083320","1","8","0","-1","8223","138704","65784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108977","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083401","1483222024","1483230759","1483083401","1","8","0","-1","8735","138623","69880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108991","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483084371","1483222750","1483229088","1483084371","1","8","0","-1","6338","138379","50704","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108995","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085380","1483223112","1483234712","1483085380","1","8","0","-1","11600","137732","92800","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108996","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085590","1483223112","1483229540","1483085590","1","8","0","-1","6428","137522","51424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108997","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085746","1483223234","1483230389","1483085746","1","8","0","-1","7155","137488","57240","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108998","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085849","1483223234","1483229603","1483085849","1","8","0","-1","6369","137385","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108999","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085883","1483223355","1483229322","1483085883","1","8","0","-1","5967","137472","47736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109002","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086333","1483223598","1483230052","1483086333","1","8","0","-1","6454","137265","51632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109003","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086372","1483223598","1483230207","1483086372","1","8","0","-1","6609","137226","52872","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109004","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086630","1483223598","1483229043","1483086630","1","8","0","-1","5445","136968","43560","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109007","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086757","1483223719","1483229287","1483086757","1","8","0","-1","5568","136962","44544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109008","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086851","1483223719","1483229022","1483086851","1","8","0","-1","5303","136868","42424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109010","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086869","1483223719","1483229903","1483086869","1","8","0","-1","6184","136850","49472","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109011","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087068","1483223840","1483229090","1483087068","1","8","0","-1","5250","136772","42000","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109017","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087348","1483223961","1483229678","1483087348","1","8","0","-1","5717","136613","45736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109020","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087552","1483224082","1483228824","1483087552","1","8","0","-1","4742","136530","37936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109024","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087885","1483224204","1483229349","1483087885","1","8","0","-1","5145","136319","41160","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109025","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087997","1483224325","1483230127","1483087997","1","8","0","-1","5802","136328","46416","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109027","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088108","1483224446","1483229274","1483088108","1","8","0","-1","4828","136338","38624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109030","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088363","1483224446","1483229480","1483088363","1","8","0","-1","5034","136083","40272","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109032","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088713","1483224566","1483231633","1483088713","1","8","0","-1","7067","135853","56536","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109033","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088719","1483224566","1483230228","1483088719","1","8","0","-1","5662","135847","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109034","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088738","1483224566","1483229332","1483088738","1","8","0","-1","4766","135828","38128","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109035","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088782","1483224566","1483230787","1483088782","1","8","0","-1","6221","135784","49768","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109036","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088824","1483224566","1483229580","1483088824","1","8","0","-1","5014","135742","40112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109037","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088866","1483224687","1483231394","1483088866","1","8","0","-1","6707","135821","53656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109038","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088941","1483224687","1483230384","1483088941","1","8","0","-1","5697","135746","45576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109039","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089098","1483224687","1483229672","1483089098","1","8","0","-1","4985","135589","39880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109040","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089159","1483224687","1483228992","1483089159","1","8","0","-1","4305","135528","34440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109041","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089488","1483224687","1483230409","1483089488","1","8","0","-1","5722","135199","45776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109044","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089787","1483224687","1483229177","1483089787","1","8","0","-1","4490","134900","35920","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109046","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089959","1483224808","1483229815","1483089959","1","8","0","-1","5007","134849","40056","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109047","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090136","1483224808","1483229901","1483090136","1","8","0","-1","5093","134672","40744","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109048","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090183","1483224808","1483229514","1483090183","1","8","0","-1","4706","134625","37648","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109051","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090770","1483224808","1483229619","1483090770","1","8","0","-1","4811","134038","38488","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109052","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090793","1483224808","1483229126","1483090793","1","8","0","-1","4318","134015","34544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109053","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090812","1483224929","1483231271","1483090812","1","8","0","-1","6342","134117","50736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109054","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090864","1483224929","1483230715","1483090864","1","8","0","-1","5786","134065","46288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109055","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090919","1483224929","1483230261","1483090919","1","8","0","-1","5332","134010","42656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109056","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091023","1483225050","1483231751","1483091023","1","8","0","-1","6701","134027","53608","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109057","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091053","1483225050","1483230871","1483091053","1","8","0","-1","5821","133997","46568","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109058","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091231","1483225050","1483229940","1483091231","1","8","0","-1","4890","133819","39120","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109059","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091458","1483225171","1483231609","1483091458","1","8","0","-1","6438","133713","51504","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109060","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091633","1483225171","1483229708","1483091633","1","8","0","-1","4537","133538","36296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109061","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091834","1483225171","1483230308","1483091834","1","8","0","-1","5137","133337","41096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109062","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091958","1483225171","1483230781","1483091958","1","8","0","-1","5610","133213","44880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109063","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092218","1483225412","1483230799","1483092218","1","8","0","-1","5387","133194","43096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109064","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092233","1483225533","1483231071","1483092233","1","8","0","-1","5538","133300","44304","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109065","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092254","1483225533","1483231436","1483092254","1","8","0","-1","5903","133279","47224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109066","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092263","1483225533","1483232483","1483092263","1","8","0","-1","6950","133270","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109067","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092267","1483225533","1483230237","1483092267","1","8","0","-1","4704","133266","37632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109068","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092363","1483225533","1483230561","1483092363","1","8","0","-1","5028","133170","40224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109069","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092400","1483225533","1483231113","1483092400","1","8","0","-1","5580","133133","44640","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109072","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092705","1483225533","1483230470","1483092705","1","8","0","-1","4937","132828","39496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109073","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092793","1483225654","1483231218","1483092793","1","8","0","-1","5564","132861","44512","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109074","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092840","1483225654","1483231087","1483092840","1","8","0","-1","5433","132814","43464","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109075","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092891","1483225654","1483230733","1483092891","1","8","0","-1","5079","132763","40632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109077","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093085","1483225897","1483231591","1483093085","1","8","0","-1","5694","132812","45552","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109078","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093167","1483225897","1483231551","1483093167","1","8","0","-1","5654","132730","45232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109079","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093391","1483225897","1483230730","1483093391","1","8","0","-1","4833","132506","38664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109080","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093636","1483225897","1483231622","1483093636","1","8","0","-1","5725","132261","45800","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109081","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093739","1483225897","1483231858","1483093739","1","8","0","-1","5961","132158","47688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109082","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093894","1483225897","1483232891","1483093894","1","8","0","-1","6994","132003","55952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109083","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093912","1483225897","1483231168","1483093912","1","8","0","-1","5271","131985","42168","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109084","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094011","1483225897","1483231651","1483094011","1","8","0","-1","5754","131886","46032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109085","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094148","1483225897","1483232847","1483094148","1","8","0","-1","6950","131749","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109086","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094155","1483225897","1483230146","1483094155","1","8","0","-1","4249","131742","33992","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109088","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094167","1483225897","1483230641","1483094167","1","8","0","-1","4744","131730","37952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109089","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094195","1483225897","1483230934","1483094195","1","8","0","-1","5037","131702","40296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109090","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094216","1483225897","1483230451","1483094216","1","8","0","-1","4554","131681","36432","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109091","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094281","1483225897","1483230400","1483094281","1","8","0","-1","4503","131616","36024","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109092","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094288","1483226018","1483233119","1483094288","1","8","0","-1","7101","131730","56808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109093","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094368","1483226018","1483232610","1483094368","1","8","0","-1","6592","131650","52736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109094","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094474","1483226138","1483234341","1483094474","1","8","0","-1","8203","131664","65624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109095","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094479","1483226138","1483232492","1483094479","1","8","0","-1","6354","131659","50832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109096","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094558","1483226138","1483232894","1483094558","1","8","0","-1","6756","131580","54048","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109097","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094775","1483226138","1483232289","1483094775","1","8","0","-1","6151","131363","49208","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109098","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094807","1483226138","1483232114","1483094807","1","8","0","-1","5976","131331","47808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109099","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094833","1483226138","1483232015","1483094833","1","8","0","-1","5877","131305","47016","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109100","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094912","1483226138","1483233025","1483094912","1","8","0","-1","6887","131226","55096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109101","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094975","1483226138","1483232621","1483094975","1","8","0","-1","6483","131163","51864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109102","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094987","1483226138","1483234366","1483094987","1","8","0","-1","8228","131151","65824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109103","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094991","1483226138","1483232522","1483094991","1","8","0","-1","6384","131147","51072","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109104","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095009","1483226138","1483232507","1483095009","1","8","0","-1","6369","131129","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109105","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095189","1483226138","1483231768","1483095189","1","8","0","-1","5630","130949","45040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109106","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095277","1483226138","1483232267","1483095277","1","8","0","-1","6129","130861","49032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109107","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095298","1483226138","1483232799","1483095298","1","8","0","-1","6661","130840","53288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109108","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095351","1483226138","1483234568","1483095351","1","8","0","-1","8430","130787","67440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109109","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095358","1483226138","1483232335","1483095358","1","8","0","-1","6197","130780","49576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109110","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095544","1483226138","1483231291","1483095544","1","8","0","-1","5153","130594","41224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109111","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095597","1483226380","1483232113","1483095597","1","8","0","-1","5733","130783","45864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109112","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095604","1483226865","1483234633","1483095604","1","8","0","-1","7768","131261","62144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109113","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095694","1483226865","1483234290","1483095694","1","8","0","-1","7425","131171","59400","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109114","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095721","1483226865","1483233753","1483095721","1","8","0","-1","6888","131144","55104","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109115","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095768","1483226865","1483233616","1483095768","1","8","0","-1","6751","131097","54008","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109118","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095846","1483226986","1483234657","1483095846","1","8","0","-1","7671","131140","61368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109119","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095859","1483226986","1483233892","1483095859","1","8","0","-1","6906","131127","55248","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109120","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095887","1483226986","1483233575","1483095887","1","8","0","-1","6589","131099","52712","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109121","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096300","1483227108","1483234301","1483096300","1","8","0","-1","7193","130808","57544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109122","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096337","1483227108","1483233337","1483096337","1","8","0","-1","6229","130771","49832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109123","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096407","1483227108","1483233594","1483096407","1","8","0","-1","6486","130701","51888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109124","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096437","1483227108","1483232578","1483096437","1","8","0","-1","5470","130671","43760","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109125","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096476","1483227229","1483233053","1483096476","1","8","0","-1","5824","130753","46592","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109127","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096578","1483227229","1483233243","1483096578","1","8","0","-1","6014","130651","48112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109128","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096603","1483227229","1483234670","1483096603","1","8","0","-1","7441","130626","59528","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109130","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096756","1483227229","1483232190","1483096756","1","8","0","-1","4961","130473","39688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109131","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096785","1483227229","1483232539","1483096785","1","8","0","-1","5310","130444","42480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109132","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097110","1483227229","1483233030","1483097110","1","8","0","-1","5801","130119","46408","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109135","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097235","1483227229","1483233122","1483097235","1","8","0","-1","5893","129994","47144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109138","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097431","1483227350","1483233175","1483097431","1","8","0","-1","5825","129919","46600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109139","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097452","1483227350","1483232730","1483097452","1","8","0","-1","5380","129898","43040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109141","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097541","1483227471","1483233569","1483097541","1","8","0","-1","6098","129930","48784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109142","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097655","1483227593","1483232801","1483097655","1","8","0","-1","5208","129938","41664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109143","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097661","1483227714","1483233952","1483097661","1","8","0","-1","6238","130053","49904","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109144","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097697","1483227714","1483232581","1483097697","1","8","0","-1","4867","130017","38936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109147","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098258","1483227835","1483232822","1483098258","1","8","0","-1","4987","129577","39896","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109148","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098518","1483227835","1483232432","1483098518","1","8","0","-1","4597","129317","36776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109149","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099136","1483227955","1483233558","1483099136","1","8","0","-1","5603","128819","44824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109150","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099286","1483228197","1483233558","1483099286","1","8","0","-1","5361","128911","42888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109151","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099326","1483228439","1483233751","1483099326","1","8","0","-1","5312","129113","42496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109152","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099456","1483228439","1483233268","1483099456","1","8","0","-1","4829","128983","38632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109153","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099592","1483228439","1483232901","1483099592","1","8","0","-1","4462","128847","35696","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109154","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099600","1483228439","1483233450","1483099600","1","8","0","-1","5011","128839","40088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109155","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099637","1483228560","1483234656","1483099637","1","8","0","-1","6096","128923","48768","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109156","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099646","1483228560","1483234288","1483099646","1","8","0","-1","5728","128914","45824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109157","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099717","1483228680","1483234692","1483099717","1","8","0","-1","6012","128963","48096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109158","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099730","1483228801","1483234361","1483099730","1","8","0","-1","5560","129071","44480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109159","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099925","1483228801","1483234374","1483099925","1","8","0","-1","5573","128876","44584","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109160","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099982","1483228801","1483233674","1483099982","1","8","0","-1","4873","128819","38984","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109161","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099997","1483228922","1483234584","1483099997","1","8","0","-1","5662","128925","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109162","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100041","1483229043","1483234665","1483100041","1","8","0","-1","5622","129002","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109163","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100045","1483229043","1483234665","1483100045","1","8","0","-1","5622","128998","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109164","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100124","1483229165","1483234673","1483100124","1","8","0","-1","5508","129041","44064","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109165","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100146","1483229165","1483234501","1483100146","1","8","0","-1","5336","129019","42688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109166","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100211","1483229165","1483234641","1483100211","1","8","0","-1","5476","128954","43808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109167","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100300","1483229285","1483234647","1483100300","1","8","0","-1","5362","128985","42896","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109168","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100338","1483229285","1483234636","1483100338","1","8","0","-1","5351","128947","42808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109169","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100388","1483229406","1483233928","1483100388","1","8","0","-1","4522","129018","36176","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109170","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100468","1483229406","1483234292","1483100468","1","8","0","-1","4886","128938","39088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109171","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100470","1483229406","1483234322","1483100470","1","8","0","-1","4916","128936","39328","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109172","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100822","1483229406","1483234324","1483100822","1","8","0","-1","4918","128584","39344","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109173","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100837","1483229527","1483234696","1483100837","1","8","0","-1","5169","128690","41352","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109174","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100960","1483229527","1483234016","1483100960","1","8","0","-1","4489","128567","35912","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109175","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101004","1483229648","1483234673","1483101004","1","8","0","-1","5025","128644","40200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109176","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101005","1483229648","1483234695","1483101005","1","8","0","-1","5047","128643","40376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109177","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101140","1483229648","1483234700","1483101140","1","8","0","-1","5052","128508","40416","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109178","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101266","1483229648","1483234665","1483101266","1","8","0","-1","5017","128382","40136","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109179","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101273","1483229769","1483234646","1483101273","1","8","0","-1","4877","128496","39016","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109180","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101441","1483229769","1483234726","1483101441","1","8","0","-1","4957","128328","39656","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109181","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101453","1483229769","1483234671","1483101453","1","8","0","-1","4902","128316","39216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109182","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101592","1483229769","1483234656","1483101592","1","8","0","-1","4887","128177","39096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109183","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101611","1483229890","1483234717","1483101611","1","8","0","-1","4827","128279","38616","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109184","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101690","1483230012","1483234653","1483101690","1","8","0","-1","4641","128322","37128","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109185","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101712","1483230012","1483234658","1483101712","1","8","0","-1","4646","128300","37168","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109186","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101735","1483230133","1483234680","1483101735","1","8","0","-1","4547","128398","36376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109187","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101747","1483230254","1483234656","1483101747","1","8","0","-1","4402","128507","35216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109188","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101761","1483230254","1483234669","1483101761","1","8","0","-1","4415","128493","35320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109189","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101789","1483230254","1483234654","1483101789","1","8","0","-1","4400","128465","35200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109190","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101824","1483230497","1483234657","1483101824","1","8","0","-1","4160","128673","33280","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109191","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101838","1483230497","1483234681","1483101838","1","8","0","-1","4184","128659","33472","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109192","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101940","1483230497","1483234701","1483101940","1","8","0","-1","4204","128557","33632","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109193","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102021","1483230739","1483234665","1483102021","1","8","0","-1","3926","128718","31408","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109194","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102063","1483230861","1483234657","1483102063","1","8","0","-1","3796","128798","30368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109195","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102305","1483230861","1483234681","1483102305","1","8","0","-1","3820","128556","30560","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109196","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102420","1483230982","1483234647","1483102420","1","8","0","-1","3665","128562","29320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1012557[74]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483305309","1483309059","1483230521","1","12","0","-1","3750","74788","45000","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[50]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296248","1483300942","1483230521","1","12","0","-1","4694","65727","56328","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[51]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296708","1483301965","1483230521","1","12","0","-1","5257","66187","63084","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[52]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297445","1483302424","1483230521","1","12","0","-1","4979","66924","59748","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[53]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297480","1483302365","1483230521","1","12","0","-1","4885","66959","58620","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[54]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297542","1483302018","1483230521","1","12","0","-1","4476","67021","53712","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[55]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298032","1483303026","1483230521","1","12","0","-1","4994","67511","59928","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[56]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298793","1483303445","1483230521","1","12","0","-1","4652","68272","55824","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[57]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299007","1483303788","1483230521","1","12","0","-1","4781","68486","57372","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[58]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299108","1483303864","1483230521","1","12","0","-1","4756","68587","57072","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[59]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299479","1483304996","1483230521","1","12","0","-1","5517","68958","66204","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[60]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299596","1483303401","1483230521","1","12","0","-1","3805","69075","45660","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[61]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300731","1483304682","1483230521","1","12","0","-1","3951","70210","47412","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[62]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300943","1483306491","1483230521","1","12","0","-1","5548","70422","66576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[67]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303027","1483306986","1483230521","1","12","0","-1","3959","72506","47508","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[68]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303402","1483307160","1483230521","1","12","0","-1","3758","72881","45096","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[70]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303788","1483307453","1483230521","1","12","0","-1","3665","73267","43980","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[71]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303865","1483308086","1483230521","1","12","0","-1","4221","73344","50652","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[72]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483304682","1483308627","1483230521","1","12","0","-1","3945","74161","47340","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6108929","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080673","1483231918","1483246389","1483080673","2","16","0","-1","14471","151245","231536","0","1:0","TIMEOUT","16","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6113332","Robertson","UTC","","Dunlin","Screwdriver","curry","1483168273","1483236943","1483251439","1483168273","2","24","0","-1","14496","68670","347904","0","1:0","TIMEOUT","24","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["1020000","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483260369","1483260369","1483282571","1483260369","1","8","0","-1","22202","0","177616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020089","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483289868","1483289868","1483313573","1483289868","1","8","0","-1","23705","0","189640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019989","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483255506","1483255506","1483277244","1483255506","1","8","0","-1","21738","0","173904","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020009","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483262143","1483262143","1483282140","1483262143","1","8","0","-1","19997","0","159976","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309861","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241326","1483275726","1483241326","1","16","0","-1","34400","0","550400","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309884","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241632","1483241632","1483276573","1483241632","1","16","0","-1","34941","0","559056","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019944","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483243754","1483243754","1483264519","1483243754","1","20","0","-1","20765","0","415300","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1020095","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483290808","1483290808","1483311960","1483290808","1","20","0","-1","21152","0","423040","0","1:0","FAILED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6117519","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250316","1483250340","1483285217","1483250316","1","1","0","-1","34877","24","34877","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6119997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277789","1483277815","1483304416","1483277789","1","1","0","-1","26601","26","26601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277799","1483277815","1483297012","1483277799","1","1","0","-1","19197","16","19197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483309448","1483290531","1","1","0","-1","18901","16","18901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120350","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483314965","1483290531","1","1","0","-1","24418","16","24418","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291123","1483291148","1483309307","1483291123","1","1","0","-1","18159","25","18159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291124","1483291148","1483311554","1483291124","1","1","0","-1","20406","24","20406","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483314764","1483291498","1","1","0","-1","23254","12","23254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483310198","1483291498","1","1","0","-1","18688","12","18688","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["1018470","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483209281","1483209306","1483241614","1483209281","1","8","0","-1","32308","25","258464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020038","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483276177","1483276178","1483296547","1483276177","1","8","0","-1","20369","1","162952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2308432","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483231015","1483231016","1483252678","1483231015","1","16","0","-1","21662","1","346592","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309845","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483240905","1483240916","1483264210","1483240905","1","16","0","-1","23294","11","372704","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309860","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241321","1483241326","1483275836","1483241321","1","16","0","-1","34510","5","552160","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115789","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233680","1483233777","1483262633","1483233680","1","1","0","-1","28856","97","28856","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117558","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250375","1483250591","1483284587","1483250375","1","1","0","-1","33996","216","33996","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117561","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250385","1483250591","1483275064","1483250385","1","1","0","-1","24473","206","24473","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117576","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250424","1483250716","1483285752","1483250424","1","1","0","-1","35036","292","35036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277851","1483278055","1483297236","1483277851","1","1","0","-1","19181","204","19181","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277897","1483278295","1483314227","1483277897","1","1","0","-1","35932","398","35932","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277902","1483278295","1483299228","1483277902","1","1","0","-1","20933","393","20933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277948","1483278535","1483307536","1483277948","1","1","0","-1","29001","587","29001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120115","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277958","1483278535","1483309618","1483277958","1","1","0","-1","31083","577","31083","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120140","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277980","1483278655","1483309089","1483277980","1","1","0","-1","30434","675","30434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120150","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277995","1483278776","1483309421","1483277995","1","1","0","-1","30645","781","30645","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483278052","1483279016","1483302406","1483278052","1","1","0","-1","23390","964","23390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287733","1483288145","1483308104","1483287733","1","1","0","-1","19959","412","19959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287738","1483288145","1483313129","1483287738","1","1","0","-1","24984","407","24984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120343","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290456","1483290547","1483312223","1483290456","1","1","0","-1","21676","91","21676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290582","1483290667","1483314627","1483290582","1","1","0","-1","23960","85","23960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120363","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483313406","1483290679","1","1","0","-1","22619","108","22619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120367","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483309066","1483290679","1","1","0","-1","18279","108","18279","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120380","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290972","1483291028","1483313591","1483290972","1","1","0","-1","22563","56","22563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483314051","1483291085","1","1","0","-1","22903","63","22903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483312361","1483291085","1","1","0","-1","21213","63","21213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291185","1483291269","1483315123","1483291185","1","1","0","-1","23854","84","23854","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291478","1483291510","1483314889","1483291478","1","1","0","-1","23379","32","23379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483313217","1483291694","1","1","0","-1","21466","57","21466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483314996","1483291694","1","1","0","-1","23245","57","23245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483309886","1483291694","1","1","0","-1","18135","57","18135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483312872","1483291694","1","1","0","-1","21121","57","21121","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310758","1483291694","1","1","0","-1","19007","57","19007","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311228","1483291694","1","1","0","-1","19477","57","19477","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311251","1483291694","1","1","0","-1","19500","57","19500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120441","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310302","1483291694","1","1","0","-1","18551","57","18551","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120447","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310421","1483291774","1","1","0","-1","18550","97","18550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120448","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310491","1483291774","1","1","0","-1","18620","97","18620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483313528","1483292046","1","1","0","-1","21416","66","21416","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120461","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483312309","1483292046","1","1","0","-1","20197","66","20197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483314786","1483292046","1","1","0","-1","22674","66","22674","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["1018314","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483206818","1483207021","1483233329","1483206818","1","8","0","-1","26308","203","210464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018806","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215142","1483215195","1483236458","1483215142","1","8","0","-1","21263","53","170104","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018919","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483217367","1483217479","1483237249","1483217367","1","8","0","-1","19770","112","158160","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019923","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483239608","1483239703","1483265574","1483239608","1","8","0","-1","25871","95","206968","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019934","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483241902","1483241991","1483270583","1483241902","1","8","0","-1","28592","89","228736","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115525[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231224","1483251512","1483230137","1","12","0","-1","20288","1090","243456","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483236943","1483257688","1483230268","1","12","0","-1","20745","6678","248940","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[59]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483238516","1483268469","1483230268","1","12","0","-1","29953","8251","359436","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115537[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230317","1483240424","1483259619","1483230317","1","12","0","-1","19195","10107","230340","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115539[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230378","1483248057","1483270798","1483230379","1","12","0","-1","22741","17679","272892","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[18]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259700","1483280279","1483245145","1","12","0","-1","20579","14555","246948","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[46]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483260934","1483280736","1483245145","1","12","0","-1","19802","15789","237624","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116050","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240024","1483272770","1483295769","1483240024","8","96","0","-1","22999","32746","2207904","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6116051","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240051","1483273371","1483295772","1483240051","8","96","0","-1","22401","33320","2150496","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1004733","Mortorq","UTC","","Redpoll, Lesser","Screwdriver","cherry","1483207214","1483207214","1483270166","1483207214","1","4","0","-1","62952","0","251808","0","0:0","COMPLETED","4","2147491648Mn","3596400","pita","Humanities\/Arts","Arts","Arts"],["1019945","Posidriv","UTC","","Fieldfare","Screwdriver","banana-cream","1483244077","1483244077","1483284074","1483244077","1","8","0","-1","39997","0","319976","0","0:0","COMPLETED","8","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1019972","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483251196","1483251196","1483287446","1483251196","1","8","0","-1","36250","0","290000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6113839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200024","1483200053","1483264736","1483200024","1","1","0","-1","64683","29","64683","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115604","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231323","1483231346","1483289925","1483231323","1","1","0","-1","58579","23","58579","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116091","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240958","1483240975","1483289936","1483240958","1","1","0","-1","48961","17","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241082","1483241099","1483289936","1483241082","1","1","0","-1","48837","17","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241091","1483241099","1483289936","1483241091","1","1","0","-1","48837","8","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116098","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241097","1483241099","1483289937","1483241097","1","1","0","-1","48838","2","48838","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115303","Robertson","UTC","","Lapwing","Screwdriver","curry","1483221161","1483221173","1483257175","1483221161","1","1","0","-1","36002","12","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115438","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225756","1483225776","1483261776","1483225756","1","1","0","-1","36000","20","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115457","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226357","1483226380","1483262380","1483226357","1","1","0","-1","36000","23","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119921","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264580","1483264584","1483307795","1483264580","1","1","0","-1","43211","4","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119923","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264696","1483264704","1483307916","1483264696","1","1","0","-1","43212","8","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1020025","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483270272","1483270273","1483310835","1483270272","1","8","0","-1","40562","1","324496","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019139","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483221197","1483221204","1483283907","1483221197","1","8","0","-1","62703","7","501624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020005","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483261479","1483261480","1483303453","1483261479","1","8","0","-1","41973","1","335784","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309863","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241329","1483291507","1483241326","1","16","0","-1","50178","3","802848","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6113101","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167526","1483167673","1483230521","1483167526","1","1","0","-1","62848","147","62848","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113155","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167624","1483168044","1483231590","1483167624","1","1","0","-1","63546","420","63546","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113185","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167713","1483168293","1483231990","1483167713","1","1","0","-1","63697","580","63697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113270","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483229989","1483168064","1","1","0","-1","61203","722","61203","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201161","1483201397","1483257208","1483201161","1","1","0","-1","55811","236","55811","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483266122","1483201165","1","1","0","-1","64725","232","64725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483240301","1483201165","1","1","0","-1","38904","232","38904","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206222","1483206254","1483264688","1483206222","1","1","0","-1","58434","32","58434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114933","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483265591","1483207487","1","1","0","-1","58001","103","58001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207513","1483207711","1483249010","1483207513","1","1","0","-1","41299","198","41299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483266614","1483208454","1","1","0","-1","57933","227","57933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483248131","1483208454","1","1","0","-1","39450","227","39450","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213485","1483213534","1483267435","1483213485","1","1","0","-1","53901","49","53901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213541","1483213655","1483274175","1483213541","1","1","0","-1","60520","114","60520","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483270089","1483213550","1","1","0","-1","56434","105","56434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483276819","1483213550","1","1","0","-1","63164","105","63164","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115592","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231313","1483231346","1483289926","1483231313","1","1","0","-1","58580","33","58580","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115607","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231326","1483231467","1483289924","1483231326","1","1","0","-1","58457","141","58457","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115617","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231337","1483231467","1483289927","1483231337","1","1","0","-1","58460","130","58460","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115621","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231342","1483231467","1483289926","1483231342","1","1","0","-1","58459","125","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115623","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231344","1483231467","1483289926","1483231344","1","1","0","-1","58459","123","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115651","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231596","1483231710","1483289927","1483231596","1","1","0","-1","58217","114","58217","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231597","1483231710","1483289930","1483231597","1","1","0","-1","58220","113","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231598","1483231710","1483289930","1483231598","1","1","0","-1","58220","112","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115655","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231599","1483231710","1483296505","1483231599","1","1","0","-1","64795","111","64795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231611","1483231831","1483289931","1483231611","1","1","0","-1","58100","220","58100","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231614","1483231831","1483289930","1483231614","1","1","0","-1","58099","217","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115673","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231616","1483231831","1483289930","1483231616","1","1","0","-1","58099","215","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115685","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231629","1483231953","1483289930","1483231629","1","1","0","-1","57977","324","57977","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115686","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231630","1483231953","1483294153","1483231630","1","1","0","-1","62200","323","62200","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115687","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231631","1483231953","1483289931","1483231631","1","1","0","-1","57978","322","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115689","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231632","1483231953","1483289931","1483231632","1","1","0","-1","57978","321","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231655","1483231953","1483289931","1483231655","1","1","0","-1","57978","298","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231665","1483231953","1483289934","1483231665","1","1","0","-1","57981","288","57981","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115721","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231682","1483232075","1483289934","1483231682","1","1","0","-1","57859","393","57859","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115724","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231686","1483232075","1483281980","1483231686","1","1","0","-1","49905","389","49905","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115782","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233674","1483233777","1483289923","1483233674","1","1","0","-1","56146","103","56146","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116066","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240665","1483240701","1483289916","1483240665","1","1","0","-1","49215","36","49215","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240903","1483240975","1483289936","1483240903","1","1","0","-1","48961","72","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240920","1483240975","1483289936","1483240920","1","1","0","-1","48961","55","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243515","1483243602","1483289913","1483243515","1","1","0","-1","46311","87","46311","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243520","1483243729","1483287616","1483243520","1","1","0","-1","43887","209","43887","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250283","1483250340","1483289915","1483250283","1","1","0","-1","39575","57","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250288","1483250340","1483289913","1483250288","1","1","0","-1","39573","52","39573","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117511","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250300","1483250340","1483289915","1483250300","1","1","0","-1","39575","40","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117527","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250326","1483250465","1483314554","1483250326","1","1","0","-1","64089","139","64089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117550","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250363","1483250465","1483301209","1483250363","1","1","0","-1","50744","102","50744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117554","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250370","1483250465","1483306007","1483250370","1","1","0","-1","55542","95","55542","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117563","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250392","1483250591","1483297322","1483250392","1","1","0","-1","46731","199","46731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117578","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250429","1483250716","1483309722","1483250429","1","1","0","-1","59006","287","59006","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115287","Robertson","UTC","","Lapwing","Screwdriver","curry","1483220029","1483220083","1483256111","1483220029","1","1","0","-1","36028","54","36028","0","1:0","TIMEOUT","1","12000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115435","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225598","1483225654","1483261656","1483225598","1","1","0","-1","36002","56","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115436","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225613","1483225654","1483261656","1483225613","1","1","0","-1","36002","41","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115441","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225835","1483225897","1483261927","1483225835","1","1","0","-1","36030","62","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115444","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225916","1483226018","1483262048","1483225916","1","1","0","-1","36030","102","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115447","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226028","1483226138","1483262169","1483226028","1","1","0","-1","36031","110","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115449","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226097","1483226138","1483262169","1483226097","1","1","0","-1","36031","41","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115453","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226179","1483226259","1483262259","1483226179","1","1","0","-1","36000","80","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115455","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226290","1483226380","1483262380","1483226290","1","1","0","-1","36000","90","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119918","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264431","1483264463","1483307674","1483264431","1","1","0","-1","43211","32","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119919","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264477","1483264584","1483307795","1483264477","1","1","0","-1","43211","107","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119920","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264523","1483264584","1483307795","1483264523","1","1","0","-1","43211","61","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119922","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264619","1483264704","1483307916","1483264619","1","1","0","-1","43212","85","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119924","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264745","1483264825","1483308035","1483264745","1","1","0","-1","43210","80","43210","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1019938","Posidriv","UTC","","Bunting, Reed","Screwdriver","apple","1483242540","1483242591","1483293892","1483242540","1","8","0","-1","51301","51","410408","0","0:0","COMPLETED","8","2147486448Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018813","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215252","1483215315","1483260424","1483215252","1","8","0","-1","45109","63","360872","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115525[38]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231587","1483278496","1483230137","1","12","0","-1","46909","1453","562908","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115298","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483220537","1483220568","1483256650","1483220537","6","72","0","-1","36082","31","2597904","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6113512","Robertson","UTC","","Crane","Screwdriver","curry","1483182608","1483183091","1483230785","1483182608","8","96","0","-1","47694","483","4578624","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6113518","Robertson","UTC","","Crane","Screwdriver","curry","1483183083","1483183459","1483231301","1483183083","8","96","0","-1","47842","376","4592832","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6114923","Robertson","UTC","","Crane","Screwdriver","curry","1483206575","1483206616","1483254675","1483206575","8","96","0","-1","48059","41","4613664","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6115525[56]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483234019","1483281109","1483230137","1","12","0","-1","47090","3885","565080","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[25]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483237064","1483283961","1483230268","1","12","0","-1","46897","6799","562764","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116630[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245072","1483256381","1483303137","1483245073","1","12","0","-1","46756","11309","561072","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259973","1483306773","1483245145","1","12","0","-1","46800","14828","561600","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[67]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483262171","1483299336","1483245145","1","12","0","-1","37165","17026","445980","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6118546","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483256650","1483264221","1483300304","1483256650","6","72","0","-1","36083","7571","2597976","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6115641","Robertson","UTC","","Crane","Screwdriver","curry","1483231577","1483236943","1483284718","1483231577","8","96","0","-1","47775","5366","4586400","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6118367","Robertson","UTC","","Crane","Screwdriver","curry","1483255541","1483263737","1483311418","1483255541","8","96","0","-1","47681","8196","4577376","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6115544[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230419","1483252300","1483293906","1483230420","1","12","0","-1","41606","21881","499272","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6112876","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483147452","1483170019","1483231575","1483147452","2","24","0","-1","61556","22567","1477344","0","0:0","COMPLETED","24","60000Mn","79200","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["6116000","Robertson","UTC","","Crane","Screwdriver","curry","1483238795","1483263616","1483311612","1483238795","8","96","0","-1","47996","24821","4607616","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["1005924","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","banana-cream","1483079071","1483178773","1483234032","1483079071","1","4","0","-1","55259","99702","221036","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["995612","Posidriv","UTC","","Honey-buzzard","Screwdriver","blackberry","1482871620","1482871620","1483264213","1482871620","1","1","0","-1","392593","0","392593","0","0:0","COMPLETED","1","2147487648Mn","10800000","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999221","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984433","1482984433","1483260983","1482984433","1","4","0","-1","276550","0","1106200","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999242","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984771","1482984771","1483298329","1482984771","1","4","0","-1","313558","0","1254232","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999289","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985634","1482985634","1483313872","1482985634","1","4","0","-1","328238","0","1312952","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["165381","Phillips","UTC","","Chaffinch","Screwdriver","coconut-cream","1482869521","1482869521","1483301547","1482869521","8","64","0","-1","432026","0","27649664","0","1:0","TIMEOUT","64","8000Mn","432000","crumpet","Biological Sciences","Molecular Biosciences","Biophysics"],["6109335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106949","1483106978","1483229086","1483106949","1","1","0","-1","122108","29","122108","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106950","1483106978","1483241323","1483106950","1","1","0","-1","134345","28","134345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109479","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107966","1483107993","1483237408","1483107966","1","1","0","-1","129415","27","129415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107969","1483107993","1483232459","1483107969","1","1","0","-1","124466","24","124466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107970","1483107993","1483233124","1483107970","1","1","0","-1","125131","23","125131","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109648","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110807","1483110827","1483238284","1483110807","1","1","0","-1","127457","20","127457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112989","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166796","1483166816","1483275917","1483166796","1","1","0","-1","109101","20","109101","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112990","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166797","1483166816","1483250594","1483166797","1","1","0","-1","83778","19","83778","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166802","1483166816","1483251770","1483166802","1","1","0","-1","84954","14","84954","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166806","1483166816","1483260779","1483166806","1","1","0","-1","93963","10","93963","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483263895","1483166811","1","1","0","-1","97079","5","97079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112994","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483300191","1483166811","1","1","0","-1","133375","5","133375","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112995","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166812","1483166816","1483253854","1483166812","1","1","0","-1","87038","4","87038","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166815","1483166816","1483240975","1483166815","1","1","0","-1","74159","1","74159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113062","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167402","1483167429","1483271686","1483167402","1","1","0","-1","104257","27","104257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113063","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167406","1483167429","1483303312","1483167406","1","1","0","-1","135883","23","135883","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113387","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171828","1483171856","1483245992","1483171828","1","1","0","-1","74136","28","74136","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483305040","1483171835","1","1","0","-1","133184","21","133184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483275724","1483171835","1","1","0","-1","103868","21","103868","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171837","1483171856","1483236804","1483171837","1","1","0","-1","64948","19","64948","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171839","1483171856","1483261370","1483171839","1","1","0","-1","89514","17","89514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171845","1483171856","1483277008","1483171845","1","1","0","-1","105152","11","105152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113393","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171849","1483171856","1483269720","1483171849","1","1","0","-1","97864","7","97864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200026","1483200053","1483268680","1483200026","1","1","0","-1","68627","27","68627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113841","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200029","1483200053","1483296754","1483200029","1","1","0","-1","96701","24","96701","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200032","1483200053","1483290999","1483200032","1","1","0","-1","90946","21","90946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113844","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200034","1483200053","1483289923","1483200034","1","1","0","-1","89870","19","89870","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200040","1483200053","1483310191","1483200040","1","1","0","-1","110138","13","110138","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200044","1483200053","1483301176","1483200044","1","1","0","-1","101123","9","101123","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113848","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200047","1483200053","1483308043","1483200047","1","1","0","-1","107990","6","107990","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201123","1483201151","1483286885","1483201123","1","1","0","-1","85734","28","85734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114034","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201127","1483201151","1483287672","1483201127","1","1","0","-1","86521","24","86521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114035","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201130","1483201151","1483291125","1483201130","1","1","0","-1","89974","21","89974","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114452","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204166","1483204193","1483301479","1483204166","1","1","0","-1","97286","27","97286","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114453","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204168","1483204193","1483282778","1483204168","1","1","0","-1","78585","25","78585","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114454","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204171","1483204193","1483277750","1483204171","1","1","0","-1","73557","22","73557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114455","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204174","1483204193","1483289915","1483204174","1","1","0","-1","85722","19","85722","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114457","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204179","1483204193","1483310949","1483204179","1","1","0","-1","106756","14","106756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204181","1483204193","1483306489","1483204181","1","1","0","-1","102296","12","102296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114459","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204182","1483204193","1483289922","1483204182","1","1","0","-1","85729","11","85729","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114460","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204183","1483204193","1483300363","1483204183","1","1","0","-1","96170","10","96170","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206228","1483206254","1483300042","1483206228","1","1","0","-1","93788","26","93788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114852","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206242","1483206254","1483296160","1483206242","1","1","0","-1","89906","12","89906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114853","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206247","1483206254","1483303604","1483206247","1","1","0","-1","97350","7","97350","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114925","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207464","1483207469","1483315068","1483207464","1","1","0","-1","107599","5","107599","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213507","1483213534","1483308024","1483213507","1","1","0","-1","94490","27","94490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213511","1483213534","1483295328","1483213511","1","1","0","-1","81794","23","81794","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115116","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213517","1483213534","1483297718","1483213517","1","1","0","-1","84184","17","84184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115120","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213529","1483213534","1483310606","1483213529","1","1","0","-1","97072","5","97072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213533","1483213534","1483279893","1483213533","1","1","0","-1","66359","1","66359","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115598","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231319","1483231346","1483312600","1483231319","1","1","0","-1","81254","27","81254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108027[4]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483302591","1483046357","1","1","0","-1","256219","15","256219","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[5]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[6]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[7]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[8]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[9]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[11]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[15]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[16]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483303689","1483046357","1","1","0","-1","257317","15","257317","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483278569","1483046357","1","1","0","-1","232197","15","232197","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1003355","Posidriv","UTC","","Thrush, Grey-cheeked","Screwdriver","boysenberry","1483042952","1483042968","1483292265","1483042952","1","2","0","-1","249297","16","498594","0","0:0","COMPLETED","2","10000Mn","864600","barm","Engineering","Electrical and Communication Systems","Solid-State and Microstructures"],["999183","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983884","1482983885","1483300262","1482983884","1","4","0","-1","316377","1","1265508","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999188","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983954","1482983955","1483310084","1482983954","1","4","0","-1","326129","1","1304516","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999254","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985000","1482985003","1483255914","1482985000","1","4","0","-1","270911","3","1083644","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005888","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078681","1483078683","1483278101","1483078681","1","4","0","-1","199418","2","797672","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005890","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078715","1483078716","1483241139","1483078715","1","4","0","-1","162423","1","649692","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005900","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078793","1483078794","1483288500","1483078793","1","4","0","-1","209706","1","838824","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005907","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078870","1483078874","1483244477","1483078870","1","4","0","-1","165603","4","662412","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1012029","Posidriv","UTC","","Fieldfare","Screwdriver","butter","1483157560","1483157563","1483243989","1483157560","1","8","0","-1","86426","3","691408","0","1:0","TIMEOUT","8","2147490048Mn","86400","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["995583","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483143988","1483143991","1483272379","1483143988","1","8","0","-1","128388","3","1027104","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995627","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483283156","1483144111","1","8","0","-1","139039","6","1112312","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995628","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483274205","1483144111","1","8","0","-1","130088","6","1040704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995629","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144119","1483275459","1483144112","1","8","0","-1","131340","7","1050720","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995630","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144120","1483275145","1483144112","1","8","0","-1","131025","8","1048200","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995631","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483287078","1483144112","1","8","0","-1","142956","10","1143648","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995632","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483285810","1483144112","1","8","0","-1","141688","10","1133504","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995633","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144124","1483274960","1483144112","1","8","0","-1","130836","12","1046688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995634","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144125","1483275348","1483144112","1","8","0","-1","131223","13","1049784","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995635","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144127","1483272663","1483144112","1","8","0","-1","128536","15","1028288","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995636","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144128","1483276578","1483144112","1","8","0","-1","132450","16","1059600","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995637","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144130","1483285036","1483144113","1","8","0","-1","140906","17","1127248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995638","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144131","1483274399","1483144113","1","8","0","-1","130268","18","1042144","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995639","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483290495","1483144113","1","8","0","-1","146362","20","1170896","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995640","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483278084","1483144113","1","8","0","-1","133951","20","1071608","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995641","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483270417","1483144113","1","8","0","-1","126281","23","1010248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995642","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483275165","1483144113","1","8","0","-1","131029","23","1048232","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995643","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144138","1483275003","1483144113","1","8","0","-1","130865","25","1046920","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995644","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144139","1483284417","1483144113","1","8","0","-1","140278","26","1122224","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995645","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144141","1483273977","1483144113","1","8","0","-1","129836","28","1038688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995646","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144142","1483281314","1483144114","1","8","0","-1","137172","28","1097376","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["163485","Phillips","UTC","","Oriole, Baltimore","Screwdriver","chestnut","1482390912","1482390913","1483303339","1482390912","1","12","2","-1","912426","1","10949112","1824852","0:0","CANCELLED by 380693","12","31000Mn","3247200","focaccia","Biological Sciences","Molecular Biosciences","Biophysics"],["964693","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483244230","1482955559","1","16","0","-1","288669","2","4618704","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964694","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483245344","1482955559","1","16","0","-1","289783","2","4636528","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["2286681","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483159130","1483159136","1483238310","1483159130","1","16","0","-1","79174","6","1266784","0","0:0","COMPLETED","8","2147486648Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2288753","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483169234","1483169236","1483282760","1483169234","1","16","0","-1","113524","2","1816384","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2289004","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483170485","1483170487","1483261366","1483170485","1","16","0","-1","90879","2","1454064","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009531","Posidriv","UTC","","Shag","Screwdriver","apple","1483125690","1483125694","1483246634","1483125690","1","24","0","-1","120940","4","2902560","0","0:0","COMPLETED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6106081","Robertson","UTC","","Moorhen","Screwdriver","curry","1482980903","1482980942","1483240261","1482980903","1","1","0","-1","259319","39","259319","0","1:0","TIMEOUT","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108682","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071799","1483072045","1483253984","1483071799","1","1","0","-1","181939","246","181939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071825","1483072181","1483229663","1483071825","1","1","0","-1","157482","356","157482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071827","1483072181","1483230693","1483071827","1","1","0","-1","158512","354","158512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483230934","1483106095","1","1","0","-1","124720","119","124720","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483248678","1483106095","1","1","0","-1","142464","119","142464","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106214","1483241753","1483106096","1","1","0","-1","135539","118","135539","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483263234","1483106096","1","1","0","-1","156892","246","156892","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483246507","1483106096","1","1","0","-1","140165","246","140165","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483235218","1483106096","1","1","0","-1","128876","246","128876","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483252066","1483106096","1","1","0","-1","145724","246","145724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483234006","1483106097","1","1","0","-1","127664","245","127664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483232072","1483106097","1","1","0","-1","125730","245","125730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483242337","1483106097","1","1","0","-1","135995","245","135995","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234289","1483106097","1","1","0","-1","127820","372","127820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483235964","1483106097","1","1","0","-1","129495","372","129495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483274649","1483106097","1","1","0","-1","168180","372","168180","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483238533","1483106097","1","1","0","-1","132064","372","132064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234473","1483106097","1","1","0","-1","128004","372","128004","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483252479","1483106097","1","1","0","-1","146010","372","146010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109275","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483246648","1483106098","1","1","0","-1","140179","371","140179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483241385","1483106098","1","1","0","-1","134916","371","134916","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483253169","1483106098","1","1","0","-1","146700","371","146700","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289888","1483106098","1","1","0","-1","183291","499","183291","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109282","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483229396","1483106098","1","1","0","-1","122799","499","122799","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289887","1483106098","1","1","0","-1","183290","499","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106141","1483106597","1483289889","1483106141","1","1","0","-1","183292","456","183292","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106145","1483106597","1483289887","1483106145","1","1","0","-1","183290","452","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106147","1483106597","1483289891","1483106147","1","1","0","-1","183294","450","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106153","1483106597","1483246847","1483106153","1","1","0","-1","140250","444","140250","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106156","1483106597","1483289893","1483106156","1","1","0","-1","183296","441","183296","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106158","1483106597","1483289891","1483106158","1","1","0","-1","183294","439","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106162","1483106597","1483289892","1483106162","1","1","0","-1","183295","435","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106165","1483106597","1483289892","1483106165","1","1","0","-1","183295","432","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106178","1483106724","1483233322","1483106178","1","1","0","-1","126598","546","126598","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106181","1483106724","1483247835","1483106181","1","1","0","-1","141111","543","141111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106192","1483106724","1483243302","1483106192","1","1","0","-1","136578","532","136578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106919","1483106978","1483262786","1483106919","1","1","0","-1","155808","59","155808","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106934","1483106978","1483236315","1483106934","1","1","0","-1","129337","44","129337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106936","1483106978","1483241600","1483106936","1","1","0","-1","134622","42","134622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109332","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106944","1483106978","1483231757","1483106944","1","1","0","-1","124779","34","124779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106954","1483107104","1483264536","1483106954","1","1","0","-1","157432","150","157432","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106985","1483107104","1483241640","1483106985","1","1","0","-1","134536","119","134536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109348","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106986","1483107104","1483229938","1483106986","1","1","0","-1","122834","118","122834","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109351","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483258633","1483106989","1","1","0","-1","151529","115","151529","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483243386","1483106989","1","1","0","-1","136282","115","136282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109356","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483251312","1483106990","1","1","0","-1","144208","114","144208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483241610","1483106990","1","1","0","-1","134506","114","134506","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109359","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289895","1483106990","1","1","0","-1","182665","240","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109360","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109361","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109362","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289893","1483106990","1","1","0","-1","182663","240","182663","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109365","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107051","1483107230","1483289895","1483107051","1","1","0","-1","182665","179","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107057","1483107230","1483229404","1483107057","1","1","0","-1","122174","173","122174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107059","1483107230","1483237756","1483107059","1","1","0","-1","130526","171","130526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109370","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107060","1483107230","1483241929","1483107060","1","1","0","-1","134699","170","134699","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109371","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107063","1483107230","1483289896","1483107063","1","1","0","-1","182666","167","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109372","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107065","1483107230","1483238813","1483107065","1","1","0","-1","131583","165","131583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107067","1483107230","1483289896","1483107067","1","1","0","-1","182666","163","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109374","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107073","1483107230","1483289898","1483107073","1","1","0","-1","182668","157","182668","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109376","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107078","1483107230","1483289894","1483107078","1","1","0","-1","182664","152","182664","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109378","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107082","1483107357","1483289905","1483107082","1","1","0","-1","182548","275","182548","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109381","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107088","1483107357","1483289913","1483107088","1","1","0","-1","182556","269","182556","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107097","1483107357","1483245580","1483107097","1","1","0","-1","138223","260","138223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107108","1483107357","1483289902","1483107108","1","1","0","-1","182545","249","182545","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107112","1483107357","1483289903","1483107112","1","1","0","-1","182546","245","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107113","1483107357","1483289903","1483107113","1","1","0","-1","182546","244","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107114","1483107357","1483289901","1483107114","1","1","0","-1","182544","243","182544","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107357","1483289904","1483107116","1","1","0","-1","182547","241","182547","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289901","1483107116","1","1","0","-1","182417","368","182417","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289902","1483107116","1","1","0","-1","182418","368","182418","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289910","1483107117","1","1","0","-1","182426","367","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289904","1483107117","1","1","0","-1","182420","367","182420","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109405","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483249260","1483107117","1","1","0","-1","141776","367","141776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107209","1483107484","1483289909","1483107209","1","1","0","-1","182425","275","182425","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107212","1483107484","1483289912","1483107212","1","1","0","-1","182428","272","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107217","1483107484","1483289908","1483107217","1","1","0","-1","182424","267","182424","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107219","1483107484","1483245969","1483107219","1","1","0","-1","138485","265","138485","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107220","1483107484","1483289911","1483107220","1","1","0","-1","182427","264","182427","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107223","1483107484","1483289912","1483107223","1","1","0","-1","182428","261","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107224","1483107484","1483289910","1483107224","1","1","0","-1","182426","260","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107234","1483107611","1483289911","1483107234","1","1","0","-1","182300","377","182300","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483289914","1483107242","1","1","0","-1","182303","369","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483232979","1483107242","1","1","0","-1","125368","369","125368","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107243","1483107611","1483289915","1483107243","1","1","0","-1","182304","368","182304","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107244","1483107611","1483289914","1483107244","1","1","0","-1","182303","367","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483289919","1483107246","1","1","0","-1","182308","365","182308","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109436","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483230736","1483107246","1","1","0","-1","123125","365","123125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107279","1483107867","1483230650","1483107279","1","1","0","-1","122783","588","122783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109463","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107280","1483107867","1483231234","1483107280","1","1","0","-1","123367","587","123367","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109464","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107282","1483107867","1483245514","1483107282","1","1","0","-1","137647","585","137647","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109471","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107953","1483107993","1483244309","1483107953","1","1","0","-1","136316","40","136316","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109472","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107955","1483107993","1483235249","1483107955","1","1","0","-1","127256","38","127256","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109475","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107962","1483107993","1483237298","1483107962","1","1","0","-1","129305","31","129305","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107980","1483108122","1483267363","1483107980","1","1","0","-1","159241","142","159241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109500","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107996","1483108122","1483233557","1483107996","1","1","0","-1","125435","126","125435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108001","1483108122","1483268237","1483108001","1","1","0","-1","160115","121","160115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108004","1483108122","1483289925","1483108004","1","1","0","-1","181803","118","181803","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109509","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289925","1483108005","1","1","0","-1","181674","246","181674","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109510","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289923","1483108005","1","1","0","-1","181672","246","181672","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109638","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110753","1483110827","1483253473","1483110753","1","1","0","-1","142646","74","142646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109639","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110766","1483110827","1483231980","1483110766","1","1","0","-1","121153","61","121153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109640","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110772","1483110827","1483233548","1483110772","1","1","0","-1","122721","55","122721","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109650","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110825","1483110966","1483243888","1483110825","1","1","0","-1","132922","141","132922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483286003","1483110837","1","1","0","-1","175037","129","175037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109653","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483242588","1483110837","1","1","0","-1","131622","129","131622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483258143","1483110838","1","1","0","-1","147177","128","147177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109658","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483238119","1483110838","1","1","0","-1","127153","128","127153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109662","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483232478","1483110838","1","1","0","-1","121512","128","121512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109665","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483229790","1483110838","1","1","0","-1","118824","128","118824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109672","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483111106","1483230425","1483110838","1","1","0","-1","119319","268","119319","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109753","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115946","1483116096","1483258108","1483115946","1","1","0","-1","142012","150","142012","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109754","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115951","1483116096","1483235370","1483115951","1","1","0","-1","119274","145","119274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109757","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115977","1483116096","1483251632","1483115977","1","1","0","-1","135536","119","135536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109758","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115980","1483116096","1483255305","1483115980","1","1","0","-1","139209","116","139209","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109759","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115985","1483116096","1483250118","1483115985","1","1","0","-1","134022","111","134022","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109761","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115993","1483116096","1483271931","1483115993","1","1","0","-1","155835","103","155835","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109762","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115994","1483116096","1483246583","1483115994","1","1","0","-1","130487","102","130487","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109767","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116007","1483116096","1483230486","1483116007","1","1","0","-1","114390","89","114390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109769","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116015","1483116096","1483245034","1483116015","1","1","0","-1","128938","81","128938","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116024","1483116096","1483236198","1483116024","1","1","0","-1","120102","72","120102","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116028","1483116096","1483231793","1483116028","1","1","0","-1","115697","68","115697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116041","1483116228","1483234292","1483116041","1","1","0","-1","118064","187","118064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109778","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116059","1483116228","1483246444","1483116059","1","1","0","-1","130216","169","130216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109781","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116068","1483116228","1483243361","1483116068","1","1","0","-1","127133","160","127133","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109783","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116072","1483116228","1483233855","1483116072","1","1","0","-1","117627","156","117627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109787","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116095","1483116228","1483231353","1483116095","1","1","0","-1","115125","133","115125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109791","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483232771","1483116103","1","1","0","-1","116412","256","116412","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109795","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483234692","1483116103","1","1","0","-1","118333","256","118333","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109798","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483228870","1483116103","1","1","0","-1","112511","256","112511","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109800","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483284703","1483116103","1","1","0","-1","168344","256","168344","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109801","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483242068","1483116103","1","1","0","-1","125709","256","125709","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109803","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483237154","1483116103","1","1","0","-1","120795","256","120795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109807","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116359","1483248120","1483116104","1","1","0","-1","131761","255","131761","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109810","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116491","1483253533","1483116104","1","1","0","-1","137042","387","137042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166761","1483166816","1483269042","1483166761","1","1","0","-1","102226","55","102226","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166766","1483166816","1483277010","1483166766","1","1","0","-1","110194","50","110194","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166770","1483166816","1483252858","1483166770","1","1","0","-1","86042","46","86042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166772","1483166816","1483282075","1483166772","1","1","0","-1","115259","44","115259","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166775","1483166816","1483254115","1483166775","1","1","0","-1","87299","41","87299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166783","1483166816","1483287587","1483166783","1","1","0","-1","120771","33","120771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166817","1483166939","1483274727","1483166817","1","1","0","-1","107788","122","107788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112998","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166820","1483166939","1483252870","1483166820","1","1","0","-1","85931","119","85931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166828","1483166939","1483280682","1483166828","1","1","0","-1","113743","111","113743","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113001","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166829","1483166939","1483244723","1483166829","1","1","0","-1","77784","110","77784","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483242282","1483166832","1","1","0","-1","75343","107","75343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113003","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483238850","1483166832","1","1","0","-1","71911","107","71911","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166833","1483166939","1483253762","1483166833","1","1","0","-1","86823","106","86823","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113005","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166837","1483166939","1483296234","1483166837","1","1","0","-1","129295","102","129295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113006","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166838","1483166939","1483299753","1483166838","1","1","0","-1","132814","101","132814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113007","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166840","1483166939","1483273960","1483166840","1","1","0","-1","107021","99","107021","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166843","1483166939","1483286860","1483166843","1","1","0","-1","119921","96","119921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166848","1483166939","1483257045","1483166848","1","1","0","-1","90106","91","90106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166850","1483166939","1483282969","1483166850","1","1","0","-1","116030","89","116030","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113011","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166853","1483166939","1483258397","1483166853","1","1","0","-1","91458","86","91458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166856","1483166939","1483261381","1483166856","1","1","0","-1","94442","83","94442","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166857","1483166939","1483251883","1483166857","1","1","0","-1","84944","82","84944","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166863","1483166939","1483282852","1483166863","1","1","0","-1","115913","76","115913","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113016","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166866","1483166939","1483282200","1483166866","1","1","0","-1","115261","73","115261","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166869","1483167061","1483283954","1483166869","1","1","0","-1","116893","192","116893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166873","1483167061","1483260846","1483166873","1","1","0","-1","93785","188","93785","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166877","1483167061","1483241935","1483166877","1","1","0","-1","74874","184","74874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113020","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166879","1483167061","1483272397","1483166879","1","1","0","-1","105336","182","105336","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166883","1483167061","1483261988","1483166883","1","1","0","-1","94927","178","94927","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166886","1483167061","1483264570","1483166886","1","1","0","-1","97509","175","97509","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166890","1483167061","1483277325","1483166890","1","1","0","-1","110264","171","110264","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483272893","1483166892","1","1","0","-1","105832","169","105832","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483254681","1483166892","1","1","0","-1","87620","169","87620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166899","1483167061","1483277041","1483166899","1","1","0","-1","109980","162","109980","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166900","1483167061","1483270355","1483166900","1","1","0","-1","103294","161","103294","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113028","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166904","1483167061","1483276308","1483166904","1","1","0","-1","109247","157","109247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166911","1483167061","1483254926","1483166911","1","1","0","-1","87865","150","87865","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166913","1483167061","1483241324","1483166913","1","1","0","-1","74263","148","74263","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483253485","1483166917","1","1","0","-1","86424","144","86424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113032","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483260120","1483166917","1","1","0","-1","93059","144","93059","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166921","1483167061","1483287820","1483166921","1","1","0","-1","120759","140","120759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167347","1483167429","1483249508","1483167347","1","1","0","-1","82079","82","82079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167348","1483167429","1483269724","1483167348","1","1","0","-1","102295","81","102295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167353","1483167429","1483262520","1483167353","1","1","0","-1","95091","76","95091","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167357","1483167429","1483252056","1483167357","1","1","0","-1","84627","72","84627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113049","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167361","1483167429","1483284840","1483167361","1","1","0","-1","117411","68","117411","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167367","1483167429","1483289687","1483167367","1","1","0","-1","122258","62","122258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113051","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167370","1483167429","1483276792","1483167370","1","1","0","-1","109363","59","109363","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167374","1483167429","1483289052","1483167374","1","1","0","-1","121623","55","121623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167376","1483167429","1483257249","1483167376","1","1","0","-1","89820","53","89820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167378","1483167429","1483279828","1483167378","1","1","0","-1","112399","51","112399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113056","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167383","1483167429","1483267303","1483167383","1","1","0","-1","99874","46","99874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113057","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167387","1483167429","1483289725","1483167387","1","1","0","-1","122296","42","122296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113058","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167390","1483167429","1483285489","1483167390","1","1","0","-1","118060","39","118060","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113059","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167391","1483167429","1483283086","1483167391","1","1","0","-1","115657","38","115657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113060","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167393","1483167429","1483288387","1483167393","1","1","0","-1","120958","36","120958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113061","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167396","1483167429","1483286008","1483167396","1","1","0","-1","118579","33","118579","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113064","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167412","1483167551","1483247709","1483167412","1","1","0","-1","80158","139","80158","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113067","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167420","1483167551","1483271720","1483167420","1","1","0","-1","104169","131","104169","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113068","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167422","1483167551","1483252894","1483167422","1","1","0","-1","85343","129","85343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113069","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167426","1483167551","1483236395","1483167426","1","1","0","-1","68844","125","68844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113070","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167427","1483167551","1483269724","1483167427","1","1","0","-1","102173","124","102173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113071","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167434","1483167551","1483276511","1483167434","1","1","0","-1","108960","117","108960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113072","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167439","1483167551","1483287282","1483167439","1","1","0","-1","119731","112","119731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113073","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167442","1483167551","1483240264","1483167442","1","1","0","-1","72713","109","72713","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167467","1483167551","1483285724","1483167467","1","1","0","-1","118173","84","118173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167469","1483167551","1483255688","1483167469","1","1","0","-1","88137","82","88137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113077","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167474","1483167551","1483265025","1483167474","1","1","0","-1","97474","77","97474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167475","1483167551","1483277565","1483167475","1","1","0","-1","110014","76","110014","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167479","1483167551","1483252844","1483167479","1","1","0","-1","85293","72","85293","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167482","1483167551","1483267395","1483167482","1","1","0","-1","99844","69","99844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167483","1483167551","1483247894","1483167483","1","1","0","-1","80343","68","80343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113082","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167488","1483167551","1483266857","1483167488","1","1","0","-1","99306","63","99306","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113083","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167491","1483167551","1483280930","1483167491","1","1","0","-1","113379","60","113379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167496","1483167673","1483275845","1483167496","1","1","0","-1","108172","177","108172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167501","1483167673","1483305397","1483167501","1","1","0","-1","137724","172","137724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167504","1483167673","1483270191","1483167504","1","1","0","-1","102518","169","102518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167508","1483167673","1483268894","1483167508","1","1","0","-1","101221","165","101221","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113092","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167512","1483167673","1483284147","1483167512","1","1","0","-1","116474","161","116474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113094","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167514","1483167673","1483254050","1483167514","1","1","0","-1","86377","159","86377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167517","1483167673","1483289060","1483167517","1","1","0","-1","121387","156","121387","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167522","1483167673","1483277050","1483167522","1","1","0","-1","109377","151","109377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167527","1483167796","1483295885","1483167527","1","1","0","-1","128089","269","128089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167534","1483167796","1483279842","1483167534","1","1","0","-1","112046","262","112046","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113110","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167539","1483167796","1483266565","1483167539","1","1","0","-1","98769","257","98769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113112","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167547","1483167796","1483304454","1483167547","1","1","0","-1","136658","249","136658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483274486","1483167548","1","1","0","-1","106690","248","106690","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483291393","1483167548","1","1","0","-1","123597","248","123597","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113117","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167558","1483167796","1483282424","1483167558","1","1","0","-1","114628","238","114628","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113118","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167559","1483167796","1483277894","1483167559","1","1","0","-1","110098","237","110098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167796","1483262321","1483167566","1","1","0","-1","94525","230","94525","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483258416","1483167566","1","1","0","-1","90497","353","90497","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483262483","1483167566","1","1","0","-1","94564","353","94564","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113127","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483289062","1483167566","1","1","0","-1","121143","353","121143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483283172","1483167566","1","1","0","-1","115253","353","115253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113131","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483277853","1483167566","1","1","0","-1","109934","353","109934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483276426","1483167566","1","1","0","-1","108507","353","108507","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113135","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483311360","1483167566","1","1","0","-1","143441","353","143441","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113137","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483266989","1483167566","1","1","0","-1","99070","353","99070","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483275956","1483167566","1","1","0","-1","108037","353","108037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483246072","1483167566","1","1","0","-1","78028","478","78028","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113142","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483284006","1483167566","1","1","0","-1","115962","478","115962","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113143","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483274130","1483167566","1","1","0","-1","106086","478","106086","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113144","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483276701","1483167566","1","1","0","-1","108657","478","108657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113146","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167591","1483168044","1483261530","1483167591","1","1","0","-1","93486","453","93486","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113147","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167594","1483168044","1483303854","1483167594","1","1","0","-1","135810","450","135810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113148","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167597","1483168044","1483256318","1483167597","1","1","0","-1","88274","447","88274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113149","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167599","1483168044","1483290785","1483167599","1","1","0","-1","122741","445","122741","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113151","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167605","1483168044","1483269603","1483167605","1","1","0","-1","101559","439","101559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113152","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167611","1483168044","1483291276","1483167611","1","1","0","-1","123232","433","123232","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113153","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167614","1483168044","1483264572","1483167614","1","1","0","-1","96528","430","96528","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113154","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167619","1483168044","1483292496","1483167619","1","1","0","-1","124452","425","124452","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113156","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167628","1483168044","1483277962","1483167628","1","1","0","-1","109918","416","109918","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113157","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167633","1483168044","1483252324","1483167633","1","1","0","-1","84280","411","84280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113158","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167638","1483168044","1483298762","1483167638","1","1","0","-1","130718","406","130718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113160","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167643","1483168044","1483260002","1483167643","1","1","0","-1","91958","401","91958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113161","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167647","1483168167","1483259657","1483167647","1","1","0","-1","91490","520","91490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113162","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167651","1483168167","1483284026","1483167651","1","1","0","-1","115859","516","115859","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113163","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483277512","1483167655","1","1","0","-1","109345","512","109345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113164","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483242064","1483167655","1","1","0","-1","73897","512","73897","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113165","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167659","1483168167","1483280729","1483167659","1","1","0","-1","112562","508","112562","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113166","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167661","1483168167","1483268600","1483167661","1","1","0","-1","100433","506","100433","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113167","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167668","1483168167","1483272750","1483167668","1","1","0","-1","104583","499","104583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113170","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167669","1483168167","1483271667","1483167669","1","1","0","-1","103500","498","103500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113172","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167672","1483168167","1483291830","1483167672","1","1","0","-1","123663","495","123663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113173","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167678","1483168167","1483310057","1483167678","1","1","0","-1","141890","489","141890","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113174","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167681","1483168167","1483234338","1483167681","1","1","0","-1","66171","486","66171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113175","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167684","1483168167","1483259402","1483167684","1","1","0","-1","91235","483","91235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113176","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167686","1483168167","1483270020","1483167686","1","1","0","-1","101853","481","101853","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113177","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167690","1483168167","1483284736","1483167690","1","1","0","-1","116569","477","116569","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113178","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167693","1483168167","1483267110","1483167693","1","1","0","-1","98943","474","98943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113179","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167694","1483168167","1483264504","1483167694","1","1","0","-1","96337","473","96337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113180","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167697","1483168167","1483306467","1483167697","1","1","0","-1","138300","470","138300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113181","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167701","1483168167","1483274669","1483167701","1","1","0","-1","106502","466","106502","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113182","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167704","1483168167","1483259110","1483167704","1","1","0","-1","90943","463","90943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113183","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167707","1483168293","1483284336","1483167707","1","1","0","-1","116043","586","116043","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113184","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167711","1483168293","1483279445","1483167711","1","1","0","-1","111152","582","111152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113186","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167717","1483168293","1483259448","1483167717","1","1","0","-1","91155","576","91155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113187","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167719","1483168293","1483241550","1483167719","1","1","0","-1","73257","574","73257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113188","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167721","1483168293","1483291051","1483167721","1","1","0","-1","122758","572","122758","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113189","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167724","1483168293","1483271123","1483167724","1","1","0","-1","102830","569","102830","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113190","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167734","1483168293","1483254905","1483167734","1","1","0","-1","86612","559","86612","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113191","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167745","1483168293","1483246951","1483167745","1","1","0","-1","78658","548","78658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113192","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167748","1483168293","1483302566","1483167748","1","1","0","-1","134273","545","134273","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167752","1483168293","1483297364","1483167752","1","1","0","-1","129071","541","129071","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113194","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167755","1483168293","1483310708","1483167755","1","1","0","-1","142415","538","142415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113195","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167759","1483168293","1483290930","1483167759","1","1","0","-1","122637","534","122637","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113197","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167766","1483168293","1483267912","1483167766","1","1","0","-1","99619","527","99619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113198","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167770","1483168293","1483274580","1483167770","1","1","0","-1","106287","523","106287","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113200","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167802","1483168293","1483303506","1483167802","1","1","0","-1","135213","491","135213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113201","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167805","1483168293","1483276261","1483167805","1","1","0","-1","107968","488","107968","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113202","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167809","1483168293","1483261686","1483167809","1","1","0","-1","93393","484","93393","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113203","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167812","1483168417","1483279694","1483167812","1","1","0","-1","111277","605","111277","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113204","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167818","1483168417","1483308104","1483167818","1","1","0","-1","139687","599","139687","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113205","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167820","1483168541","1483245671","1483167820","1","1","0","-1","77130","721","77130","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113206","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167822","1483168418","1483286459","1483167822","1","1","0","-1","118041","596","118041","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113207","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167827","1483168418","1483262590","1483167827","1","1","0","-1","94172","591","94172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113208","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167834","1483168418","1483280349","1483167834","1","1","0","-1","111931","584","111931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113209","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167836","1483168418","1483247171","1483167836","1","1","0","-1","78753","582","78753","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113210","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167839","1483168418","1483259214","1483167839","1","1","0","-1","90796","579","90796","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113211","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167841","1483168418","1483264389","1483167841","1","1","0","-1","95971","577","95971","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113212","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167842","1483168418","1483282201","1483167842","1","1","0","-1","113783","576","113783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113213","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167847","1483168418","1483277299","1483167847","1","1","0","-1","108881","571","108881","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113214","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167848","1483168418","1483307529","1483167848","1","1","0","-1","139111","570","139111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113215","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167852","1483168418","1483246671","1483167852","1","1","0","-1","78253","566","78253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113217","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167855","1483168418","1483291353","1483167855","1","1","0","-1","122935","563","122935","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113218","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167858","1483168418","1483277842","1483167858","1","1","0","-1","109424","560","109424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113219","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167861","1483168418","1483302922","1483167861","1","1","0","-1","134504","557","134504","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113220","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167866","1483168418","1483298033","1483167866","1","1","0","-1","129615","552","129615","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113222","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167877","1483168541","1483288257","1483167877","1","1","0","-1","119716","664","119716","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113223","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167882","1483168541","1483248685","1483167882","1","1","0","-1","80144","659","80144","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113224","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167886","1483168541","1483253377","1483167886","1","1","0","-1","84836","655","84836","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113225","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167892","1483168541","1483262702","1483167892","1","1","0","-1","94161","649","94161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167895","1483168541","1483293107","1483167895","1","1","0","-1","124566","646","124566","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113227","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167898","1483168541","1483263588","1483167898","1","1","0","-1","95047","643","95047","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113228","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167899","1483168541","1483282781","1483167899","1","1","0","-1","114240","642","114240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167901","1483168541","1483296085","1483167901","1","1","0","-1","127544","640","127544","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113230","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167908","1483168541","1483292794","1483167908","1","1","0","-1","124253","633","124253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113231","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167913","1483168541","1483257142","1483167913","1","1","0","-1","88601","628","88601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113232","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483283936","1483167915","1","1","0","-1","115395","626","115395","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113233","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483296310","1483167915","1","1","0","-1","127769","626","127769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113234","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167924","1483168541","1483306322","1483167924","1","1","0","-1","137781","617","137781","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113235","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167927","1483168541","1483306202","1483167927","1","1","0","-1","137661","614","137661","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113236","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167934","1483168541","1483274191","1483167934","1","1","0","-1","105650","607","105650","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113237","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167935","1483168541","1483253896","1483167935","1","1","0","-1","85355","606","85355","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113238","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167937","1483168541","1483296769","1483167937","1","1","0","-1","128228","604","128228","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167939","1483168541","1483263187","1483167939","1","1","0","-1","94646","602","94646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113240","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167974","1483168664","1483258435","1483167974","1","1","0","-1","89771","690","89771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167978","1483168664","1483274634","1483167978","1","1","0","-1","105970","686","105970","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113243","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167983","1483168664","1483263103","1483167983","1","1","0","-1","94439","681","94439","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113244","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167987","1483168664","1483278666","1483167987","1","1","0","-1","110002","677","110002","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113245","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167992","1483168664","1483287749","1483167992","1","1","0","-1","119085","672","119085","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167996","1483168664","1483284293","1483167996","1","1","0","-1","115629","668","115629","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167997","1483168664","1483270394","1483167997","1","1","0","-1","101730","667","101730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113248","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167998","1483168664","1483246154","1483167998","1","1","0","-1","77490","666","77490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113249","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168002","1483168664","1483298024","1483168002","1","1","0","-1","129360","662","129360","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113251","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168006","1483168664","1483296526","1483168006","1","1","0","-1","127862","658","127862","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113252","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168013","1483168664","1483255319","1483168013","1","1","0","-1","86655","651","86655","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113253","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168016","1483168664","1483284135","1483168016","1","1","0","-1","115471","648","115471","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113254","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168022","1483168664","1483301536","1483168022","1","1","0","-1","132872","642","132872","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168023","1483168664","1483276312","1483168023","1","1","0","-1","107648","641","107648","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168027","1483168664","1483242092","1483168027","1","1","0","-1","73428","637","73428","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168029","1483168664","1483269238","1483168029","1","1","0","-1","100574","635","100574","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168033","1483168664","1483272557","1483168033","1","1","0","-1","103893","631","103893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113259","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168037","1483168664","1483275539","1483168037","1","1","0","-1","106875","627","106875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113260","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168040","1483168786","1483275336","1483168040","1","1","0","-1","106550","746","106550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168045","1483168786","1483257934","1483168045","1","1","0","-1","89148","741","89148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168049","1483168786","1483262353","1483168049","1","1","0","-1","93567","737","93567","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113263","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168055","1483168786","1483246889","1483168055","1","1","0","-1","78103","731","78103","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168057","1483168786","1483270212","1483168057","1","1","0","-1","101426","729","101426","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483306737","1483168063","1","1","0","-1","137951","723","137951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113267","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483312064","1483168063","1","1","0","-1","143278","723","143278","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483260109","1483168063","1","1","0","-1","91323","723","91323","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483282835","1483168064","1","1","0","-1","114049","722","114049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113271","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483283551","1483168064","1","1","0","-1","114765","722","114765","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113272","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276006","1483168064","1","1","0","-1","107220","722","107220","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113273","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483274256","1483168064","1","1","0","-1","105470","722","105470","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113274","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276058","1483168064","1","1","0","-1","107272","722","107272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113276","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483284221","1483168064","1","1","0","-1","115435","722","115435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483291245","1483168064","1","1","0","-1","122459","722","122459","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113278","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168069","1483168786","1483282987","1483168069","1","1","0","-1","114201","717","114201","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168073","1483168909","1483280854","1483168073","1","1","0","-1","111945","836","111945","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168074","1483168909","1483241767","1483168074","1","1","0","-1","72858","835","72858","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113281","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168077","1483168909","1483261052","1483168077","1","1","0","-1","92143","832","92143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168078","1483168909","1483244528","1483168078","1","1","0","-1","75619","831","75619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113284","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168083","1483168909","1483283958","1483168083","1","1","0","-1","115049","826","115049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168084","1483168909","1483244547","1483168084","1","1","0","-1","75638","825","75638","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113286","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168118","1483168909","1483276125","1483168118","1","1","0","-1","107216","791","107216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168124","1483168909","1483266024","1483168124","1","1","0","-1","97115","785","97115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168126","1483168909","1483276477","1483168126","1","1","0","-1","107568","783","107568","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113289","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168128","1483168909","1483287643","1483168128","1","1","0","-1","118734","781","118734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168132","1483168909","1483294262","1483168132","1","1","0","-1","125353","777","125353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113291","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168138","1483168909","1483273730","1483168138","1","1","0","-1","104821","771","104821","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113292","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168142","1483168909","1483293516","1483168142","1","1","0","-1","124607","767","124607","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168152","1483168909","1483259052","1483168152","1","1","0","-1","90143","757","90143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168158","1483168909","1483237450","1483168158","1","1","0","-1","68541","751","68541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168160","1483168909","1483313682","1483168160","1","1","0","-1","144773","749","144773","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168163","1483168909","1483287534","1483168163","1","1","0","-1","118625","746","118625","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168172","1483168909","1483297855","1483168172","1","1","0","-1","128946","737","128946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113299","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168176","1483168909","1483243709","1483168176","1","1","0","-1","74800","733","74800","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113300","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168181","1483169032","1483274322","1483168181","1","1","0","-1","105290","851","105290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113301","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168186","1483169032","1483258568","1483168186","1","1","0","-1","89536","846","89536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113302","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168187","1483169032","1483272834","1483168187","1","1","0","-1","103802","845","103802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168189","1483169032","1483247340","1483168189","1","1","0","-1","78308","843","78308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113304","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169154","1483289411","1483168190","1","1","0","-1","120257","964","120257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483254966","1483168190","1","1","0","-1","85934","842","85934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113306","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483308992","1483168190","1","1","0","-1","139960","842","139960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113307","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483239129","1483168190","1","1","0","-1","70097","842","70097","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113308","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483312056","1483168190","1","1","0","-1","143024","842","143024","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113309","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483273872","1483168190","1","1","0","-1","104840","842","104840","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113310","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483298031","1483168190","1","1","0","-1","128999","842","128999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113311","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483305247","1483168190","1","1","0","-1","136215","842","136215","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483280565","1483168190","1","1","0","-1","111533","842","111533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113313","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168194","1483169032","1483283837","1483168194","1","1","0","-1","114805","838","114805","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113314","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168197","1483169032","1483297431","1483168197","1","1","0","-1","128399","835","128399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113315","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168201","1483169032","1483276984","1483168201","1","1","0","-1","107952","831","107952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113317","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483283710","1483168208","1","1","0","-1","114678","824","114678","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113318","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483248416","1483168208","1","1","0","-1","79384","824","79384","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113319","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168210","1483169154","1483310113","1483168210","1","1","0","-1","140959","944","140959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113320","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168214","1483169154","1483295878","1483168214","1","1","0","-1","126724","940","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168228","1483169154","1483287707","1483168228","1","1","0","-1","118553","926","118553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113322","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168230","1483169154","1483278429","1483168230","1","1","0","-1","109275","924","109275","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113323","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168233","1483169154","1483287981","1483168233","1","1","0","-1","118827","921","118827","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113324","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168238","1483169154","1483250746","1483168238","1","1","0","-1","81592","916","81592","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168243","1483169154","1483287940","1483168243","1","1","0","-1","118786","911","118786","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168245","1483169154","1483249333","1483168245","1","1","0","-1","80179","909","80179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168249","1483169154","1483300715","1483168249","1","1","0","-1","131561","905","131561","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113328","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168253","1483169154","1483260194","1483168253","1","1","0","-1","91040","901","91040","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168258","1483169154","1483279518","1483168258","1","1","0","-1","110364","896","110364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168259","1483169154","1483267360","1483168259","1","1","0","-1","98206","895","98206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168263","1483169154","1483276548","1483168263","1","1","0","-1","107394","891","107394","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113333","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168273","1483169154","1483254687","1483168273","1","1","0","-1","85533","881","85533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113334","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168278","1483169154","1483302710","1483168278","1","1","0","-1","133556","876","133556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168283","1483169154","1483258315","1483168283","1","1","0","-1","89161","871","89161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168288","1483169154","1483262299","1483168288","1","1","0","-1","93145","866","93145","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168291","1483169154","1483269817","1483168291","1","1","0","-1","100663","863","100663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168301","1483169279","1483267055","1483168301","1","1","0","-1","97776","978","97776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168305","1483169279","1483235134","1483168305","1","1","0","-1","65855","974","65855","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168307","1483169279","1483287038","1483168307","1","1","0","-1","117759","972","117759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168309","1483169279","1483314859","1483168309","1","1","0","-1","145580","970","145580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113342","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168312","1483169279","1483237172","1483168312","1","1","0","-1","67893","967","67893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168316","1483169279","1483252150","1483168316","1","1","0","-1","82871","963","82871","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113385","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171819","1483171856","1483282270","1483171819","1","1","0","-1","110414","37","110414","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171823","1483171856","1483279928","1483171823","1","1","0","-1","108072","33","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113394","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171859","1483171978","1483256151","1483171859","1","1","0","-1","84173","119","84173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113395","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171867","1483171978","1483254438","1483171867","1","1","0","-1","82460","111","82460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113396","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171871","1483171978","1483268945","1483171871","1","1","0","-1","96967","107","96967","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171880","1483171978","1483248421","1483171880","1","1","0","-1","76443","98","76443","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171885","1483171978","1483287436","1483171885","1","1","0","-1","115458","93","115458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171888","1483171978","1483309993","1483171888","1","1","0","-1","138015","90","138015","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171890","1483171978","1483309501","1483171890","1","1","0","-1","137523","88","137523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171891","1483171978","1483249947","1483171891","1","1","0","-1","77969","87","77969","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113402","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171898","1483171978","1483308217","1483171898","1","1","0","-1","136239","80","136239","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113403","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171903","1483171978","1483297802","1483171903","1","1","0","-1","125824","75","125824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113404","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171907","1483171978","1483279767","1483171907","1","1","0","-1","107789","71","107789","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113406","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171915","1483171978","1483282208","1483171915","1","1","0","-1","110230","63","110230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113407","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171926","1483171978","1483260323","1483171926","1","1","0","-1","88345","52","88345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113408","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171931","1483171978","1483312213","1483171931","1","1","0","-1","140235","47","140235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171932","1483171978","1483259488","1483171932","1","1","0","-1","87510","46","87510","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171935","1483171978","1483247531","1483171935","1","1","0","-1","75553","43","75553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113411","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171938","1483171978","1483275535","1483171938","1","1","0","-1","103557","40","103557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113412","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171941","1483171978","1483279405","1483171941","1","1","0","-1","107427","37","107427","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171945","1483172100","1483265904","1483171945","1","1","0","-1","93804","155","93804","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171947","1483172100","1483269408","1483171947","1","1","0","-1","97308","153","97308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171949","1483172100","1483280274","1483171949","1","1","0","-1","108174","151","108174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113416","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171950","1483172100","1483273212","1483171950","1","1","0","-1","101112","150","101112","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171959","1483172100","1483303709","1483171959","1","1","0","-1","131609","141","131609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171964","1483172100","1483307695","1483171964","1","1","0","-1","135595","136","135595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113419","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171970","1483172100","1483280353","1483171970","1","1","0","-1","108253","130","108253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113420","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171973","1483172100","1483289464","1483171973","1","1","0","-1","117364","127","117364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171977","1483172100","1483258325","1483171977","1","1","0","-1","86225","123","86225","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171983","1483172100","1483298824","1483171983","1","1","0","-1","126724","117","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113424","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171987","1483172100","1483291536","1483171987","1","1","0","-1","119436","113","119436","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113425","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171991","1483172100","1483286402","1483171991","1","1","0","-1","114302","109","114302","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171993","1483172100","1483289810","1483171993","1","1","0","-1","117710","107","117710","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171995","1483172100","1483268308","1483171995","1","1","0","-1","96208","105","96208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171999","1483172100","1483312092","1483171999","1","1","0","-1","139992","101","139992","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172000","1483172100","1483271960","1483172000","1","1","0","-1","99860","100","99860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172003","1483172100","1483280400","1483172003","1","1","0","-1","108300","97","108300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172006","1483172100","1483296273","1483172006","1","1","0","-1","124173","94","124173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172010","1483172100","1483276939","1483172010","1","1","0","-1","104839","90","104839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113433","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172013","1483172223","1483286718","1483172013","1","1","0","-1","114495","210","114495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172016","1483172223","1483259137","1483172016","1","1","0","-1","86914","207","86914","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113830","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200005","1483200053","1483296245","1483200005","1","1","0","-1","96192","48","96192","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113831","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200006","1483200053","1483298992","1483200006","1","1","0","-1","98939","47","98939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113832","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200007","1483200053","1483286337","1483200007","1","1","0","-1","86284","46","86284","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113833","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200011","1483200053","1483310003","1483200011","1","1","0","-1","109950","42","109950","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200013","1483200053","1483296688","1483200013","1","1","0","-1","96635","40","96635","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200017","1483200053","1483291976","1483200017","1","1","0","-1","91923","36","91923","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113836","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200018","1483200053","1483289913","1483200018","1","1","0","-1","89860","35","89860","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200048","1483200175","1483287999","1483200048","1","1","0","-1","87824","127","87824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113850","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200050","1483200175","1483293078","1483200050","1","1","0","-1","92903","125","92903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113864","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200058","1483200175","1483309147","1483200058","1","1","0","-1","108972","117","108972","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113866","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200064","1483200175","1483281545","1483200064","1","1","0","-1","81370","111","81370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113868","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292528","1483200066","1","1","0","-1","92353","109","92353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113869","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314377","1483200066","1","1","0","-1","114202","109","114202","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113870","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483281716","1483200066","1","1","0","-1","81541","109","81541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113871","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289925","1483200066","1","1","0","-1","89750","109","89750","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113873","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314312","1483200066","1","1","0","-1","114137","109","114137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113874","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483285844","1483200066","1","1","0","-1","85669","109","85669","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483315004","1483200066","1","1","0","-1","114829","109","114829","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483310674","1483200066","1","1","0","-1","110499","109","110499","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289097","1483200066","1","1","0","-1","88922","109","88922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113879","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483304947","1483200066","1","1","0","-1","104772","109","104772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113880","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292487","1483200066","1","1","0","-1","92312","109","92312","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483298771","1483200066","1","1","0","-1","98474","231","98474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483309627","1483200066","1","1","0","-1","109330","231","109330","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113885","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483313852","1483200066","1","1","0","-1","113555","231","113555","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113886","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483303395","1483200066","1","1","0","-1","103098","231","103098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113887","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483284263","1483200066","1","1","0","-1","83966","231","83966","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201086","1483201151","1483311521","1483201086","1","1","0","-1","110370","65","110370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201089","1483201151","1483293195","1483201089","1","1","0","-1","92044","62","92044","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201093","1483201151","1483286060","1483201093","1","1","0","-1","84909","58","84909","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201095","1483201151","1483289923","1483201095","1","1","0","-1","88772","56","88772","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201098","1483201151","1483289409","1483201098","1","1","0","-1","88258","53","88258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201100","1483201151","1483303639","1483201100","1","1","0","-1","102488","51","102488","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201104","1483201151","1483302425","1483201104","1","1","0","-1","101274","47","101274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201107","1483201151","1483288723","1483201107","1","1","0","-1","87572","44","87572","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201108","1483201151","1483297774","1483201108","1","1","0","-1","96623","43","96623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201113","1483201151","1483302374","1483201113","1","1","0","-1","101223","38","101223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201115","1483201151","1483304177","1483201115","1","1","0","-1","103026","36","103026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201119","1483201151","1483304928","1483201119","1","1","0","-1","103777","32","103777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483295032","1483201135","1","1","0","-1","93759","138","93759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114038","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483296629","1483201135","1","1","0","-1","95356","138","95356","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114040","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483286283","1483201135","1","1","0","-1","85010","138","85010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114041","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483288029","1483201135","1","1","0","-1","86756","138","86756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114042","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483279017","1483201135","1","1","0","-1","77744","138","77744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114043","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292728","1483201135","1","1","0","-1","91455","138","91455","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114044","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483310148","1483201135","1","1","0","-1","108875","138","108875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483315060","1483201135","1","1","0","-1","113787","138","113787","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483276183","1483201135","1","1","0","-1","74910","138","74910","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292998","1483201135","1","1","0","-1","91725","138","91725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201136","1483201273","1483298255","1483201136","1","1","0","-1","96982","137","96982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201139","1483201273","1483314421","1483201139","1","1","0","-1","113148","134","113148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201145","1483201273","1483304167","1483201145","1","1","0","-1","102894","128","102894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201147","1483201273","1483282985","1483201147","1","1","0","-1","81712","126","81712","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201148","1483201273","1483294052","1483201148","1","1","0","-1","92779","125","92779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201163","1483201397","1483297708","1483201163","1","1","0","-1","96311","234","96311","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483268423","1483201165","1","1","0","-1","67026","232","67026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483295408","1483201165","1","1","0","-1","94011","232","94011","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483279169","1483201165","1","1","0","-1","77772","232","77772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483271283","1483201165","1","1","0","-1","69886","232","69886","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483291388","1483201165","1","1","0","-1","89991","232","89991","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483311920","1483201165","1","1","0","-1","110523","232","110523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483276303","1483201165","1","1","0","-1","74906","232","74906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114449","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204151","1483204193","1483308118","1483204151","1","1","0","-1","103925","42","103925","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114450","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204156","1483204193","1483310364","1483204156","1","1","0","-1","106171","37","106171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114451","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204161","1483204193","1483298503","1483204161","1","1","0","-1","94310","32","94310","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114480","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204196","1483204314","1483287771","1483204196","1","1","0","-1","83457","118","83457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204205","1483204314","1483312386","1483204205","1","1","0","-1","108072","109","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204208","1483204314","1483291830","1483204208","1","1","0","-1","87516","106","87516","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114483","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483292696","1483204213","1","1","0","-1","88382","101","88382","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114484","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483291812","1483204213","1","1","0","-1","87498","101","87498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114485","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289916","1483204213","1","1","0","-1","85602","101","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114486","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289915","1483204213","1","1","0","-1","85601","101","85601","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114487","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483274136","1483204213","1","1","0","-1","69822","101","69822","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114488","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483303998","1483204213","1","1","0","-1","99684","101","99684","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114489","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483309919","1483204213","1","1","0","-1","105605","101","105605","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114490","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483306454","1483204213","1","1","0","-1","102140","101","102140","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204215","1483204314","1483294235","1483204215","1","1","0","-1","89921","99","89921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114493","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204222","1483204314","1483310894","1483204222","1","1","0","-1","106580","92","106580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114494","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204225","1483204314","1483286158","1483204225","1","1","0","-1","81844","89","81844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114495","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204229","1483204314","1483289923","1483204229","1","1","0","-1","85609","85","85609","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114496","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204233","1483204314","1483289218","1483204233","1","1","0","-1","84904","81","84904","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114498","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204314","1483289916","1483204234","1","1","0","-1","85602","80","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114501","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483289927","1483204234","1","1","0","-1","85492","201","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114502","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483304933","1483204234","1","1","0","-1","100498","201","100498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483285783","1483204234","1","1","0","-1","81348","201","81348","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114506","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483295366","1483204234","1","1","0","-1","90931","201","90931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483293296","1483204234","1","1","0","-1","88861","201","88861","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204237","1483204435","1483289927","1483204237","1","1","0","-1","85492","198","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114512","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204252","1483204435","1483299417","1483204252","1","1","0","-1","94982","183","94982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114513","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204255","1483204435","1483303675","1483204255","1","1","0","-1","99240","180","99240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114515","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204264","1483204435","1483293730","1483204264","1","1","0","-1","89295","171","89295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206183","1483206254","1483297400","1483206183","1","1","0","-1","91146","71","91146","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206186","1483206254","1483293310","1483206186","1","1","0","-1","87056","68","87056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114837","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206191","1483206254","1483306501","1483206191","1","1","0","-1","100247","63","100247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114838","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206193","1483206254","1483312905","1483206193","1","1","0","-1","106651","61","106651","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206195","1483206254","1483313495","1483206195","1","1","0","-1","107241","59","107241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206199","1483206254","1483308989","1483206199","1","1","0","-1","102735","55","102735","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114842","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206205","1483206254","1483312880","1483206205","1","1","0","-1","106626","49","106626","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206208","1483206254","1483309979","1483206208","1","1","0","-1","103725","46","103725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114845","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206215","1483206254","1483311066","1483206215","1","1","0","-1","104812","39","104812","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206218","1483206254","1483273868","1483206218","1","1","0","-1","67614","36","67614","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206263","1483206375","1483306945","1483206263","1","1","0","-1","100570","112","100570","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483295609","1483206270","1","1","0","-1","89234","105","89234","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483283086","1483206270","1","1","0","-1","76711","105","76711","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206286","1483206375","1483303608","1483206286","1","1","0","-1","97233","89","97233","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114882","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206287","1483206375","1483302011","1483206287","1","1","0","-1","95636","88","95636","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206290","1483206375","1483298553","1483206290","1","1","0","-1","92178","85","92178","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114928","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207478","1483207590","1483302149","1483207478","1","1","0","-1","94559","112","94559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114929","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207484","1483207590","1483313429","1483207484","1","1","0","-1","105839","106","105839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483312903","1483207487","1","1","0","-1","105313","103","105313","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483298820","1483207487","1","1","0","-1","91230","103","91230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114936","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483303919","1483207487","1","1","0","-1","96329","103","96329","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114937","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483301878","1483207487","1","1","0","-1","94288","103","94288","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114940","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483302483","1483207487","1","1","0","-1","94893","103","94893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483311321","1483207487","1","1","0","-1","103731","103","103731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114945","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483304393","1483207487","1","1","0","-1","96803","103","96803","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114946","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483295980","1483207487","1","1","0","-1","88390","103","88390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483300743","1483207487","1","1","0","-1","93032","224","93032","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483309082","1483207487","1","1","0","-1","101371","224","101371","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483313051","1483207487","1","1","0","-1","105340","224","105340","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483291993","1483207487","1","1","0","-1","84282","224","84282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114955","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207488","1483207711","1483301833","1483207488","1","1","0","-1","94122","223","94122","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207491","1483207711","1483295375","1483207491","1","1","0","-1","87664","220","87664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207494","1483207711","1483307072","1483207494","1","1","0","-1","99361","217","99361","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114960","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207500","1483207711","1483295229","1483207500","1","1","0","-1","87518","211","87518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114962","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207502","1483207711","1483313818","1483207502","1","1","0","-1","106107","209","106107","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114963","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207503","1483207711","1483303828","1483207503","1","1","0","-1","96117","208","96117","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114964","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207507","1483207711","1483285846","1483207507","1","1","0","-1","78135","204","78135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208320","1483208439","1483306711","1483208320","1","1","0","-1","98272","119","98272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208331","1483208439","1483306288","1483208331","1","1","0","-1","97849","108","97849","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114978","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208340","1483208439","1483303748","1483208340","1","1","0","-1","95309","99","95309","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208342","1483208439","1483306661","1483208342","1","1","0","-1","98222","97","98222","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208347","1483208439","1483303635","1483208347","1","1","0","-1","95196","92","95196","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208351","1483208439","1483289936","1483208351","1","1","0","-1","81497","88","81497","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208353","1483208439","1483288765","1483208353","1","1","0","-1","80326","86","80326","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208357","1483208439","1483299953","1483208357","1","1","0","-1","91514","82","91514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208359","1483208439","1483308874","1483208359","1","1","0","-1","100435","80","100435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208381","1483208560","1483288374","1483208381","1","1","0","-1","79814","179","79814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208387","1483208560","1483285114","1483208387","1","1","0","-1","76554","173","76554","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208390","1483208560","1483299079","1483208390","1","1","0","-1","90519","170","90519","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208401","1483208560","1483311766","1483208401","1","1","0","-1","103206","159","103206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208410","1483208560","1483287596","1483208410","1","1","0","-1","79036","150","79036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208422","1483208560","1483304512","1483208422","1","1","0","-1","95952","138","95952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208431","1483208560","1483285979","1483208431","1","1","0","-1","77419","129","77419","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208452","1483208560","1483294406","1483208452","1","1","0","-1","85846","108","85846","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208560","1483302388","1483208454","1","1","0","-1","93828","106","93828","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483276469","1483208454","1","1","0","-1","67788","227","67788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483307414","1483208454","1","1","0","-1","98733","227","98733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483290458","1483208454","1","1","0","-1","81777","227","81777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115014","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483311060","1483208454","1","1","0","-1","102379","227","102379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213480","1483213534","1483282058","1483213480","1","1","0","-1","68524","54","68524","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115106","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213489","1483213534","1483306835","1483213489","1","1","0","-1","93301","45","93301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213492","1483213534","1483291252","1483213492","1","1","0","-1","77718","42","77718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483292373","1483213550","1","1","0","-1","78718","105","78718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115128","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483289686","1483213550","1","1","0","-1","76031","105","76031","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483294594","1483213550","1","1","0","-1","80939","105","80939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115132","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483281233","1483213550","1","1","0","-1","67578","105","67578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483303422","1483213550","1","1","0","-1","89767","105","89767","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115134","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483307027","1483213550","1","1","0","-1","93372","105","93372","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222533","1483222630","1483304685","1483222533","1","1","0","-1","82055","97","82055","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222534","1483222630","1483289923","1483222534","1","1","0","-1","67293","96","67293","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222540","1483222630","1483291327","1483222540","1","1","0","-1","68697","90","68697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222541","1483222630","1483310687","1483222541","1","1","0","-1","88057","89","88057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222542","1483222630","1483289282","1483222542","1","1","0","-1","66652","88","66652","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222560","1483222630","1483311524","1483222560","1","1","0","-1","88894","70","88894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222563","1483222630","1483314587","1483222563","1","1","0","-1","91957","67","91957","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222574","1483222750","1483304020","1483222574","1","1","0","-1","81270","176","81270","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222580","1483222750","1483301313","1483222580","1","1","0","-1","78563","170","78563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222586","1483222750","1483307812","1483222586","1","1","0","-1","85062","164","85062","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222606","1483222750","1483309483","1483222606","1","1","0","-1","86733","144","86733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115620","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231340","1483231467","1483298945","1483231340","1","1","0","-1","67478","127","67478","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115637","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231347","1483231467","1483302395","1483231347","1","1","0","-1","70928","120","70928","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115646","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231591","1483231710","1483313236","1483231591","1","1","0","-1","81526","119","81526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115647","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231592","1483231710","1483310917","1483231592","1","1","0","-1","79207","118","79207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115696","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231657","1483231953","1483311763","1483231657","1","1","0","-1","79810","296","79810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115717","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231679","1483232075","1483311252","1483231679","1","1","0","-1","79177","396","79177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483314600","1483243516","1","1","0","-1","70998","86","70998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483309681","1483243516","1","1","0","-1","66079","86","66079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6107586[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[7]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[8]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[9]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483279393","1483036371","1","1","0","-1","242924","98","242924","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483275136","1483036371","1","1","0","-1","238667","98","238667","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[11]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[12]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483270817","1483036371","1","1","0","-1","234348","98","234348","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[15]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483246881","1483036371","1","1","0","-1","210283","227","210283","0","1:0","FAILED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[21]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483240052","1483036371","1","1","0","-1","203454","227","203454","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[27]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483254894","1483039080","1","1","0","-1","215685","131","215685","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[25]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[29]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046922","1483306143","1483046357","1","1","0","-1","259221","565","259221","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483231734","1483046357","1","1","0","-1","185225","152","185225","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[21]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[23]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483296209","1483046357","1","1","0","-1","249566","286","249566","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[24]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[25]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[27]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046778","1483272476","1483046357","1","1","0","-1","225698","421","225698","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108716[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483229565","1483072475","1","1","0","-1","156978","112","156978","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108716[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483270842","1483072475","1","1","0","-1","198255","112","198255","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108800[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483076091","1483076144","1483267927","1483076091","1","1","0","-1","191783","53","191783","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6109585[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483271049","1483109379","1","1","0","-1","161616","56","161616","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6109585[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483312425","1483109379","1","1","0","-1","202992","56","202992","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6111029[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483125543","1483310202","1483125395","1","1","0","-1","184659","149","184659","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112885[16]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148065","1483148185","1483297208","1483148066","1","1","0","-1","149023","120","149023","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112886[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148290","1483148436","1483266206","1483148293","1","1","0","-1","117770","146","117770","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112887[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148944","1483149064","1483255470","1483148944","1","1","0","-1","106406","120","106406","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112904[23]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483155055","1483155085","1483298241","1483155055","1","1","0","-1","143156","30","143156","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107628","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037326","1483037758","1483296961","1483037326","1","8","0","-1","259203","432","2073624","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107630","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037377","1483037889","1483297112","1483037377","1","8","0","-1","259223","512","2073784","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107635","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037430","1483038146","1483297352","1483037430","1","8","0","-1","259206","716","2073648","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107647","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037509","1483038280","1483297502","1483037509","1","8","0","-1","259222","771","2073776","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6108907","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079550","1483079610","1483308226","1483079550","1","8","0","-1","228616","60","1828928","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6108910","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079655","1483079739","1483308222","1483079655","1","8","0","-1","228483","84","1827864","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["995647","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144144","1483273604","1483144114","1","8","0","-1","129460","30","1035680","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995648","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144145","1483283483","1483144114","1","8","0","-1","139338","31","1114704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995650","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144147","1483274577","1483144114","1","8","0","-1","130430","33","1043440","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995652","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144149","1483292769","1483144114","1","8","0","-1","148620","35","1188960","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995653","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144150","1483274570","1483144114","1","8","0","-1","130420","36","1043360","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995654","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483277818","1483144114","1","8","0","-1","133666","38","1069328","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995655","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483286039","1483144114","1","8","0","-1","141887","38","1135096","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995656","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144154","1483273511","1483144114","1","8","0","-1","129357","40","1034856","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995657","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144155","1483280557","1483144115","1","8","0","-1","136402","40","1091216","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995658","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483277112","1483144115","1","8","0","-1","132954","43","1063632","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995659","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483275125","1483144115","1","8","0","-1","130967","43","1047736","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["1016250","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483186506","1483186577","1483254650","1483186506","1","8","0","-1","68073","71","544584","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019924","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483239618","1483239703","1483306378","1483239618","1","8","0","-1","66675","85","533400","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6112942","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161215","1483161307","1483236730","1483161215","2","24","0","-1","75423","92","1810152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112943","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161224","1483161307","1483266720","1483161224","2","24","0","-1","105413","83","2529912","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112944","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161230","1483161307","1483272990","1483161230","2","24","0","-1","111683","77","2680392","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112945","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161240","1483161307","1483240755","1483161240","2","24","0","-1","79448","67","1906752","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6114330","Robertson","UTC","","Warbler, Sardinian","Screwdriver","derby","1483203444","1483203589","1483285437","1483203444","4","32","0","-1","81848","145","2619136","0","0:0","CANCELLED by 284857","32","2147486448Mn","259200","white","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6108018","Robertson","UTC","","Duck, Ferruginous","Screwdriver","derby","1483045081","1483045193","1483297221","1483045081","5","60","0","-1","252028","112","15121680","0","0:0","COMPLETED","60","2147486448Mn","255000","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6111029[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483127378","1483231867","1483125395","1","1","0","-1","104489","1984","104489","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6110309","Robertson","UTC","","Thrush, Mistle","Screwdriver","curry","1483118113","1483120705","1483246965","1483118113","1","12","0","-1","126260","2592","1515120","0","1:0","FAILED","12","2147486448Mn","259200","white","Mathematical and Physical Sciences","Mathematical Sciences","Algebra and Number Theory"],["6110932","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122816","1483129199","1483260184","1483122816","1","1","0","-1","130985","6383","130985","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122827","1483129199","1483241049","1483122827","1","1","0","-1","111850","6372","111850","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122833","1483129199","1483243971","1483122833","1","1","0","-1","114772","6366","114772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110941","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122862","1483129199","1483279653","1483122862","1","1","0","-1","150454","6337","150454","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122866","1483129199","1483253444","1483122866","1","1","0","-1","124245","6333","124245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110944","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122873","1483129199","1483239135","1483122873","1","1","0","-1","109936","6326","109936","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122883","1483129199","1483250001","1483122883","1","1","0","-1","120802","6316","120802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110949","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122889","1483129199","1483269172","1483122889","1","1","0","-1","139973","6310","139973","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122898","1483129199","1483257196","1483122898","1","1","0","-1","127997","6301","127997","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122905","1483129199","1483270373","1483122905","1","1","0","-1","141174","6294","141174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122914","1483129199","1483258374","1483122914","1","1","0","-1","129175","6285","129175","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122927","1483130416","1483232571","1483122927","1","1","0","-1","102155","7489","102155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122928","1483130416","1483269146","1483122928","1","1","0","-1","138730","7488","138730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110959","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122941","1483130416","1483247414","1483122941","1","1","0","-1","116998","7475","116998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110961","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122956","1483130416","1483281503","1483122956","1","1","0","-1","151087","7460","151087","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110965","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122986","1483130940","1483254090","1483122986","1","1","0","-1","123150","7954","123150","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122991","1483130940","1483235921","1483122991","1","1","0","-1","104981","7949","104981","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110967","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122993","1483130940","1483244686","1483122993","1","1","0","-1","113746","7947","113746","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110969","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122999","1483140833","1483230389","1483122999","1","1","0","-1","89556","17834","89556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110970","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123006","1483140833","1483231508","1483123006","1","1","0","-1","90675","17827","90675","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110971","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123011","1483140833","1483243740","1483123011","1","1","0","-1","102907","17822","102907","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123014","1483140833","1483246134","1483123014","1","1","0","-1","105301","17819","105301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110973","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123020","1483140833","1483249560","1483123020","1","1","0","-1","108727","17813","108727","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110974","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123028","1483140833","1483237007","1483123028","1","1","0","-1","96174","17805","96174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123031","1483140833","1483232693","1483123031","1","1","0","-1","91860","17802","91860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110976","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123039","1483140833","1483265721","1483123039","1","1","0","-1","124888","17794","124888","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123058","1483140833","1483259832","1483123058","1","1","0","-1","118999","17775","118999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123059","1483140833","1483242584","1483123059","1","1","0","-1","101751","17774","101751","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123062","1483140833","1483246293","1483123062","1","1","0","-1","105460","17771","105460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123074","1483140833","1483254460","1483123074","1","1","0","-1","113627","17759","113627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123081","1483140833","1483254648","1483123081","1","1","0","-1","113815","17752","113815","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123088","1483140833","1483249312","1483123088","1","1","0","-1","108479","17745","108479","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130503","1483140958","1483273994","1483130503","1","1","0","-1","133036","10455","133036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111669","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130511","1483140958","1483261777","1483130511","1","1","0","-1","120819","10447","120819","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111670","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130519","1483140958","1483237534","1483130519","1","1","0","-1","96576","10439","96576","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130527","1483140958","1483255977","1483130527","1","1","0","-1","115019","10431","115019","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111692","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130555","1483140958","1483255361","1483130555","1","1","0","-1","114403","10403","114403","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130560","1483140958","1483230064","1483130560","1","1","0","-1","89106","10398","89106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111695","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130575","1483143765","1483230749","1483130575","1","1","0","-1","86984","13190","86984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111697","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130582","1483143765","1483258716","1483130582","1","1","0","-1","114951","13183","114951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111700","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130589","1483146922","1483268786","1483130589","1","1","0","-1","121864","16333","121864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111701","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130598","1483146922","1483242979","1483130598","1","1","0","-1","96057","16324","96057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111702","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130612","1483146922","1483287626","1483130612","1","1","0","-1","140704","16310","140704","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111029[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483129193","1483303395","1483125395","1","1","0","-1","174202","3799","174202","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["964695","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959827","1483244087","1482955559","1","16","0","-1","284260","4268","4548160","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964696","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959922","1483241046","1482955559","1","16","0","-1","281124","4363","4497984","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964697","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483244842","1482955560","1","16","0","-1","283623","5659","4537968","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964698","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483243832","1482955560","1","16","0","-1","282613","5659","4521808","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964699","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961261","1483252567","1482955560","1","16","0","-1","291306","5701","4660896","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964700","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482963515","1483249666","1482955560","1","16","0","-1","286151","7955","4578416","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964701","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482964505","1483248060","1482955560","1","16","0","-1","283555","8945","4536880","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964702","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482966664","1483246450","1482955560","1","16","0","-1","279786","11104","4476576","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964703","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482968430","1483254631","1482955560","1","16","0","-1","286201","12870","4579216","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964704","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482969745","1483253462","1482955560","1","16","0","-1","283717","14185","4539472","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964705","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482969934","1483255664","1482955561","1","16","0","-1","285730","14373","4571680","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964706","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482972508","1483258765","1482955561","1","16","0","-1","286257","16947","4580112","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["6112948","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161271","1483177476","1483287539","1483161271","2","16","0","-1","110063","16205","1761008","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112946","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161251","1483169402","1483254005","1483161251","2","24","0","-1","84603","8151","2030472","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112947","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161259","1483170757","1483266921","1483161259","2","24","0","-1","96164","9498","2307936","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112949","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161281","1483178210","1483258133","1483161281","2","24","0","-1","79923","16929","1918152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6111703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130621","1483149447","1483259968","1483130621","1","1","0","-1","110521","18826","110521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111704","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130626","1483149447","1483259737","1483130626","1","1","0","-1","110290","18821","110290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111705","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130632","1483149447","1483243256","1483130632","1","1","0","-1","93809","18815","93809","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130637","1483149447","1483262042","1483130637","1","1","0","-1","112595","18810","112595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130644","1483149447","1483251123","1483130644","1","1","0","-1","101676","18803","101676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111708","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130651","1483149571","1483245286","1483130651","1","1","0","-1","95715","18920","95715","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111709","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483243917","1483130661","1","1","0","-1","94346","18910","94346","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111710","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483297967","1483130661","1","1","0","-1","148396","18910","148396","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111711","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130663","1483149571","1483262372","1483130663","1","1","0","-1","112801","18908","112801","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111731","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130683","1483149571","1483273166","1483130683","1","1","0","-1","123595","18888","123595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111732","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130695","1483149571","1483247653","1483130695","1","1","0","-1","98082","18876","98082","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111733","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130702","1483149697","1483291977","1483130702","1","1","0","-1","142280","18995","142280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111734","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130705","1483149697","1483267146","1483130705","1","1","0","-1","117449","18992","117449","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111735","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130713","1483149697","1483289923","1483130713","1","1","0","-1","140226","18984","140226","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111736","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130716","1483149697","1483273378","1483130716","1","1","0","-1","123681","18981","123681","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111737","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130723","1483149697","1483271994","1483130723","1","1","0","-1","122297","18974","122297","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111738","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130728","1483149697","1483233193","1483130728","1","1","0","-1","83496","18969","83496","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111739","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130742","1483149697","1483247179","1483130742","1","1","0","-1","97482","18955","97482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111741","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130745","1483149823","1483259432","1483130745","1","1","0","-1","109609","19078","109609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111742","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130747","1483149823","1483250848","1483130747","1","1","0","-1","101025","19076","101025","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111743","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130752","1483149823","1483264028","1483130752","1","1","0","-1","114205","19071","114205","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111744","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130755","1483150068","1483240027","1483130755","1","1","0","-1","89959","19313","89959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111748","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130786","1483150190","1483235543","1483130786","1","1","0","-1","85353","19404","85353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111749","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130795","1483150312","1483286368","1483130795","1","1","0","-1","136056","19517","136056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130826","1483150312","1483254519","1483130826","1","1","0","-1","104207","19486","104207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130836","1483150312","1483260043","1483130836","1","1","0","-1","109731","19476","109731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111772","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130843","1483150312","1483261777","1483130843","1","1","0","-1","111465","19469","111465","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111773","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130848","1483150312","1483236580","1483130848","1","1","0","-1","86268","19464","86268","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111774","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130853","1483150312","1483240561","1483130853","1","1","0","-1","90249","19459","90249","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130859","1483150434","1483289924","1483130859","1","1","0","-1","139490","19575","139490","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108176","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483049788","1483075619","1483248447","1483049788","1","12","0","-1","172828","25831","2073936","0","1:0","TIMEOUT","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109583","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109304","1483130147","1483256250","1483109304","1","12","0","-1","126103","20843","1513236","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109608","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109465","1483130016","1483257008","1483109465","1","12","0","-1","126992","20551","1523904","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109610","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109484","1483130147","1483229691","1483109484","1","12","0","-1","99544","20663","1194528","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["964707","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482974294","1483257177","1482955561","1","16","0","-1","282883","18733","4526128","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["6112950","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161291","1483179921","1483263236","1483161291","2","24","0","-1","83315","18630","1999560","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6108913","Robertson","UTC","","Peregrine","Screwdriver","derby","1483079747","1483130147","1483238294","1483079747","5","60","0","-1","108147","50400","6488820","0","0:0","COMPLETED","60","2147486448Mn","110400","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6071470","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916662","1483044536","1483271836","1483044426","1","8","0","-1","227300","1127874","1818400","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071484","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916957","1483044536","1483298941","1483044426","1","8","0","-1","254405","1127579","2035240","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071502","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481917808","1483085948","1483273485","1483064965","1","8","0","-1","187537","1168140","1500296","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071518","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918137","1483184680","1483294800","1483184668","1","8","0","-1","110120","1266543","880960","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071523","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918281","1483184680","1483305127","1483184668","1","8","0","-1","120447","1266399","963576","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071529","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918529","1483184680","1483292468","1483184668","1","8","0","-1","107788","1266151","862304","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071533","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918630","1483184680","1483309102","1483184660","1","8","0","-1","124422","1266050","995376","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["995282","Posidriv","UTC","","Ovenbird","Screwdriver","bavarian-cream","1482865454","1483205093","1483312407","1482865454","1","16","0","-1","107314","339639","1717024","0","0:0","COMPLETED","16","125Gn","345600","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"],["6101316","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784833","1482973835","1483233058","1482784833","8","96","0","-1","259223","189002","24885408","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101317","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784877","1482974692","1483233932","1482784877","8","96","0","-1","259240","189815","24887040","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101752","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811393","1482974692","1483233933","1482811393","8","96","0","-1","259241","163299","24887136","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101753","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811463","1482974940","1483234228","1482811463","8","96","0","-1","259288","163477","24891648","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101754","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811513","1482977031","1483236242","1482811513","8","96","0","-1","259211","165518","24884256","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101755","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811582","1482977031","1483236244","1482811582","8","96","0","-1","259213","165449","24884448","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101756","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811640","1482978251","1483237480","1482811640","8","96","0","-1","259229","166611","24885984","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"]]} +{"success":true,"fields":["Local Job Id","Local Job Id Raw","Resource","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"],"data":[["1012557[29]","1019389","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288350","1483293912","1483230521","1","12","0","-1","5562","57829","66744","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[30]","1019404","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288495","1483292972","1483230521","1","12","0","-1","4477","57974","53724","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[31]","1019419","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288619","1483293176","1483230521","1","12","0","-1","4557","58098","54684","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[32]","1019420","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288670","1483293468","1483230521","1","12","0","-1","4798","58149","57576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[33]","1019421","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288672","1483292962","1483230521","1","12","0","-1","4290","58151","51480","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[34]","1019529","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289641","1483294183","1483230521","1","12","0","-1","4542","59120","54504","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[35]","1019530","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289653","1483294283","1483230521","1","12","0","-1","4630","59132","55560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[36]","1019549","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289824","1483294346","1483230521","1","12","0","-1","4522","59303","54264","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[37]","1019614","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483290566","1483295262","1483230521","1","12","0","-1","4696","60045","56352","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[38]","1019752","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483291925","1483296248","1483230521","1","12","0","-1","4323","61404","51876","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[39]","1019769","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292281","1483296708","1483230521","1","12","0","-1","4427","61760","53124","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[40]","1019830","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292962","1483297444","1483230521","1","12","0","-1","4482","62441","53784","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[41]","1019839","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292973","1483297542","1483230521","1","12","0","-1","4569","62452","54828","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[42]","1019889","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293176","1483297480","1483230521","1","12","0","-1","4304","62655","51648","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[43]","1019906","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293468","1483298032","1483230521","1","12","0","-1","4564","62947","54768","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[44]","1019972","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293912","1483298792","1483230521","1","12","0","-1","4880","63391","58560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[45]","1020005","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294183","1483299108","1483230521","1","12","0","-1","4925","63662","59100","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[46]","1020008","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294283","1483299006","1483230521","1","12","0","-1","4723","63762","56676","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[47]","1020009","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294346","1483299595","1483230521","1","12","0","-1","5249","63825","62988","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[48]","1020127","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295212","1483300731","1483230521","1","12","0","-1","5519","64691","66228","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[49]","1020128","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295263","1483299479","1483230521","1","12","0","-1","4216","64742","50592","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6108925","6108925","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080369","1483232750","1483238034","1483080369","1","8","0","-1","5284","152381","42272","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6112983","6112983","Robertson","UTC","","Dunlin","Screwdriver","curry","1483166772","1483239075","1483243977","1483166772","1","8","0","-1","4902","72303","39216","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6108976","6108976","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083320","1483222024","1483230247","1483083320","1","8","0","-1","8223","138704","65784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108977","6108977","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083401","1483222024","1483230759","1483083401","1","8","0","-1","8735","138623","69880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108991","6108991","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483084371","1483222750","1483229088","1483084371","1","8","0","-1","6338","138379","50704","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108995","6108995","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085380","1483223112","1483234712","1483085380","1","8","0","-1","11600","137732","92800","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108996","6108996","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085590","1483223112","1483229540","1483085590","1","8","0","-1","6428","137522","51424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108997","6108997","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085746","1483223234","1483230389","1483085746","1","8","0","-1","7155","137488","57240","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108998","6108998","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085849","1483223234","1483229603","1483085849","1","8","0","-1","6369","137385","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6108999","6108999","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085883","1483223355","1483229322","1483085883","1","8","0","-1","5967","137472","47736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109002","6109002","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086333","1483223598","1483230052","1483086333","1","8","0","-1","6454","137265","51632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109003","6109003","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086372","1483223598","1483230207","1483086372","1","8","0","-1","6609","137226","52872","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109004","6109004","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086630","1483223598","1483229043","1483086630","1","8","0","-1","5445","136968","43560","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109007","6109007","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086757","1483223719","1483229287","1483086757","1","8","0","-1","5568","136962","44544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109008","6109008","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086851","1483223719","1483229022","1483086851","1","8","0","-1","5303","136868","42424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109010","6109010","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086869","1483223719","1483229903","1483086869","1","8","0","-1","6184","136850","49472","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109011","6109011","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087068","1483223840","1483229090","1483087068","1","8","0","-1","5250","136772","42000","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109017","6109017","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087348","1483223961","1483229678","1483087348","1","8","0","-1","5717","136613","45736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109020","6109020","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087552","1483224082","1483228824","1483087552","1","8","0","-1","4742","136530","37936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109024","6109024","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087885","1483224204","1483229349","1483087885","1","8","0","-1","5145","136319","41160","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109025","6109025","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087997","1483224325","1483230127","1483087997","1","8","0","-1","5802","136328","46416","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109027","6109027","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088108","1483224446","1483229274","1483088108","1","8","0","-1","4828","136338","38624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109030","6109030","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088363","1483224446","1483229480","1483088363","1","8","0","-1","5034","136083","40272","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109032","6109032","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088713","1483224566","1483231633","1483088713","1","8","0","-1","7067","135853","56536","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109033","6109033","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088719","1483224566","1483230228","1483088719","1","8","0","-1","5662","135847","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109034","6109034","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088738","1483224566","1483229332","1483088738","1","8","0","-1","4766","135828","38128","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109035","6109035","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088782","1483224566","1483230787","1483088782","1","8","0","-1","6221","135784","49768","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109036","6109036","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088824","1483224566","1483229580","1483088824","1","8","0","-1","5014","135742","40112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109037","6109037","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088866","1483224687","1483231394","1483088866","1","8","0","-1","6707","135821","53656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109038","6109038","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088941","1483224687","1483230384","1483088941","1","8","0","-1","5697","135746","45576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109039","6109039","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089098","1483224687","1483229672","1483089098","1","8","0","-1","4985","135589","39880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109040","6109040","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089159","1483224687","1483228992","1483089159","1","8","0","-1","4305","135528","34440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109041","6109041","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089488","1483224687","1483230409","1483089488","1","8","0","-1","5722","135199","45776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109044","6109044","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089787","1483224687","1483229177","1483089787","1","8","0","-1","4490","134900","35920","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109046","6109046","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089959","1483224808","1483229815","1483089959","1","8","0","-1","5007","134849","40056","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109047","6109047","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090136","1483224808","1483229901","1483090136","1","8","0","-1","5093","134672","40744","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109048","6109048","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090183","1483224808","1483229514","1483090183","1","8","0","-1","4706","134625","37648","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109051","6109051","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090770","1483224808","1483229619","1483090770","1","8","0","-1","4811","134038","38488","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109052","6109052","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090793","1483224808","1483229126","1483090793","1","8","0","-1","4318","134015","34544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109053","6109053","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090812","1483224929","1483231271","1483090812","1","8","0","-1","6342","134117","50736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109054","6109054","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090864","1483224929","1483230715","1483090864","1","8","0","-1","5786","134065","46288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109055","6109055","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090919","1483224929","1483230261","1483090919","1","8","0","-1","5332","134010","42656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109056","6109056","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091023","1483225050","1483231751","1483091023","1","8","0","-1","6701","134027","53608","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109057","6109057","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091053","1483225050","1483230871","1483091053","1","8","0","-1","5821","133997","46568","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109058","6109058","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091231","1483225050","1483229940","1483091231","1","8","0","-1","4890","133819","39120","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109059","6109059","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091458","1483225171","1483231609","1483091458","1","8","0","-1","6438","133713","51504","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109060","6109060","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091633","1483225171","1483229708","1483091633","1","8","0","-1","4537","133538","36296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109061","6109061","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091834","1483225171","1483230308","1483091834","1","8","0","-1","5137","133337","41096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109062","6109062","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091958","1483225171","1483230781","1483091958","1","8","0","-1","5610","133213","44880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109063","6109063","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092218","1483225412","1483230799","1483092218","1","8","0","-1","5387","133194","43096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109064","6109064","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092233","1483225533","1483231071","1483092233","1","8","0","-1","5538","133300","44304","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109065","6109065","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092254","1483225533","1483231436","1483092254","1","8","0","-1","5903","133279","47224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109066","6109066","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092263","1483225533","1483232483","1483092263","1","8","0","-1","6950","133270","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109067","6109067","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092267","1483225533","1483230237","1483092267","1","8","0","-1","4704","133266","37632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109068","6109068","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092363","1483225533","1483230561","1483092363","1","8","0","-1","5028","133170","40224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109069","6109069","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092400","1483225533","1483231113","1483092400","1","8","0","-1","5580","133133","44640","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109072","6109072","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092705","1483225533","1483230470","1483092705","1","8","0","-1","4937","132828","39496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109073","6109073","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092793","1483225654","1483231218","1483092793","1","8","0","-1","5564","132861","44512","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109074","6109074","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092840","1483225654","1483231087","1483092840","1","8","0","-1","5433","132814","43464","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109075","6109075","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092891","1483225654","1483230733","1483092891","1","8","0","-1","5079","132763","40632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109077","6109077","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093085","1483225897","1483231591","1483093085","1","8","0","-1","5694","132812","45552","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109078","6109078","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093167","1483225897","1483231551","1483093167","1","8","0","-1","5654","132730","45232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109079","6109079","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093391","1483225897","1483230730","1483093391","1","8","0","-1","4833","132506","38664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109080","6109080","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093636","1483225897","1483231622","1483093636","1","8","0","-1","5725","132261","45800","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109081","6109081","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093739","1483225897","1483231858","1483093739","1","8","0","-1","5961","132158","47688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109082","6109082","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093894","1483225897","1483232891","1483093894","1","8","0","-1","6994","132003","55952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109083","6109083","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093912","1483225897","1483231168","1483093912","1","8","0","-1","5271","131985","42168","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109084","6109084","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094011","1483225897","1483231651","1483094011","1","8","0","-1","5754","131886","46032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109085","6109085","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094148","1483225897","1483232847","1483094148","1","8","0","-1","6950","131749","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109086","6109086","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094155","1483225897","1483230146","1483094155","1","8","0","-1","4249","131742","33992","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109088","6109088","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094167","1483225897","1483230641","1483094167","1","8","0","-1","4744","131730","37952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109089","6109089","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094195","1483225897","1483230934","1483094195","1","8","0","-1","5037","131702","40296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109090","6109090","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094216","1483225897","1483230451","1483094216","1","8","0","-1","4554","131681","36432","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109091","6109091","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094281","1483225897","1483230400","1483094281","1","8","0","-1","4503","131616","36024","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109092","6109092","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094288","1483226018","1483233119","1483094288","1","8","0","-1","7101","131730","56808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109093","6109093","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094368","1483226018","1483232610","1483094368","1","8","0","-1","6592","131650","52736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109094","6109094","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094474","1483226138","1483234341","1483094474","1","8","0","-1","8203","131664","65624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109095","6109095","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094479","1483226138","1483232492","1483094479","1","8","0","-1","6354","131659","50832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109096","6109096","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094558","1483226138","1483232894","1483094558","1","8","0","-1","6756","131580","54048","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109097","6109097","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094775","1483226138","1483232289","1483094775","1","8","0","-1","6151","131363","49208","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109098","6109098","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094807","1483226138","1483232114","1483094807","1","8","0","-1","5976","131331","47808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109099","6109099","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094833","1483226138","1483232015","1483094833","1","8","0","-1","5877","131305","47016","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109100","6109100","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094912","1483226138","1483233025","1483094912","1","8","0","-1","6887","131226","55096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109101","6109101","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094975","1483226138","1483232621","1483094975","1","8","0","-1","6483","131163","51864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109102","6109102","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094987","1483226138","1483234366","1483094987","1","8","0","-1","8228","131151","65824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109103","6109103","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094991","1483226138","1483232522","1483094991","1","8","0","-1","6384","131147","51072","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109104","6109104","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095009","1483226138","1483232507","1483095009","1","8","0","-1","6369","131129","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109105","6109105","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095189","1483226138","1483231768","1483095189","1","8","0","-1","5630","130949","45040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109106","6109106","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095277","1483226138","1483232267","1483095277","1","8","0","-1","6129","130861","49032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109107","6109107","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095298","1483226138","1483232799","1483095298","1","8","0","-1","6661","130840","53288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109108","6109108","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095351","1483226138","1483234568","1483095351","1","8","0","-1","8430","130787","67440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109109","6109109","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095358","1483226138","1483232335","1483095358","1","8","0","-1","6197","130780","49576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109110","6109110","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095544","1483226138","1483231291","1483095544","1","8","0","-1","5153","130594","41224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109111","6109111","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095597","1483226380","1483232113","1483095597","1","8","0","-1","5733","130783","45864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109112","6109112","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095604","1483226865","1483234633","1483095604","1","8","0","-1","7768","131261","62144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109113","6109113","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095694","1483226865","1483234290","1483095694","1","8","0","-1","7425","131171","59400","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109114","6109114","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095721","1483226865","1483233753","1483095721","1","8","0","-1","6888","131144","55104","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109115","6109115","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095768","1483226865","1483233616","1483095768","1","8","0","-1","6751","131097","54008","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109118","6109118","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095846","1483226986","1483234657","1483095846","1","8","0","-1","7671","131140","61368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109119","6109119","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095859","1483226986","1483233892","1483095859","1","8","0","-1","6906","131127","55248","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109120","6109120","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095887","1483226986","1483233575","1483095887","1","8","0","-1","6589","131099","52712","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109121","6109121","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096300","1483227108","1483234301","1483096300","1","8","0","-1","7193","130808","57544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109122","6109122","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096337","1483227108","1483233337","1483096337","1","8","0","-1","6229","130771","49832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109123","6109123","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096407","1483227108","1483233594","1483096407","1","8","0","-1","6486","130701","51888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109124","6109124","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096437","1483227108","1483232578","1483096437","1","8","0","-1","5470","130671","43760","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109125","6109125","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096476","1483227229","1483233053","1483096476","1","8","0","-1","5824","130753","46592","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109127","6109127","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096578","1483227229","1483233243","1483096578","1","8","0","-1","6014","130651","48112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109128","6109128","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096603","1483227229","1483234670","1483096603","1","8","0","-1","7441","130626","59528","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109130","6109130","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096756","1483227229","1483232190","1483096756","1","8","0","-1","4961","130473","39688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109131","6109131","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096785","1483227229","1483232539","1483096785","1","8","0","-1","5310","130444","42480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109132","6109132","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097110","1483227229","1483233030","1483097110","1","8","0","-1","5801","130119","46408","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109135","6109135","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097235","1483227229","1483233122","1483097235","1","8","0","-1","5893","129994","47144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109138","6109138","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097431","1483227350","1483233175","1483097431","1","8","0","-1","5825","129919","46600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109139","6109139","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097452","1483227350","1483232730","1483097452","1","8","0","-1","5380","129898","43040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109141","6109141","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097541","1483227471","1483233569","1483097541","1","8","0","-1","6098","129930","48784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109142","6109142","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097655","1483227593","1483232801","1483097655","1","8","0","-1","5208","129938","41664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109143","6109143","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097661","1483227714","1483233952","1483097661","1","8","0","-1","6238","130053","49904","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109144","6109144","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097697","1483227714","1483232581","1483097697","1","8","0","-1","4867","130017","38936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109147","6109147","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098258","1483227835","1483232822","1483098258","1","8","0","-1","4987","129577","39896","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109148","6109148","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098518","1483227835","1483232432","1483098518","1","8","0","-1","4597","129317","36776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109149","6109149","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099136","1483227955","1483233558","1483099136","1","8","0","-1","5603","128819","44824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109150","6109150","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099286","1483228197","1483233558","1483099286","1","8","0","-1","5361","128911","42888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109151","6109151","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099326","1483228439","1483233751","1483099326","1","8","0","-1","5312","129113","42496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109152","6109152","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099456","1483228439","1483233268","1483099456","1","8","0","-1","4829","128983","38632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109153","6109153","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099592","1483228439","1483232901","1483099592","1","8","0","-1","4462","128847","35696","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109154","6109154","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099600","1483228439","1483233450","1483099600","1","8","0","-1","5011","128839","40088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109155","6109155","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099637","1483228560","1483234656","1483099637","1","8","0","-1","6096","128923","48768","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109156","6109156","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099646","1483228560","1483234288","1483099646","1","8","0","-1","5728","128914","45824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109157","6109157","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099717","1483228680","1483234692","1483099717","1","8","0","-1","6012","128963","48096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109158","6109158","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099730","1483228801","1483234361","1483099730","1","8","0","-1","5560","129071","44480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109159","6109159","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099925","1483228801","1483234374","1483099925","1","8","0","-1","5573","128876","44584","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109160","6109160","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099982","1483228801","1483233674","1483099982","1","8","0","-1","4873","128819","38984","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109161","6109161","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099997","1483228922","1483234584","1483099997","1","8","0","-1","5662","128925","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109162","6109162","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100041","1483229043","1483234665","1483100041","1","8","0","-1","5622","129002","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109163","6109163","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100045","1483229043","1483234665","1483100045","1","8","0","-1","5622","128998","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109164","6109164","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100124","1483229165","1483234673","1483100124","1","8","0","-1","5508","129041","44064","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109165","6109165","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100146","1483229165","1483234501","1483100146","1","8","0","-1","5336","129019","42688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109166","6109166","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100211","1483229165","1483234641","1483100211","1","8","0","-1","5476","128954","43808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109167","6109167","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100300","1483229285","1483234647","1483100300","1","8","0","-1","5362","128985","42896","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109168","6109168","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100338","1483229285","1483234636","1483100338","1","8","0","-1","5351","128947","42808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109169","6109169","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100388","1483229406","1483233928","1483100388","1","8","0","-1","4522","129018","36176","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109170","6109170","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100468","1483229406","1483234292","1483100468","1","8","0","-1","4886","128938","39088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109171","6109171","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100470","1483229406","1483234322","1483100470","1","8","0","-1","4916","128936","39328","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109172","6109172","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100822","1483229406","1483234324","1483100822","1","8","0","-1","4918","128584","39344","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109173","6109173","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100837","1483229527","1483234696","1483100837","1","8","0","-1","5169","128690","41352","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109174","6109174","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100960","1483229527","1483234016","1483100960","1","8","0","-1","4489","128567","35912","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109175","6109175","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101004","1483229648","1483234673","1483101004","1","8","0","-1","5025","128644","40200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109176","6109176","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101005","1483229648","1483234695","1483101005","1","8","0","-1","5047","128643","40376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109177","6109177","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101140","1483229648","1483234700","1483101140","1","8","0","-1","5052","128508","40416","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109178","6109178","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101266","1483229648","1483234665","1483101266","1","8","0","-1","5017","128382","40136","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109179","6109179","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101273","1483229769","1483234646","1483101273","1","8","0","-1","4877","128496","39016","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109180","6109180","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101441","1483229769","1483234726","1483101441","1","8","0","-1","4957","128328","39656","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109181","6109181","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101453","1483229769","1483234671","1483101453","1","8","0","-1","4902","128316","39216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109182","6109182","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101592","1483229769","1483234656","1483101592","1","8","0","-1","4887","128177","39096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109183","6109183","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101611","1483229890","1483234717","1483101611","1","8","0","-1","4827","128279","38616","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109184","6109184","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101690","1483230012","1483234653","1483101690","1","8","0","-1","4641","128322","37128","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109185","6109185","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101712","1483230012","1483234658","1483101712","1","8","0","-1","4646","128300","37168","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109186","6109186","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101735","1483230133","1483234680","1483101735","1","8","0","-1","4547","128398","36376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109187","6109187","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101747","1483230254","1483234656","1483101747","1","8","0","-1","4402","128507","35216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109188","6109188","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101761","1483230254","1483234669","1483101761","1","8","0","-1","4415","128493","35320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109189","6109189","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101789","1483230254","1483234654","1483101789","1","8","0","-1","4400","128465","35200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109190","6109190","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101824","1483230497","1483234657","1483101824","1","8","0","-1","4160","128673","33280","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109191","6109191","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101838","1483230497","1483234681","1483101838","1","8","0","-1","4184","128659","33472","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109192","6109192","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101940","1483230497","1483234701","1483101940","1","8","0","-1","4204","128557","33632","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109193","6109193","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102021","1483230739","1483234665","1483102021","1","8","0","-1","3926","128718","31408","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109194","6109194","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102063","1483230861","1483234657","1483102063","1","8","0","-1","3796","128798","30368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109195","6109195","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102305","1483230861","1483234681","1483102305","1","8","0","-1","3820","128556","30560","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["6109196","6109196","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102420","1483230982","1483234647","1483102420","1","8","0","-1","3665","128562","29320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1012557[74]","1012557","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483305309","1483309059","1483230521","1","12","0","-1","3750","74788","45000","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[50]","1020253","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296248","1483300942","1483230521","1","12","0","-1","4694","65727","56328","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[51]","1020281","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296708","1483301965","1483230521","1","12","0","-1","5257","66187","63084","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[52]","1020382","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297445","1483302424","1483230521","1","12","0","-1","4979","66924","59748","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[53]","1020383","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297480","1483302365","1483230521","1","12","0","-1","4885","66959","58620","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[54]","1020402","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297542","1483302018","1483230521","1","12","0","-1","4476","67021","53712","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[55]","1020448","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298032","1483303026","1483230521","1","12","0","-1","4994","67511","59928","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[56]","1020515","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298793","1483303445","1483230521","1","12","0","-1","4652","68272","55824","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[57]","1020540","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299007","1483303788","1483230521","1","12","0","-1","4781","68486","57372","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[58]","1020565","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299108","1483303864","1483230521","1","12","0","-1","4756","68587","57072","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[59]","1020591","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299479","1483304996","1483230521","1","12","0","-1","5517","68958","66204","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[60]","1020609","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299596","1483303401","1483230521","1","12","0","-1","3805","69075","45660","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[61]","1020733","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300731","1483304682","1483230521","1","12","0","-1","3951","70210","47412","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[62]","1020764","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300943","1483306491","1483230521","1","12","0","-1","5548","70422","66576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[67]","1021000","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303027","1483306986","1483230521","1","12","0","-1","3959","72506","47508","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[68]","1021034","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303402","1483307160","1483230521","1","12","0","-1","3758","72881","45096","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[70]","1021070","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303788","1483307453","1483230521","1","12","0","-1","3665","73267","43980","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[71]","1021087","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303865","1483308086","1483230521","1","12","0","-1","4221","73344","50652","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["1012557[72]","1021150","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483304682","1483308627","1483230521","1","12","0","-1","3945","74161","47340","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6108929","6108929","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080673","1483231918","1483246389","1483080673","2","16","0","-1","14471","151245","231536","0","1:0","TIMEOUT","16","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["6113332","6113332","Robertson","UTC","","Dunlin","Screwdriver","curry","1483168273","1483236943","1483251439","1483168273","2","24","0","-1","14496","68670","347904","0","1:0","TIMEOUT","24","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"],["1020000","1020000","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483260369","1483260369","1483282571","1483260369","1","8","0","-1","22202","0","177616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020089","1020089","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483289868","1483289868","1483313573","1483289868","1","8","0","-1","23705","0","189640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019989","1019989","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483255506","1483255506","1483277244","1483255506","1","8","0","-1","21738","0","173904","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020009","1020009","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483262143","1483262143","1483282140","1483262143","1","8","0","-1","19997","0","159976","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309861","2309861","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241326","1483275726","1483241326","1","16","0","-1","34400","0","550400","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309884","2309884","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241632","1483241632","1483276573","1483241632","1","16","0","-1","34941","0","559056","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019944","1019944","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483243754","1483243754","1483264519","1483243754","1","20","0","-1","20765","0","415300","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1020095","1020095","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483290808","1483290808","1483311960","1483290808","1","20","0","-1","21152","0","423040","0","1:0","FAILED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6117519","6117519","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250316","1483250340","1483285217","1483250316","1","1","0","-1","34877","24","34877","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6119997","6119997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277789","1483277815","1483304416","1483277789","1","1","0","-1","26601","26","26601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120004","6120004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277799","1483277815","1483297012","1483277799","1","1","0","-1","19197","16","19197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120347","6120347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483309448","1483290531","1","1","0","-1","18901","16","18901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120350","6120350","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483314965","1483290531","1","1","0","-1","24418","16","24418","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120391","6120391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291123","1483291148","1483309307","1483291123","1","1","0","-1","18159","25","18159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120399","6120399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291124","1483291148","1483311554","1483291124","1","1","0","-1","20406","24","20406","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120421","6120421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483314764","1483291498","1","1","0","-1","23254","12","23254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120423","6120423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483310198","1483291498","1","1","0","-1","18688","12","18688","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["1018470","1018470","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483209281","1483209306","1483241614","1483209281","1","8","0","-1","32308","25","258464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020038","1020038","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483276177","1483276178","1483296547","1483276177","1","8","0","-1","20369","1","162952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2308432","2308432","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483231015","1483231016","1483252678","1483231015","1","16","0","-1","21662","1","346592","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309845","2309845","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483240905","1483240916","1483264210","1483240905","1","16","0","-1","23294","11","372704","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309860","2309860","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241321","1483241326","1483275836","1483241321","1","16","0","-1","34510","5","552160","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115789","6115789","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233680","1483233777","1483262633","1483233680","1","1","0","-1","28856","97","28856","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117558","6117558","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250375","1483250591","1483284587","1483250375","1","1","0","-1","33996","216","33996","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117561","6117561","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250385","1483250591","1483275064","1483250385","1","1","0","-1","24473","206","24473","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117576","6117576","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250424","1483250716","1483285752","1483250424","1","1","0","-1","35036","292","35036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120037","6120037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277851","1483278055","1483297236","1483277851","1","1","0","-1","19181","204","19181","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120074","6120074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277897","1483278295","1483314227","1483277897","1","1","0","-1","35932","398","35932","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120079","6120079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277902","1483278295","1483299228","1483277902","1","1","0","-1","20933","393","20933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120105","6120105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277948","1483278535","1483307536","1483277948","1","1","0","-1","29001","587","29001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120115","6120115","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277958","1483278535","1483309618","1483277958","1","1","0","-1","31083","577","31083","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120140","6120140","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277980","1483278655","1483309089","1483277980","1","1","0","-1","30434","675","30434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120150","6120150","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277995","1483278776","1483309421","1483277995","1","1","0","-1","30645","781","30645","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120193","6120193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483278052","1483279016","1483302406","1483278052","1","1","0","-1","23390","964","23390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120296","6120296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287733","1483288145","1483308104","1483287733","1","1","0","-1","19959","412","19959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120298","6120298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287738","1483288145","1483313129","1483287738","1","1","0","-1","24984","407","24984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120343","6120343","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290456","1483290547","1483312223","1483290456","1","1","0","-1","21676","91","21676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120357","6120357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290582","1483290667","1483314627","1483290582","1","1","0","-1","23960","85","23960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120363","6120363","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483313406","1483290679","1","1","0","-1","22619","108","22619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120367","6120367","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483309066","1483290679","1","1","0","-1","18279","108","18279","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120380","6120380","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290972","1483291028","1483313591","1483290972","1","1","0","-1","22563","56","22563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120388","6120388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483314051","1483291085","1","1","0","-1","22903","63","22903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120389","6120389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483312361","1483291085","1","1","0","-1","21213","63","21213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120409","6120409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291185","1483291269","1483315123","1483291185","1","1","0","-1","23854","84","23854","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120418","6120418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291478","1483291510","1483314889","1483291478","1","1","0","-1","23379","32","23379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120427","6120427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483313217","1483291694","1","1","0","-1","21466","57","21466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120428","6120428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483314996","1483291694","1","1","0","-1","23245","57","23245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120429","6120429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483309886","1483291694","1","1","0","-1","18135","57","18135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120430","6120430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483312872","1483291694","1","1","0","-1","21121","57","21121","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120431","6120431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310758","1483291694","1","1","0","-1","19007","57","19007","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120432","6120432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311228","1483291694","1","1","0","-1","19477","57","19477","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120434","6120434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311251","1483291694","1","1","0","-1","19500","57","19500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120441","6120441","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310302","1483291694","1","1","0","-1","18551","57","18551","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120447","6120447","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310421","1483291774","1","1","0","-1","18550","97","18550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120448","6120448","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310491","1483291774","1","1","0","-1","18620","97","18620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120458","6120458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483313528","1483292046","1","1","0","-1","21416","66","21416","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120461","6120461","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483312309","1483292046","1","1","0","-1","20197","66","20197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6120462","6120462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483314786","1483292046","1","1","0","-1","22674","66","22674","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["1018314","1018314","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483206818","1483207021","1483233329","1483206818","1","8","0","-1","26308","203","210464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018806","1018806","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215142","1483215195","1483236458","1483215142","1","8","0","-1","21263","53","170104","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018919","1018919","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483217367","1483217479","1483237249","1483217367","1","8","0","-1","19770","112","158160","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019923","1019923","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483239608","1483239703","1483265574","1483239608","1","8","0","-1","25871","95","206968","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019934","1019934","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483241902","1483241991","1483270583","1483241902","1","8","0","-1","28592","89","228736","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115525[22]","6115580","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231224","1483251512","1483230137","1","12","0","-1","20288","1090","243456","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[22]","6115855","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483236943","1483257688","1483230268","1","12","0","-1","20745","6678","248940","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[59]","6115979","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483238516","1483268469","1483230268","1","12","0","-1","29953","8251","359436","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115537[22]","6116062","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230317","1483240424","1483259619","1483230317","1","12","0","-1","19195","10107","230340","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115539[22]","6117004","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230378","1483248057","1483270798","1483230379","1","12","0","-1","22741","17679","272892","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[18]","6119128","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259700","1483280279","1483245145","1","12","0","-1","20579","14555","246948","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[46]","6119349","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483260934","1483280736","1483245145","1","12","0","-1","19802","15789","237624","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116050","6116050","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240024","1483272770","1483295769","1483240024","8","96","0","-1","22999","32746","2207904","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6116051","6116051","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240051","1483273371","1483295772","1483240051","8","96","0","-1","22401","33320","2150496","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1004733","1004733","Mortorq","UTC","","Redpoll, Lesser","Screwdriver","cherry","1483207214","1483207214","1483270166","1483207214","1","4","0","-1","62952","0","251808","0","0:0","COMPLETED","4","2147491648Mn","3596400","pita","Humanities\/Arts","Arts","Arts"],["1019945","1019945","Posidriv","UTC","","Fieldfare","Screwdriver","banana-cream","1483244077","1483244077","1483284074","1483244077","1","8","0","-1","39997","0","319976","0","0:0","COMPLETED","8","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["1019972","1019972","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483251196","1483251196","1483287446","1483251196","1","8","0","-1","36250","0","290000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6113839","6113839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200024","1483200053","1483264736","1483200024","1","1","0","-1","64683","29","64683","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115604","6115604","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231323","1483231346","1483289925","1483231323","1","1","0","-1","58579","23","58579","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116091","6116091","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240958","1483240975","1483289936","1483240958","1","1","0","-1","48961","17","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116096","6116096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241082","1483241099","1483289936","1483241082","1","1","0","-1","48837","17","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116097","6116097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241091","1483241099","1483289936","1483241091","1","1","0","-1","48837","8","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116098","6116098","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241097","1483241099","1483289937","1483241097","1","1","0","-1","48838","2","48838","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115303","6115303","Robertson","UTC","","Lapwing","Screwdriver","curry","1483221161","1483221173","1483257175","1483221161","1","1","0","-1","36002","12","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115438","6115438","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225756","1483225776","1483261776","1483225756","1","1","0","-1","36000","20","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115457","6115457","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226357","1483226380","1483262380","1483226357","1","1","0","-1","36000","23","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119921","6119921","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264580","1483264584","1483307795","1483264580","1","1","0","-1","43211","4","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119923","6119923","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264696","1483264704","1483307916","1483264696","1","1","0","-1","43212","8","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1020025","1020025","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483270272","1483270273","1483310835","1483270272","1","8","0","-1","40562","1","324496","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019139","1019139","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483221197","1483221204","1483283907","1483221197","1","8","0","-1","62703","7","501624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1020005","1020005","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483261479","1483261480","1483303453","1483261479","1","8","0","-1","41973","1","335784","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2309863","2309863","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241329","1483291507","1483241326","1","16","0","-1","50178","3","802848","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6113101","6113101","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167526","1483167673","1483230521","1483167526","1","1","0","-1","62848","147","62848","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113155","6113155","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167624","1483168044","1483231590","1483167624","1","1","0","-1","63546","420","63546","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113185","6113185","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167713","1483168293","1483231990","1483167713","1","1","0","-1","63697","580","63697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113270","6113270","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483229989","1483168064","1","1","0","-1","61203","722","61203","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114074","6114074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201161","1483201397","1483257208","1483201161","1","1","0","-1","55811","236","55811","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114085","6114085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483266122","1483201165","1","1","0","-1","64725","232","64725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114087","6114087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483240301","1483201165","1","1","0","-1","38904","232","38904","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114847","6114847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206222","1483206254","1483264688","1483206222","1","1","0","-1","58434","32","58434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114933","6114933","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483265591","1483207487","1","1","0","-1","58001","103","58001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114966","6114966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207513","1483207711","1483249010","1483207513","1","1","0","-1","41299","198","41299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115015","6115015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483266614","1483208454","1","1","0","-1","57933","227","57933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115017","6115017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483248131","1483208454","1","1","0","-1","39450","227","39450","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115105","6115105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213485","1483213534","1483267435","1483213485","1","1","0","-1","53901","49","53901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115123","6115123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213541","1483213655","1483274175","1483213541","1","1","0","-1","60520","114","60520","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115139","6115139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483270089","1483213550","1","1","0","-1","56434","105","56434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115141","6115141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483276819","1483213550","1","1","0","-1","63164","105","63164","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115592","6115592","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231313","1483231346","1483289926","1483231313","1","1","0","-1","58580","33","58580","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115607","6115607","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231326","1483231467","1483289924","1483231326","1","1","0","-1","58457","141","58457","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115617","6115617","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231337","1483231467","1483289927","1483231337","1","1","0","-1","58460","130","58460","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115621","6115621","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231342","1483231467","1483289926","1483231342","1","1","0","-1","58459","125","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115623","6115623","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231344","1483231467","1483289926","1483231344","1","1","0","-1","58459","123","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115651","6115651","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231596","1483231710","1483289927","1483231596","1","1","0","-1","58217","114","58217","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115652","6115652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231597","1483231710","1483289930","1483231597","1","1","0","-1","58220","113","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115654","6115654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231598","1483231710","1483289930","1483231598","1","1","0","-1","58220","112","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115655","6115655","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231599","1483231710","1483296505","1483231599","1","1","0","-1","64795","111","64795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115667","6115667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231611","1483231831","1483289931","1483231611","1","1","0","-1","58100","220","58100","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115671","6115671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231614","1483231831","1483289930","1483231614","1","1","0","-1","58099","217","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115673","6115673","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231616","1483231831","1483289930","1483231616","1","1","0","-1","58099","215","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115685","6115685","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231629","1483231953","1483289930","1483231629","1","1","0","-1","57977","324","57977","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115686","6115686","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231630","1483231953","1483294153","1483231630","1","1","0","-1","62200","323","62200","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115687","6115687","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231631","1483231953","1483289931","1483231631","1","1","0","-1","57978","322","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115689","6115689","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231632","1483231953","1483289931","1483231632","1","1","0","-1","57978","321","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115693","6115693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231655","1483231953","1483289931","1483231655","1","1","0","-1","57978","298","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115703","6115703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231665","1483231953","1483289934","1483231665","1","1","0","-1","57981","288","57981","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115721","6115721","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231682","1483232075","1483289934","1483231682","1","1","0","-1","57859","393","57859","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115724","6115724","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231686","1483232075","1483281980","1483231686","1","1","0","-1","49905","389","49905","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115782","6115782","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233674","1483233777","1483289923","1483233674","1","1","0","-1","56146","103","56146","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116066","6116066","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240665","1483240701","1483289916","1483240665","1","1","0","-1","49215","36","49215","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116085","6116085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240903","1483240975","1483289936","1483240903","1","1","0","-1","48961","72","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116087","6116087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240920","1483240975","1483289936","1483240920","1","1","0","-1","48961","55","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116368","6116368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243515","1483243602","1483289913","1483243515","1","1","0","-1","46311","87","46311","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116401","6116401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243520","1483243729","1483287616","1483243520","1","1","0","-1","43887","209","43887","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117507","6117507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250283","1483250340","1483289915","1483250283","1","1","0","-1","39575","57","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117508","6117508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250288","1483250340","1483289913","1483250288","1","1","0","-1","39573","52","39573","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117511","6117511","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250300","1483250340","1483289915","1483250300","1","1","0","-1","39575","40","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117527","6117527","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250326","1483250465","1483314554","1483250326","1","1","0","-1","64089","139","64089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117550","6117550","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250363","1483250465","1483301209","1483250363","1","1","0","-1","50744","102","50744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117554","6117554","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250370","1483250465","1483306007","1483250370","1","1","0","-1","55542","95","55542","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117563","6117563","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250392","1483250591","1483297322","1483250392","1","1","0","-1","46731","199","46731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6117578","6117578","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250429","1483250716","1483309722","1483250429","1","1","0","-1","59006","287","59006","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115287","6115287","Robertson","UTC","","Lapwing","Screwdriver","curry","1483220029","1483220083","1483256111","1483220029","1","1","0","-1","36028","54","36028","0","1:0","TIMEOUT","1","12000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115435","6115435","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225598","1483225654","1483261656","1483225598","1","1","0","-1","36002","56","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115436","6115436","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225613","1483225654","1483261656","1483225613","1","1","0","-1","36002","41","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115441","6115441","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225835","1483225897","1483261927","1483225835","1","1","0","-1","36030","62","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115444","6115444","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225916","1483226018","1483262048","1483225916","1","1","0","-1","36030","102","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115447","6115447","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226028","1483226138","1483262169","1483226028","1","1","0","-1","36031","110","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115449","6115449","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226097","1483226138","1483262169","1483226097","1","1","0","-1","36031","41","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115453","6115453","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226179","1483226259","1483262259","1483226179","1","1","0","-1","36000","80","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6115455","6115455","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226290","1483226380","1483262380","1483226290","1","1","0","-1","36000","90","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119918","6119918","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264431","1483264463","1483307674","1483264431","1","1","0","-1","43211","32","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119919","6119919","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264477","1483264584","1483307795","1483264477","1","1","0","-1","43211","107","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119920","6119920","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264523","1483264584","1483307795","1483264523","1","1","0","-1","43211","61","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119922","6119922","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264619","1483264704","1483307916","1483264619","1","1","0","-1","43212","85","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6119924","6119924","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264745","1483264825","1483308035","1483264745","1","1","0","-1","43210","80","43210","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1019938","1019938","Posidriv","UTC","","Bunting, Reed","Screwdriver","apple","1483242540","1483242591","1483293892","1483242540","1","8","0","-1","51301","51","410408","0","0:0","COMPLETED","8","2147486448Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1018813","1018813","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215252","1483215315","1483260424","1483215252","1","8","0","-1","45109","63","360872","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6115525[38]","6115642","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231587","1483278496","1483230137","1","12","0","-1","46909","1453","562908","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115298","6115298","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483220537","1483220568","1483256650","1483220537","6","72","0","-1","36082","31","2597904","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6113512","6113512","Robertson","UTC","","Crane","Screwdriver","curry","1483182608","1483183091","1483230785","1483182608","8","96","0","-1","47694","483","4578624","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6113518","6113518","Robertson","UTC","","Crane","Screwdriver","curry","1483183083","1483183459","1483231301","1483183083","8","96","0","-1","47842","376","4592832","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6114923","6114923","Robertson","UTC","","Crane","Screwdriver","curry","1483206575","1483206616","1483254675","1483206575","8","96","0","-1","48059","41","4613664","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6115525[56]","6115801","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483234019","1483281109","1483230137","1","12","0","-1","47090","3885","565080","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6115534[25]","6115869","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483237064","1483283961","1483230268","1","12","0","-1","46897","6799","562764","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116630[22]","6118522","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245072","1483256381","1483303137","1483245073","1","12","0","-1","46756","11309","561072","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[22]","6119148","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259973","1483306773","1483245145","1","12","0","-1","46800","14828","561600","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6116638[67]","6119553","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483262171","1483299336","1483245145","1","12","0","-1","37165","17026","445980","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6118546","6118546","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483256650","1483264221","1483300304","1483256650","6","72","0","-1","36083","7571","2597976","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6115641","6115641","Robertson","UTC","","Crane","Screwdriver","curry","1483231577","1483236943","1483284718","1483231577","8","96","0","-1","47775","5366","4586400","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6118367","6118367","Robertson","UTC","","Crane","Screwdriver","curry","1483255541","1483263737","1483311418","1483255541","8","96","0","-1","47681","8196","4577376","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["6115544[22]","6117893","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230419","1483252300","1483293906","1483230420","1","12","0","-1","41606","21881","499272","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"],["6112876","6112876","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483147452","1483170019","1483231575","1483147452","2","24","0","-1","61556","22567","1477344","0","0:0","COMPLETED","24","60000Mn","79200","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"],["6116000","6116000","Robertson","UTC","","Crane","Screwdriver","curry","1483238795","1483263616","1483311612","1483238795","8","96","0","-1","47996","24821","4607616","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"],["1005924","1005924","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","banana-cream","1483079071","1483178773","1483234032","1483079071","1","4","0","-1","55259","99702","221036","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["995612","995612","Posidriv","UTC","","Honey-buzzard","Screwdriver","blackberry","1482871620","1482871620","1483264213","1482871620","1","1","0","-1","392593","0","392593","0","0:0","COMPLETED","1","2147487648Mn","10800000","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999221","999221","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984433","1482984433","1483260983","1482984433","1","4","0","-1","276550","0","1106200","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999242","999242","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984771","1482984771","1483298329","1482984771","1","4","0","-1","313558","0","1254232","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999289","999289","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985634","1482985634","1483313872","1482985634","1","4","0","-1","328238","0","1312952","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["165381","165381","Phillips","UTC","","Chaffinch","Screwdriver","coconut-cream","1482869521","1482869521","1483301547","1482869521","8","64","0","-1","432026","0","27649664","0","1:0","TIMEOUT","64","8000Mn","432000","crumpet","Biological Sciences","Molecular Biosciences","Biophysics"],["6109335","6109335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106949","1483106978","1483229086","1483106949","1","1","0","-1","122108","29","122108","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109336","6109336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106950","1483106978","1483241323","1483106950","1","1","0","-1","134345","28","134345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109479","6109479","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107966","1483107993","1483237408","1483107966","1","1","0","-1","129415","27","129415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109481","6109481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107969","1483107993","1483232459","1483107969","1","1","0","-1","124466","24","124466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109482","6109482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107970","1483107993","1483233124","1483107970","1","1","0","-1","125131","23","125131","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109648","6109648","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110807","1483110827","1483238284","1483110807","1","1","0","-1","127457","20","127457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112989","6112989","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166796","1483166816","1483275917","1483166796","1","1","0","-1","109101","20","109101","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112990","6112990","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166797","1483166816","1483250594","1483166797","1","1","0","-1","83778","19","83778","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112991","6112991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166802","1483166816","1483251770","1483166802","1","1","0","-1","84954","14","84954","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112992","6112992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166806","1483166816","1483260779","1483166806","1","1","0","-1","93963","10","93963","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112993","6112993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483263895","1483166811","1","1","0","-1","97079","5","97079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112994","6112994","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483300191","1483166811","1","1","0","-1","133375","5","133375","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112995","6112995","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166812","1483166816","1483253854","1483166812","1","1","0","-1","87038","4","87038","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112996","6112996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166815","1483166816","1483240975","1483166815","1","1","0","-1","74159","1","74159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113062","6113062","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167402","1483167429","1483271686","1483167402","1","1","0","-1","104257","27","104257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113063","6113063","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167406","1483167429","1483303312","1483167406","1","1","0","-1","135883","23","135883","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113387","6113387","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171828","1483171856","1483245992","1483171828","1","1","0","-1","74136","28","74136","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113388","6113388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483305040","1483171835","1","1","0","-1","133184","21","133184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113389","6113389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483275724","1483171835","1","1","0","-1","103868","21","103868","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113390","6113390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171837","1483171856","1483236804","1483171837","1","1","0","-1","64948","19","64948","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113391","6113391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171839","1483171856","1483261370","1483171839","1","1","0","-1","89514","17","89514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113392","6113392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171845","1483171856","1483277008","1483171845","1","1","0","-1","105152","11","105152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113393","6113393","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171849","1483171856","1483269720","1483171849","1","1","0","-1","97864","7","97864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113840","6113840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200026","1483200053","1483268680","1483200026","1","1","0","-1","68627","27","68627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113841","6113841","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200029","1483200053","1483296754","1483200029","1","1","0","-1","96701","24","96701","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113843","6113843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200032","1483200053","1483290999","1483200032","1","1","0","-1","90946","21","90946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113844","6113844","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200034","1483200053","1483289923","1483200034","1","1","0","-1","89870","19","89870","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113846","6113846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200040","1483200053","1483310191","1483200040","1","1","0","-1","110138","13","110138","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113847","6113847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200044","1483200053","1483301176","1483200044","1","1","0","-1","101123","9","101123","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113848","6113848","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200047","1483200053","1483308043","1483200047","1","1","0","-1","107990","6","107990","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114033","6114033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201123","1483201151","1483286885","1483201123","1","1","0","-1","85734","28","85734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114034","6114034","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201127","1483201151","1483287672","1483201127","1","1","0","-1","86521","24","86521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114035","6114035","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201130","1483201151","1483291125","1483201130","1","1","0","-1","89974","21","89974","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114452","6114452","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204166","1483204193","1483301479","1483204166","1","1","0","-1","97286","27","97286","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114453","6114453","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204168","1483204193","1483282778","1483204168","1","1","0","-1","78585","25","78585","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114454","6114454","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204171","1483204193","1483277750","1483204171","1","1","0","-1","73557","22","73557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114455","6114455","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204174","1483204193","1483289915","1483204174","1","1","0","-1","85722","19","85722","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114457","6114457","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204179","1483204193","1483310949","1483204179","1","1","0","-1","106756","14","106756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114458","6114458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204181","1483204193","1483306489","1483204181","1","1","0","-1","102296","12","102296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114459","6114459","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204182","1483204193","1483289922","1483204182","1","1","0","-1","85729","11","85729","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114460","6114460","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204183","1483204193","1483300363","1483204183","1","1","0","-1","96170","10","96170","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114849","6114849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206228","1483206254","1483300042","1483206228","1","1","0","-1","93788","26","93788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114852","6114852","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206242","1483206254","1483296160","1483206242","1","1","0","-1","89906","12","89906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114853","6114853","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206247","1483206254","1483303604","1483206247","1","1","0","-1","97350","7","97350","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114925","6114925","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207464","1483207469","1483315068","1483207464","1","1","0","-1","107599","5","107599","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115113","6115113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213507","1483213534","1483308024","1483213507","1","1","0","-1","94490","27","94490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115114","6115114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213511","1483213534","1483295328","1483213511","1","1","0","-1","81794","23","81794","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115116","6115116","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213517","1483213534","1483297718","1483213517","1","1","0","-1","84184","17","84184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115120","6115120","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213529","1483213534","1483310606","1483213529","1","1","0","-1","97072","5","97072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115121","6115121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213533","1483213534","1483279893","1483213533","1","1","0","-1","66359","1","66359","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115598","6115598","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231319","1483231346","1483312600","1483231319","1","1","0","-1","81254","27","81254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108027[4]","6108031","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483302591","1483046357","1","1","0","-1","256219","15","256219","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[5]","6108032","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[6]","6108033","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[7]","6108034","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[8]","6108035","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[9]","6108036","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[10]","6108037","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[11]","6108038","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[13]","6108040","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[14]","6108041","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[15]","6108042","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[16]","6108043","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[17]","6108044","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483303689","1483046357","1","1","0","-1","257317","15","257317","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[18]","6108045","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[19]","6108046","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483278569","1483046357","1","1","0","-1","232197","15","232197","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["1003355","1003355","Posidriv","UTC","","Thrush, Grey-cheeked","Screwdriver","boysenberry","1483042952","1483042968","1483292265","1483042952","1","2","0","-1","249297","16","498594","0","0:0","COMPLETED","2","10000Mn","864600","barm","Engineering","Electrical and Communication Systems","Solid-State and Microstructures"],["999183","999183","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983884","1482983885","1483300262","1482983884","1","4","0","-1","316377","1","1265508","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999188","999188","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983954","1482983955","1483310084","1482983954","1","4","0","-1","326129","1","1304516","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["999254","999254","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985000","1482985003","1483255914","1482985000","1","4","0","-1","270911","3","1083644","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005888","1005888","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078681","1483078683","1483278101","1483078681","1","4","0","-1","199418","2","797672","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005890","1005890","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078715","1483078716","1483241139","1483078715","1","4","0","-1","162423","1","649692","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005900","1005900","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078793","1483078794","1483288500","1483078793","1","4","0","-1","209706","1","838824","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1005907","1005907","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078870","1483078874","1483244477","1483078870","1","4","0","-1","165603","4","662412","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"],["1012029","1012029","Posidriv","UTC","","Fieldfare","Screwdriver","butter","1483157560","1483157563","1483243989","1483157560","1","8","0","-1","86426","3","691408","0","1:0","TIMEOUT","8","2147490048Mn","86400","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["995583","995583","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483143988","1483143991","1483272379","1483143988","1","8","0","-1","128388","3","1027104","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995627","995627","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483283156","1483144111","1","8","0","-1","139039","6","1112312","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995628","995628","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483274205","1483144111","1","8","0","-1","130088","6","1040704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995629","995629","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144119","1483275459","1483144112","1","8","0","-1","131340","7","1050720","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995630","995630","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144120","1483275145","1483144112","1","8","0","-1","131025","8","1048200","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995631","995631","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483287078","1483144112","1","8","0","-1","142956","10","1143648","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995632","995632","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483285810","1483144112","1","8","0","-1","141688","10","1133504","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995633","995633","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144124","1483274960","1483144112","1","8","0","-1","130836","12","1046688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995634","995634","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144125","1483275348","1483144112","1","8","0","-1","131223","13","1049784","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995635","995635","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144127","1483272663","1483144112","1","8","0","-1","128536","15","1028288","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995636","995636","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144128","1483276578","1483144112","1","8","0","-1","132450","16","1059600","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995637","995637","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144130","1483285036","1483144113","1","8","0","-1","140906","17","1127248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995638","995638","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144131","1483274399","1483144113","1","8","0","-1","130268","18","1042144","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995639","995639","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483290495","1483144113","1","8","0","-1","146362","20","1170896","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995640","995640","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483278084","1483144113","1","8","0","-1","133951","20","1071608","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995641","995641","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483270417","1483144113","1","8","0","-1","126281","23","1010248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995642","995642","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483275165","1483144113","1","8","0","-1","131029","23","1048232","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995643","995643","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144138","1483275003","1483144113","1","8","0","-1","130865","25","1046920","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995644","995644","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144139","1483284417","1483144113","1","8","0","-1","140278","26","1122224","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995645","995645","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144141","1483273977","1483144113","1","8","0","-1","129836","28","1038688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995646","995646","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144142","1483281314","1483144114","1","8","0","-1","137172","28","1097376","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["163485","163485","Phillips","UTC","","Oriole, Baltimore","Screwdriver","chestnut","1482390912","1482390913","1483303339","1482390912","1","12","2","-1","912426","1","10949112","1824852","0:0","CANCELLED by 380693","12","31000Mn","3247200","focaccia","Biological Sciences","Molecular Biosciences","Biophysics"],["964693","964693","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483244230","1482955559","1","16","0","-1","288669","2","4618704","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964694","964694","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483245344","1482955559","1","16","0","-1","289783","2","4636528","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["2286681","2286681","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483159130","1483159136","1483238310","1483159130","1","16","0","-1","79174","6","1266784","0","0:0","COMPLETED","8","2147486648Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2288753","2288753","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483169234","1483169236","1483282760","1483169234","1","16","0","-1","113524","2","1816384","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["2289004","2289004","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483170485","1483170487","1483261366","1483170485","1","16","0","-1","90879","2","1454064","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1009531","1009531","Posidriv","UTC","","Shag","Screwdriver","apple","1483125690","1483125694","1483246634","1483125690","1","24","0","-1","120940","4","2902560","0","0:0","COMPLETED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6106081","6106081","Robertson","UTC","","Moorhen","Screwdriver","curry","1482980903","1482980942","1483240261","1482980903","1","1","0","-1","259319","39","259319","0","1:0","TIMEOUT","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108682","6108682","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071799","1483072045","1483253984","1483071799","1","1","0","-1","181939","246","181939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108706","6108706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071825","1483072181","1483229663","1483071825","1","1","0","-1","157482","356","157482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108707","6108707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071827","1483072181","1483230693","1483071827","1","1","0","-1","158512","354","158512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109226","6109226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483230934","1483106095","1","1","0","-1","124720","119","124720","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109229","6109229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483248678","1483106095","1","1","0","-1","142464","119","142464","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109239","6109239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106214","1483241753","1483106096","1","1","0","-1","135539","118","135539","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109242","6109242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483263234","1483106096","1","1","0","-1","156892","246","156892","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109246","6109246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483246507","1483106096","1","1","0","-1","140165","246","140165","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109247","6109247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483235218","1483106096","1","1","0","-1","128876","246","128876","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109255","6109255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483252066","1483106096","1","1","0","-1","145724","246","145724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109256","6109256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483234006","1483106097","1","1","0","-1","127664","245","127664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109257","6109257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483232072","1483106097","1","1","0","-1","125730","245","125730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109258","6109258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483242337","1483106097","1","1","0","-1","135995","245","135995","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109261","6109261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234289","1483106097","1","1","0","-1","127820","372","127820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109262","6109262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483235964","1483106097","1","1","0","-1","129495","372","129495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109264","6109264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483274649","1483106097","1","1","0","-1","168180","372","168180","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109266","6109266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483238533","1483106097","1","1","0","-1","132064","372","132064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109268","6109268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234473","1483106097","1","1","0","-1","128004","372","128004","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109269","6109269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483252479","1483106097","1","1","0","-1","146010","372","146010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109275","6109275","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483246648","1483106098","1","1","0","-1","140179","371","140179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109277","6109277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483241385","1483106098","1","1","0","-1","134916","371","134916","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109279","6109279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483253169","1483106098","1","1","0","-1","146700","371","146700","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109280","6109280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289888","1483106098","1","1","0","-1","183291","499","183291","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109282","6109282","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483229396","1483106098","1","1","0","-1","122799","499","122799","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109283","6109283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289887","1483106098","1","1","0","-1","183290","499","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109285","6109285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106141","1483106597","1483289889","1483106141","1","1","0","-1","183292","456","183292","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109287","6109287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106145","1483106597","1483289887","1483106145","1","1","0","-1","183290","452","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109288","6109288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106147","1483106597","1483289891","1483106147","1","1","0","-1","183294","450","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109290","6109290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106153","1483106597","1483246847","1483106153","1","1","0","-1","140250","444","140250","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109293","6109293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106156","1483106597","1483289893","1483106156","1","1","0","-1","183296","441","183296","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109294","6109294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106158","1483106597","1483289891","1483106158","1","1","0","-1","183294","439","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109296","6109296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106162","1483106597","1483289892","1483106162","1","1","0","-1","183295","435","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109297","6109297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106165","1483106597","1483289892","1483106165","1","1","0","-1","183295","432","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109303","6109303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106178","1483106724","1483233322","1483106178","1","1","0","-1","126598","546","126598","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109305","6109305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106181","1483106724","1483247835","1483106181","1","1","0","-1","141111","543","141111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109312","6109312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106192","1483106724","1483243302","1483106192","1","1","0","-1","136578","532","136578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109321","6109321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106919","1483106978","1483262786","1483106919","1","1","0","-1","155808","59","155808","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109327","6109327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106934","1483106978","1483236315","1483106934","1","1","0","-1","129337","44","129337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109329","6109329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106936","1483106978","1483241600","1483106936","1","1","0","-1","134622","42","134622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109332","6109332","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106944","1483106978","1483231757","1483106944","1","1","0","-1","124779","34","124779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109339","6109339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106954","1483107104","1483264536","1483106954","1","1","0","-1","157432","150","157432","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109347","6109347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106985","1483107104","1483241640","1483106985","1","1","0","-1","134536","119","134536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109348","6109348","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106986","1483107104","1483229938","1483106986","1","1","0","-1","122834","118","122834","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109351","6109351","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483258633","1483106989","1","1","0","-1","151529","115","151529","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109353","6109353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483243386","1483106989","1","1","0","-1","136282","115","136282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109356","6109356","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483251312","1483106990","1","1","0","-1","144208","114","144208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109357","6109357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483241610","1483106990","1","1","0","-1","134506","114","134506","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109359","6109359","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289895","1483106990","1","1","0","-1","182665","240","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109360","6109360","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109361","6109361","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109362","6109362","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289893","1483106990","1","1","0","-1","182663","240","182663","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109365","6109365","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107051","1483107230","1483289895","1483107051","1","1","0","-1","182665","179","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109368","6109368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107057","1483107230","1483229404","1483107057","1","1","0","-1","122174","173","122174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109369","6109369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107059","1483107230","1483237756","1483107059","1","1","0","-1","130526","171","130526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109370","6109370","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107060","1483107230","1483241929","1483107060","1","1","0","-1","134699","170","134699","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109371","6109371","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107063","1483107230","1483289896","1483107063","1","1","0","-1","182666","167","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109372","6109372","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107065","1483107230","1483238813","1483107065","1","1","0","-1","131583","165","131583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109373","6109373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107067","1483107230","1483289896","1483107067","1","1","0","-1","182666","163","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109374","6109374","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107073","1483107230","1483289898","1483107073","1","1","0","-1","182668","157","182668","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109376","6109376","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107078","1483107230","1483289894","1483107078","1","1","0","-1","182664","152","182664","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109378","6109378","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107082","1483107357","1483289905","1483107082","1","1","0","-1","182548","275","182548","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109381","6109381","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107088","1483107357","1483289913","1483107088","1","1","0","-1","182556","269","182556","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109386","6109386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107097","1483107357","1483245580","1483107097","1","1","0","-1","138223","260","138223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109388","6109388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107108","1483107357","1483289902","1483107108","1","1","0","-1","182545","249","182545","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109390","6109390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107112","1483107357","1483289903","1483107112","1","1","0","-1","182546","245","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109391","6109391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107113","1483107357","1483289903","1483107113","1","1","0","-1","182546","244","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109392","6109392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107114","1483107357","1483289901","1483107114","1","1","0","-1","182544","243","182544","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109397","6109397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107357","1483289904","1483107116","1","1","0","-1","182547","241","182547","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109398","6109398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289901","1483107116","1","1","0","-1","182417","368","182417","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109399","6109399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289902","1483107116","1","1","0","-1","182418","368","182418","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109400","6109400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289910","1483107117","1","1","0","-1","182426","367","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109401","6109401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289904","1483107117","1","1","0","-1","182420","367","182420","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109405","6109405","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483249260","1483107117","1","1","0","-1","141776","367","141776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109409","6109409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107209","1483107484","1483289909","1483107209","1","1","0","-1","182425","275","182425","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109410","6109410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107212","1483107484","1483289912","1483107212","1","1","0","-1","182428","272","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109413","6109413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107217","1483107484","1483289908","1483107217","1","1","0","-1","182424","267","182424","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109414","6109414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107219","1483107484","1483245969","1483107219","1","1","0","-1","138485","265","138485","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109415","6109415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107220","1483107484","1483289911","1483107220","1","1","0","-1","182427","264","182427","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109417","6109417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107223","1483107484","1483289912","1483107223","1","1","0","-1","182428","261","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109418","6109418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107224","1483107484","1483289910","1483107224","1","1","0","-1","182426","260","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109421","6109421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107234","1483107611","1483289911","1483107234","1","1","0","-1","182300","377","182300","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109426","6109426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483289914","1483107242","1","1","0","-1","182303","369","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109427","6109427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483232979","1483107242","1","1","0","-1","125368","369","125368","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109429","6109429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107243","1483107611","1483289915","1483107243","1","1","0","-1","182304","368","182304","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109430","6109430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107244","1483107611","1483289914","1483107244","1","1","0","-1","182303","367","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109434","6109434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483289919","1483107246","1","1","0","-1","182308","365","182308","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109436","6109436","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483230736","1483107246","1","1","0","-1","123125","365","123125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109462","6109462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107279","1483107867","1483230650","1483107279","1","1","0","-1","122783","588","122783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109463","6109463","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107280","1483107867","1483231234","1483107280","1","1","0","-1","123367","587","123367","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109464","6109464","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107282","1483107867","1483245514","1483107282","1","1","0","-1","137647","585","137647","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109471","6109471","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107953","1483107993","1483244309","1483107953","1","1","0","-1","136316","40","136316","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109472","6109472","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107955","1483107993","1483235249","1483107955","1","1","0","-1","127256","38","127256","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109475","6109475","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107962","1483107993","1483237298","1483107962","1","1","0","-1","129305","31","129305","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109492","6109492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107980","1483108122","1483267363","1483107980","1","1","0","-1","159241","142","159241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109500","6109500","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107996","1483108122","1483233557","1483107996","1","1","0","-1","125435","126","125435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109503","6109503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108001","1483108122","1483268237","1483108001","1","1","0","-1","160115","121","160115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109508","6109508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108004","1483108122","1483289925","1483108004","1","1","0","-1","181803","118","181803","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109509","6109509","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289925","1483108005","1","1","0","-1","181674","246","181674","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109510","6109510","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289923","1483108005","1","1","0","-1","181672","246","181672","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109638","6109638","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110753","1483110827","1483253473","1483110753","1","1","0","-1","142646","74","142646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109639","6109639","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110766","1483110827","1483231980","1483110766","1","1","0","-1","121153","61","121153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109640","6109640","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110772","1483110827","1483233548","1483110772","1","1","0","-1","122721","55","122721","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109650","6109650","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110825","1483110966","1483243888","1483110825","1","1","0","-1","132922","141","132922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109652","6109652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483286003","1483110837","1","1","0","-1","175037","129","175037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109653","6109653","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483242588","1483110837","1","1","0","-1","131622","129","131622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109654","6109654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483258143","1483110838","1","1","0","-1","147177","128","147177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109658","6109658","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483238119","1483110838","1","1","0","-1","127153","128","127153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109662","6109662","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483232478","1483110838","1","1","0","-1","121512","128","121512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109665","6109665","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483229790","1483110838","1","1","0","-1","118824","128","118824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109672","6109672","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483111106","1483230425","1483110838","1","1","0","-1","119319","268","119319","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109753","6109753","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115946","1483116096","1483258108","1483115946","1","1","0","-1","142012","150","142012","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109754","6109754","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115951","1483116096","1483235370","1483115951","1","1","0","-1","119274","145","119274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109757","6109757","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115977","1483116096","1483251632","1483115977","1","1","0","-1","135536","119","135536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109758","6109758","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115980","1483116096","1483255305","1483115980","1","1","0","-1","139209","116","139209","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109759","6109759","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115985","1483116096","1483250118","1483115985","1","1","0","-1","134022","111","134022","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109761","6109761","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115993","1483116096","1483271931","1483115993","1","1","0","-1","155835","103","155835","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109762","6109762","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115994","1483116096","1483246583","1483115994","1","1","0","-1","130487","102","130487","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109767","6109767","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116007","1483116096","1483230486","1483116007","1","1","0","-1","114390","89","114390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109769","6109769","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116015","1483116096","1483245034","1483116015","1","1","0","-1","128938","81","128938","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109770","6109770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116024","1483116096","1483236198","1483116024","1","1","0","-1","120102","72","120102","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109771","6109771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116028","1483116096","1483231793","1483116028","1","1","0","-1","115697","68","115697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109775","6109775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116041","1483116228","1483234292","1483116041","1","1","0","-1","118064","187","118064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109778","6109778","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116059","1483116228","1483246444","1483116059","1","1","0","-1","130216","169","130216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109781","6109781","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116068","1483116228","1483243361","1483116068","1","1","0","-1","127133","160","127133","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109783","6109783","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116072","1483116228","1483233855","1483116072","1","1","0","-1","117627","156","117627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109787","6109787","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116095","1483116228","1483231353","1483116095","1","1","0","-1","115125","133","115125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109791","6109791","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483232771","1483116103","1","1","0","-1","116412","256","116412","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109795","6109795","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483234692","1483116103","1","1","0","-1","118333","256","118333","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109798","6109798","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483228870","1483116103","1","1","0","-1","112511","256","112511","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109800","6109800","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483284703","1483116103","1","1","0","-1","168344","256","168344","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109801","6109801","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483242068","1483116103","1","1","0","-1","125709","256","125709","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109803","6109803","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483237154","1483116103","1","1","0","-1","120795","256","120795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109807","6109807","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116359","1483248120","1483116104","1","1","0","-1","131761","255","131761","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6109810","6109810","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116491","1483253533","1483116104","1","1","0","-1","137042","387","137042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112980","6112980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166761","1483166816","1483269042","1483166761","1","1","0","-1","102226","55","102226","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112981","6112981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166766","1483166816","1483277010","1483166766","1","1","0","-1","110194","50","110194","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112982","6112982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166770","1483166816","1483252858","1483166770","1","1","0","-1","86042","46","86042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112984","6112984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166772","1483166816","1483282075","1483166772","1","1","0","-1","115259","44","115259","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112985","6112985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166775","1483166816","1483254115","1483166775","1","1","0","-1","87299","41","87299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112986","6112986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166783","1483166816","1483287587","1483166783","1","1","0","-1","120771","33","120771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112997","6112997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166817","1483166939","1483274727","1483166817","1","1","0","-1","107788","122","107788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6112998","6112998","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166820","1483166939","1483252870","1483166820","1","1","0","-1","85931","119","85931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113000","6113000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166828","1483166939","1483280682","1483166828","1","1","0","-1","113743","111","113743","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113001","6113001","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166829","1483166939","1483244723","1483166829","1","1","0","-1","77784","110","77784","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113002","6113002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483242282","1483166832","1","1","0","-1","75343","107","75343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113003","6113003","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483238850","1483166832","1","1","0","-1","71911","107","71911","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113004","6113004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166833","1483166939","1483253762","1483166833","1","1","0","-1","86823","106","86823","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113005","6113005","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166837","1483166939","1483296234","1483166837","1","1","0","-1","129295","102","129295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113006","6113006","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166838","1483166939","1483299753","1483166838","1","1","0","-1","132814","101","132814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113007","6113007","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166840","1483166939","1483273960","1483166840","1","1","0","-1","107021","99","107021","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113008","6113008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166843","1483166939","1483286860","1483166843","1","1","0","-1","119921","96","119921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113009","6113009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166848","1483166939","1483257045","1483166848","1","1","0","-1","90106","91","90106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113010","6113010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166850","1483166939","1483282969","1483166850","1","1","0","-1","116030","89","116030","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113011","6113011","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166853","1483166939","1483258397","1483166853","1","1","0","-1","91458","86","91458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113012","6113012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166856","1483166939","1483261381","1483166856","1","1","0","-1","94442","83","94442","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113013","6113013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166857","1483166939","1483251883","1483166857","1","1","0","-1","84944","82","84944","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113015","6113015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166863","1483166939","1483282852","1483166863","1","1","0","-1","115913","76","115913","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113016","6113016","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166866","1483166939","1483282200","1483166866","1","1","0","-1","115261","73","115261","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113017","6113017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166869","1483167061","1483283954","1483166869","1","1","0","-1","116893","192","116893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113018","6113018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166873","1483167061","1483260846","1483166873","1","1","0","-1","93785","188","93785","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113019","6113019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166877","1483167061","1483241935","1483166877","1","1","0","-1","74874","184","74874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113020","6113020","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166879","1483167061","1483272397","1483166879","1","1","0","-1","105336","182","105336","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113021","6113021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166883","1483167061","1483261988","1483166883","1","1","0","-1","94927","178","94927","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113022","6113022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166886","1483167061","1483264570","1483166886","1","1","0","-1","97509","175","97509","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113023","6113023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166890","1483167061","1483277325","1483166890","1","1","0","-1","110264","171","110264","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113024","6113024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483272893","1483166892","1","1","0","-1","105832","169","105832","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113025","6113025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483254681","1483166892","1","1","0","-1","87620","169","87620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113026","6113026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166899","1483167061","1483277041","1483166899","1","1","0","-1","109980","162","109980","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113027","6113027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166900","1483167061","1483270355","1483166900","1","1","0","-1","103294","161","103294","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113028","6113028","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166904","1483167061","1483276308","1483166904","1","1","0","-1","109247","157","109247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113029","6113029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166911","1483167061","1483254926","1483166911","1","1","0","-1","87865","150","87865","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113030","6113030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166913","1483167061","1483241324","1483166913","1","1","0","-1","74263","148","74263","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113031","6113031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483253485","1483166917","1","1","0","-1","86424","144","86424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113032","6113032","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483260120","1483166917","1","1","0","-1","93059","144","93059","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113033","6113033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166921","1483167061","1483287820","1483166921","1","1","0","-1","120759","140","120759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113045","6113045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167347","1483167429","1483249508","1483167347","1","1","0","-1","82079","82","82079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113046","6113046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167348","1483167429","1483269724","1483167348","1","1","0","-1","102295","81","102295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113047","6113047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167353","1483167429","1483262520","1483167353","1","1","0","-1","95091","76","95091","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113048","6113048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167357","1483167429","1483252056","1483167357","1","1","0","-1","84627","72","84627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113049","6113049","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167361","1483167429","1483284840","1483167361","1","1","0","-1","117411","68","117411","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113050","6113050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167367","1483167429","1483289687","1483167367","1","1","0","-1","122258","62","122258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113051","6113051","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167370","1483167429","1483276792","1483167370","1","1","0","-1","109363","59","109363","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113052","6113052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167374","1483167429","1483289052","1483167374","1","1","0","-1","121623","55","121623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113053","6113053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167376","1483167429","1483257249","1483167376","1","1","0","-1","89820","53","89820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113054","6113054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167378","1483167429","1483279828","1483167378","1","1","0","-1","112399","51","112399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113056","6113056","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167383","1483167429","1483267303","1483167383","1","1","0","-1","99874","46","99874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113057","6113057","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167387","1483167429","1483289725","1483167387","1","1","0","-1","122296","42","122296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113058","6113058","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167390","1483167429","1483285489","1483167390","1","1","0","-1","118060","39","118060","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113059","6113059","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167391","1483167429","1483283086","1483167391","1","1","0","-1","115657","38","115657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113060","6113060","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167393","1483167429","1483288387","1483167393","1","1","0","-1","120958","36","120958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113061","6113061","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167396","1483167429","1483286008","1483167396","1","1","0","-1","118579","33","118579","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113064","6113064","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167412","1483167551","1483247709","1483167412","1","1","0","-1","80158","139","80158","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113067","6113067","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167420","1483167551","1483271720","1483167420","1","1","0","-1","104169","131","104169","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113068","6113068","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167422","1483167551","1483252894","1483167422","1","1","0","-1","85343","129","85343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113069","6113069","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167426","1483167551","1483236395","1483167426","1","1","0","-1","68844","125","68844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113070","6113070","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167427","1483167551","1483269724","1483167427","1","1","0","-1","102173","124","102173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113071","6113071","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167434","1483167551","1483276511","1483167434","1","1","0","-1","108960","117","108960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113072","6113072","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167439","1483167551","1483287282","1483167439","1","1","0","-1","119731","112","119731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113073","6113073","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167442","1483167551","1483240264","1483167442","1","1","0","-1","72713","109","72713","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113075","6113075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167467","1483167551","1483285724","1483167467","1","1","0","-1","118173","84","118173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113076","6113076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167469","1483167551","1483255688","1483167469","1","1","0","-1","88137","82","88137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113077","6113077","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167474","1483167551","1483265025","1483167474","1","1","0","-1","97474","77","97474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113078","6113078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167475","1483167551","1483277565","1483167475","1","1","0","-1","110014","76","110014","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113079","6113079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167479","1483167551","1483252844","1483167479","1","1","0","-1","85293","72","85293","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113080","6113080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167482","1483167551","1483267395","1483167482","1","1","0","-1","99844","69","99844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113081","6113081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167483","1483167551","1483247894","1483167483","1","1","0","-1","80343","68","80343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113082","6113082","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167488","1483167551","1483266857","1483167488","1","1","0","-1","99306","63","99306","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113083","6113083","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167491","1483167551","1483280930","1483167491","1","1","0","-1","113379","60","113379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113085","6113085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167496","1483167673","1483275845","1483167496","1","1","0","-1","108172","177","108172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113087","6113087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167501","1483167673","1483305397","1483167501","1","1","0","-1","137724","172","137724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113088","6113088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167504","1483167673","1483270191","1483167504","1","1","0","-1","102518","169","102518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113090","6113090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167508","1483167673","1483268894","1483167508","1","1","0","-1","101221","165","101221","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113092","6113092","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167512","1483167673","1483284147","1483167512","1","1","0","-1","116474","161","116474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113094","6113094","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167514","1483167673","1483254050","1483167514","1","1","0","-1","86377","159","86377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113096","6113096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167517","1483167673","1483289060","1483167517","1","1","0","-1","121387","156","121387","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113097","6113097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167522","1483167673","1483277050","1483167522","1","1","0","-1","109377","151","109377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113103","6113103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167527","1483167796","1483295885","1483167527","1","1","0","-1","128089","269","128089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113107","6113107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167534","1483167796","1483279842","1483167534","1","1","0","-1","112046","262","112046","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113110","6113110","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167539","1483167796","1483266565","1483167539","1","1","0","-1","98769","257","98769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113112","6113112","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167547","1483167796","1483304454","1483167547","1","1","0","-1","136658","249","136658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113113","6113113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483274486","1483167548","1","1","0","-1","106690","248","106690","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113114","6113114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483291393","1483167548","1","1","0","-1","123597","248","123597","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113117","6113117","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167558","1483167796","1483282424","1483167558","1","1","0","-1","114628","238","114628","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113118","6113118","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167559","1483167796","1483277894","1483167559","1","1","0","-1","110098","237","110098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113121","6113121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167796","1483262321","1483167566","1","1","0","-1","94525","230","94525","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113123","6113123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483258416","1483167566","1","1","0","-1","90497","353","90497","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113125","6113125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483262483","1483167566","1","1","0","-1","94564","353","94564","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113127","6113127","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483289062","1483167566","1","1","0","-1","121143","353","121143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113129","6113129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483283172","1483167566","1","1","0","-1","115253","353","115253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113131","6113131","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483277853","1483167566","1","1","0","-1","109934","353","109934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113133","6113133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483276426","1483167566","1","1","0","-1","108507","353","108507","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113135","6113135","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483311360","1483167566","1","1","0","-1","143441","353","143441","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113137","6113137","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483266989","1483167566","1","1","0","-1","99070","353","99070","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113139","6113139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483275956","1483167566","1","1","0","-1","108037","353","108037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113141","6113141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483246072","1483167566","1","1","0","-1","78028","478","78028","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113142","6113142","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483284006","1483167566","1","1","0","-1","115962","478","115962","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113143","6113143","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483274130","1483167566","1","1","0","-1","106086","478","106086","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113144","6113144","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483276701","1483167566","1","1","0","-1","108657","478","108657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113146","6113146","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167591","1483168044","1483261530","1483167591","1","1","0","-1","93486","453","93486","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113147","6113147","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167594","1483168044","1483303854","1483167594","1","1","0","-1","135810","450","135810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113148","6113148","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167597","1483168044","1483256318","1483167597","1","1","0","-1","88274","447","88274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113149","6113149","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167599","1483168044","1483290785","1483167599","1","1","0","-1","122741","445","122741","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113151","6113151","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167605","1483168044","1483269603","1483167605","1","1","0","-1","101559","439","101559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113152","6113152","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167611","1483168044","1483291276","1483167611","1","1","0","-1","123232","433","123232","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113153","6113153","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167614","1483168044","1483264572","1483167614","1","1","0","-1","96528","430","96528","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113154","6113154","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167619","1483168044","1483292496","1483167619","1","1","0","-1","124452","425","124452","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113156","6113156","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167628","1483168044","1483277962","1483167628","1","1","0","-1","109918","416","109918","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113157","6113157","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167633","1483168044","1483252324","1483167633","1","1","0","-1","84280","411","84280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113158","6113158","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167638","1483168044","1483298762","1483167638","1","1","0","-1","130718","406","130718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113160","6113160","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167643","1483168044","1483260002","1483167643","1","1","0","-1","91958","401","91958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113161","6113161","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167647","1483168167","1483259657","1483167647","1","1","0","-1","91490","520","91490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113162","6113162","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167651","1483168167","1483284026","1483167651","1","1","0","-1","115859","516","115859","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113163","6113163","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483277512","1483167655","1","1","0","-1","109345","512","109345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113164","6113164","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483242064","1483167655","1","1","0","-1","73897","512","73897","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113165","6113165","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167659","1483168167","1483280729","1483167659","1","1","0","-1","112562","508","112562","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113166","6113166","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167661","1483168167","1483268600","1483167661","1","1","0","-1","100433","506","100433","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113167","6113167","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167668","1483168167","1483272750","1483167668","1","1","0","-1","104583","499","104583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113170","6113170","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167669","1483168167","1483271667","1483167669","1","1","0","-1","103500","498","103500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113172","6113172","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167672","1483168167","1483291830","1483167672","1","1","0","-1","123663","495","123663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113173","6113173","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167678","1483168167","1483310057","1483167678","1","1","0","-1","141890","489","141890","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113174","6113174","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167681","1483168167","1483234338","1483167681","1","1","0","-1","66171","486","66171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113175","6113175","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167684","1483168167","1483259402","1483167684","1","1","0","-1","91235","483","91235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113176","6113176","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167686","1483168167","1483270020","1483167686","1","1","0","-1","101853","481","101853","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113177","6113177","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167690","1483168167","1483284736","1483167690","1","1","0","-1","116569","477","116569","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113178","6113178","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167693","1483168167","1483267110","1483167693","1","1","0","-1","98943","474","98943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113179","6113179","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167694","1483168167","1483264504","1483167694","1","1","0","-1","96337","473","96337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113180","6113180","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167697","1483168167","1483306467","1483167697","1","1","0","-1","138300","470","138300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113181","6113181","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167701","1483168167","1483274669","1483167701","1","1","0","-1","106502","466","106502","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113182","6113182","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167704","1483168167","1483259110","1483167704","1","1","0","-1","90943","463","90943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113183","6113183","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167707","1483168293","1483284336","1483167707","1","1","0","-1","116043","586","116043","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113184","6113184","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167711","1483168293","1483279445","1483167711","1","1","0","-1","111152","582","111152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113186","6113186","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167717","1483168293","1483259448","1483167717","1","1","0","-1","91155","576","91155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113187","6113187","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167719","1483168293","1483241550","1483167719","1","1","0","-1","73257","574","73257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113188","6113188","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167721","1483168293","1483291051","1483167721","1","1","0","-1","122758","572","122758","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113189","6113189","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167724","1483168293","1483271123","1483167724","1","1","0","-1","102830","569","102830","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113190","6113190","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167734","1483168293","1483254905","1483167734","1","1","0","-1","86612","559","86612","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113191","6113191","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167745","1483168293","1483246951","1483167745","1","1","0","-1","78658","548","78658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113192","6113192","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167748","1483168293","1483302566","1483167748","1","1","0","-1","134273","545","134273","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113193","6113193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167752","1483168293","1483297364","1483167752","1","1","0","-1","129071","541","129071","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113194","6113194","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167755","1483168293","1483310708","1483167755","1","1","0","-1","142415","538","142415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113195","6113195","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167759","1483168293","1483290930","1483167759","1","1","0","-1","122637","534","122637","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113197","6113197","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167766","1483168293","1483267912","1483167766","1","1","0","-1","99619","527","99619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113198","6113198","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167770","1483168293","1483274580","1483167770","1","1","0","-1","106287","523","106287","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113200","6113200","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167802","1483168293","1483303506","1483167802","1","1","0","-1","135213","491","135213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113201","6113201","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167805","1483168293","1483276261","1483167805","1","1","0","-1","107968","488","107968","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113202","6113202","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167809","1483168293","1483261686","1483167809","1","1","0","-1","93393","484","93393","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113203","6113203","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167812","1483168417","1483279694","1483167812","1","1","0","-1","111277","605","111277","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113204","6113204","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167818","1483168417","1483308104","1483167818","1","1","0","-1","139687","599","139687","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113205","6113205","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167820","1483168541","1483245671","1483167820","1","1","0","-1","77130","721","77130","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113206","6113206","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167822","1483168418","1483286459","1483167822","1","1","0","-1","118041","596","118041","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113207","6113207","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167827","1483168418","1483262590","1483167827","1","1","0","-1","94172","591","94172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113208","6113208","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167834","1483168418","1483280349","1483167834","1","1","0","-1","111931","584","111931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113209","6113209","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167836","1483168418","1483247171","1483167836","1","1","0","-1","78753","582","78753","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113210","6113210","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167839","1483168418","1483259214","1483167839","1","1","0","-1","90796","579","90796","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113211","6113211","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167841","1483168418","1483264389","1483167841","1","1","0","-1","95971","577","95971","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113212","6113212","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167842","1483168418","1483282201","1483167842","1","1","0","-1","113783","576","113783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113213","6113213","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167847","1483168418","1483277299","1483167847","1","1","0","-1","108881","571","108881","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113214","6113214","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167848","1483168418","1483307529","1483167848","1","1","0","-1","139111","570","139111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113215","6113215","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167852","1483168418","1483246671","1483167852","1","1","0","-1","78253","566","78253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113217","6113217","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167855","1483168418","1483291353","1483167855","1","1","0","-1","122935","563","122935","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113218","6113218","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167858","1483168418","1483277842","1483167858","1","1","0","-1","109424","560","109424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113219","6113219","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167861","1483168418","1483302922","1483167861","1","1","0","-1","134504","557","134504","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113220","6113220","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167866","1483168418","1483298033","1483167866","1","1","0","-1","129615","552","129615","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113222","6113222","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167877","1483168541","1483288257","1483167877","1","1","0","-1","119716","664","119716","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113223","6113223","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167882","1483168541","1483248685","1483167882","1","1","0","-1","80144","659","80144","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113224","6113224","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167886","1483168541","1483253377","1483167886","1","1","0","-1","84836","655","84836","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113225","6113225","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167892","1483168541","1483262702","1483167892","1","1","0","-1","94161","649","94161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113226","6113226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167895","1483168541","1483293107","1483167895","1","1","0","-1","124566","646","124566","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113227","6113227","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167898","1483168541","1483263588","1483167898","1","1","0","-1","95047","643","95047","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113228","6113228","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167899","1483168541","1483282781","1483167899","1","1","0","-1","114240","642","114240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113229","6113229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167901","1483168541","1483296085","1483167901","1","1","0","-1","127544","640","127544","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113230","6113230","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167908","1483168541","1483292794","1483167908","1","1","0","-1","124253","633","124253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113231","6113231","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167913","1483168541","1483257142","1483167913","1","1","0","-1","88601","628","88601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113232","6113232","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483283936","1483167915","1","1","0","-1","115395","626","115395","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113233","6113233","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483296310","1483167915","1","1","0","-1","127769","626","127769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113234","6113234","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167924","1483168541","1483306322","1483167924","1","1","0","-1","137781","617","137781","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113235","6113235","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167927","1483168541","1483306202","1483167927","1","1","0","-1","137661","614","137661","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113236","6113236","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167934","1483168541","1483274191","1483167934","1","1","0","-1","105650","607","105650","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113237","6113237","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167935","1483168541","1483253896","1483167935","1","1","0","-1","85355","606","85355","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113238","6113238","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167937","1483168541","1483296769","1483167937","1","1","0","-1","128228","604","128228","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113239","6113239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167939","1483168541","1483263187","1483167939","1","1","0","-1","94646","602","94646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113240","6113240","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167974","1483168664","1483258435","1483167974","1","1","0","-1","89771","690","89771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113242","6113242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167978","1483168664","1483274634","1483167978","1","1","0","-1","105970","686","105970","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113243","6113243","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167983","1483168664","1483263103","1483167983","1","1","0","-1","94439","681","94439","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113244","6113244","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167987","1483168664","1483278666","1483167987","1","1","0","-1","110002","677","110002","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113245","6113245","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167992","1483168664","1483287749","1483167992","1","1","0","-1","119085","672","119085","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113246","6113246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167996","1483168664","1483284293","1483167996","1","1","0","-1","115629","668","115629","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113247","6113247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167997","1483168664","1483270394","1483167997","1","1","0","-1","101730","667","101730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113248","6113248","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167998","1483168664","1483246154","1483167998","1","1","0","-1","77490","666","77490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113249","6113249","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168002","1483168664","1483298024","1483168002","1","1","0","-1","129360","662","129360","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113251","6113251","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168006","1483168664","1483296526","1483168006","1","1","0","-1","127862","658","127862","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113252","6113252","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168013","1483168664","1483255319","1483168013","1","1","0","-1","86655","651","86655","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113253","6113253","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168016","1483168664","1483284135","1483168016","1","1","0","-1","115471","648","115471","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113254","6113254","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168022","1483168664","1483301536","1483168022","1","1","0","-1","132872","642","132872","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113255","6113255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168023","1483168664","1483276312","1483168023","1","1","0","-1","107648","641","107648","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113256","6113256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168027","1483168664","1483242092","1483168027","1","1","0","-1","73428","637","73428","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113257","6113257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168029","1483168664","1483269238","1483168029","1","1","0","-1","100574","635","100574","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113258","6113258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168033","1483168664","1483272557","1483168033","1","1","0","-1","103893","631","103893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113259","6113259","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168037","1483168664","1483275539","1483168037","1","1","0","-1","106875","627","106875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113260","6113260","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168040","1483168786","1483275336","1483168040","1","1","0","-1","106550","746","106550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113261","6113261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168045","1483168786","1483257934","1483168045","1","1","0","-1","89148","741","89148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113262","6113262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168049","1483168786","1483262353","1483168049","1","1","0","-1","93567","737","93567","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113263","6113263","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168055","1483168786","1483246889","1483168055","1","1","0","-1","78103","731","78103","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113264","6113264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168057","1483168786","1483270212","1483168057","1","1","0","-1","101426","729","101426","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113266","6113266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483306737","1483168063","1","1","0","-1","137951","723","137951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113267","6113267","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483312064","1483168063","1","1","0","-1","143278","723","143278","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113268","6113268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483260109","1483168063","1","1","0","-1","91323","723","91323","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113269","6113269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483282835","1483168064","1","1","0","-1","114049","722","114049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113271","6113271","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483283551","1483168064","1","1","0","-1","114765","722","114765","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113272","6113272","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276006","1483168064","1","1","0","-1","107220","722","107220","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113273","6113273","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483274256","1483168064","1","1","0","-1","105470","722","105470","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113274","6113274","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276058","1483168064","1","1","0","-1","107272","722","107272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113276","6113276","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483284221","1483168064","1","1","0","-1","115435","722","115435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113277","6113277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483291245","1483168064","1","1","0","-1","122459","722","122459","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113278","6113278","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168069","1483168786","1483282987","1483168069","1","1","0","-1","114201","717","114201","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113279","6113279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168073","1483168909","1483280854","1483168073","1","1","0","-1","111945","836","111945","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113280","6113280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168074","1483168909","1483241767","1483168074","1","1","0","-1","72858","835","72858","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113281","6113281","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168077","1483168909","1483261052","1483168077","1","1","0","-1","92143","832","92143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113283","6113283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168078","1483168909","1483244528","1483168078","1","1","0","-1","75619","831","75619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113284","6113284","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168083","1483168909","1483283958","1483168083","1","1","0","-1","115049","826","115049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113285","6113285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168084","1483168909","1483244547","1483168084","1","1","0","-1","75638","825","75638","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113286","6113286","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168118","1483168909","1483276125","1483168118","1","1","0","-1","107216","791","107216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113287","6113287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168124","1483168909","1483266024","1483168124","1","1","0","-1","97115","785","97115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113288","6113288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168126","1483168909","1483276477","1483168126","1","1","0","-1","107568","783","107568","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113289","6113289","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168128","1483168909","1483287643","1483168128","1","1","0","-1","118734","781","118734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113290","6113290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168132","1483168909","1483294262","1483168132","1","1","0","-1","125353","777","125353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113291","6113291","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168138","1483168909","1483273730","1483168138","1","1","0","-1","104821","771","104821","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113292","6113292","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168142","1483168909","1483293516","1483168142","1","1","0","-1","124607","767","124607","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113293","6113293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168152","1483168909","1483259052","1483168152","1","1","0","-1","90143","757","90143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113294","6113294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168158","1483168909","1483237450","1483168158","1","1","0","-1","68541","751","68541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113296","6113296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168160","1483168909","1483313682","1483168160","1","1","0","-1","144773","749","144773","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113297","6113297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168163","1483168909","1483287534","1483168163","1","1","0","-1","118625","746","118625","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113298","6113298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168172","1483168909","1483297855","1483168172","1","1","0","-1","128946","737","128946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113299","6113299","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168176","1483168909","1483243709","1483168176","1","1","0","-1","74800","733","74800","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113300","6113300","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168181","1483169032","1483274322","1483168181","1","1","0","-1","105290","851","105290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113301","6113301","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168186","1483169032","1483258568","1483168186","1","1","0","-1","89536","846","89536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113302","6113302","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168187","1483169032","1483272834","1483168187","1","1","0","-1","103802","845","103802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113303","6113303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168189","1483169032","1483247340","1483168189","1","1","0","-1","78308","843","78308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113304","6113304","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169154","1483289411","1483168190","1","1","0","-1","120257","964","120257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113305","6113305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483254966","1483168190","1","1","0","-1","85934","842","85934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113306","6113306","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483308992","1483168190","1","1","0","-1","139960","842","139960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113307","6113307","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483239129","1483168190","1","1","0","-1","70097","842","70097","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113308","6113308","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483312056","1483168190","1","1","0","-1","143024","842","143024","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113309","6113309","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483273872","1483168190","1","1","0","-1","104840","842","104840","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113310","6113310","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483298031","1483168190","1","1","0","-1","128999","842","128999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113311","6113311","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483305247","1483168190","1","1","0","-1","136215","842","136215","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113312","6113312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483280565","1483168190","1","1","0","-1","111533","842","111533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113313","6113313","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168194","1483169032","1483283837","1483168194","1","1","0","-1","114805","838","114805","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113314","6113314","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168197","1483169032","1483297431","1483168197","1","1","0","-1","128399","835","128399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113315","6113315","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168201","1483169032","1483276984","1483168201","1","1","0","-1","107952","831","107952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113317","6113317","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483283710","1483168208","1","1","0","-1","114678","824","114678","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113318","6113318","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483248416","1483168208","1","1","0","-1","79384","824","79384","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113319","6113319","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168210","1483169154","1483310113","1483168210","1","1","0","-1","140959","944","140959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113320","6113320","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168214","1483169154","1483295878","1483168214","1","1","0","-1","126724","940","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113321","6113321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168228","1483169154","1483287707","1483168228","1","1","0","-1","118553","926","118553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113322","6113322","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168230","1483169154","1483278429","1483168230","1","1","0","-1","109275","924","109275","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113323","6113323","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168233","1483169154","1483287981","1483168233","1","1","0","-1","118827","921","118827","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113324","6113324","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168238","1483169154","1483250746","1483168238","1","1","0","-1","81592","916","81592","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113325","6113325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168243","1483169154","1483287940","1483168243","1","1","0","-1","118786","911","118786","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113326","6113326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168245","1483169154","1483249333","1483168245","1","1","0","-1","80179","909","80179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113327","6113327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168249","1483169154","1483300715","1483168249","1","1","0","-1","131561","905","131561","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113328","6113328","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168253","1483169154","1483260194","1483168253","1","1","0","-1","91040","901","91040","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113329","6113329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168258","1483169154","1483279518","1483168258","1","1","0","-1","110364","896","110364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113330","6113330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168259","1483169154","1483267360","1483168259","1","1","0","-1","98206","895","98206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113331","6113331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168263","1483169154","1483276548","1483168263","1","1","0","-1","107394","891","107394","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113333","6113333","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168273","1483169154","1483254687","1483168273","1","1","0","-1","85533","881","85533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113334","6113334","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168278","1483169154","1483302710","1483168278","1","1","0","-1","133556","876","133556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113335","6113335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168283","1483169154","1483258315","1483168283","1","1","0","-1","89161","871","89161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113336","6113336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168288","1483169154","1483262299","1483168288","1","1","0","-1","93145","866","93145","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113337","6113337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168291","1483169154","1483269817","1483168291","1","1","0","-1","100663","863","100663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113338","6113338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168301","1483169279","1483267055","1483168301","1","1","0","-1","97776","978","97776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113339","6113339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168305","1483169279","1483235134","1483168305","1","1","0","-1","65855","974","65855","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113340","6113340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168307","1483169279","1483287038","1483168307","1","1","0","-1","117759","972","117759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113341","6113341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168309","1483169279","1483314859","1483168309","1","1","0","-1","145580","970","145580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113342","6113342","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168312","1483169279","1483237172","1483168312","1","1","0","-1","67893","967","67893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113344","6113344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168316","1483169279","1483252150","1483168316","1","1","0","-1","82871","963","82871","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113385","6113385","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171819","1483171856","1483282270","1483171819","1","1","0","-1","110414","37","110414","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113386","6113386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171823","1483171856","1483279928","1483171823","1","1","0","-1","108072","33","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113394","6113394","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171859","1483171978","1483256151","1483171859","1","1","0","-1","84173","119","84173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113395","6113395","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171867","1483171978","1483254438","1483171867","1","1","0","-1","82460","111","82460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113396","6113396","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171871","1483171978","1483268945","1483171871","1","1","0","-1","96967","107","96967","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113397","6113397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171880","1483171978","1483248421","1483171880","1","1","0","-1","76443","98","76443","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113398","6113398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171885","1483171978","1483287436","1483171885","1","1","0","-1","115458","93","115458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113399","6113399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171888","1483171978","1483309993","1483171888","1","1","0","-1","138015","90","138015","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113400","6113400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171890","1483171978","1483309501","1483171890","1","1","0","-1","137523","88","137523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113401","6113401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171891","1483171978","1483249947","1483171891","1","1","0","-1","77969","87","77969","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113402","6113402","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171898","1483171978","1483308217","1483171898","1","1","0","-1","136239","80","136239","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113403","6113403","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171903","1483171978","1483297802","1483171903","1","1","0","-1","125824","75","125824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113404","6113404","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171907","1483171978","1483279767","1483171907","1","1","0","-1","107789","71","107789","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113406","6113406","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171915","1483171978","1483282208","1483171915","1","1","0","-1","110230","63","110230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113407","6113407","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171926","1483171978","1483260323","1483171926","1","1","0","-1","88345","52","88345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113408","6113408","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171931","1483171978","1483312213","1483171931","1","1","0","-1","140235","47","140235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113409","6113409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171932","1483171978","1483259488","1483171932","1","1","0","-1","87510","46","87510","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113410","6113410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171935","1483171978","1483247531","1483171935","1","1","0","-1","75553","43","75553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113411","6113411","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171938","1483171978","1483275535","1483171938","1","1","0","-1","103557","40","103557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113412","6113412","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171941","1483171978","1483279405","1483171941","1","1","0","-1","107427","37","107427","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113413","6113413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171945","1483172100","1483265904","1483171945","1","1","0","-1","93804","155","93804","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113414","6113414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171947","1483172100","1483269408","1483171947","1","1","0","-1","97308","153","97308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113415","6113415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171949","1483172100","1483280274","1483171949","1","1","0","-1","108174","151","108174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113416","6113416","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171950","1483172100","1483273212","1483171950","1","1","0","-1","101112","150","101112","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113417","6113417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171959","1483172100","1483303709","1483171959","1","1","0","-1","131609","141","131609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113418","6113418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171964","1483172100","1483307695","1483171964","1","1","0","-1","135595","136","135595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113419","6113419","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171970","1483172100","1483280353","1483171970","1","1","0","-1","108253","130","108253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113420","6113420","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171973","1483172100","1483289464","1483171973","1","1","0","-1","117364","127","117364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113421","6113421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171977","1483172100","1483258325","1483171977","1","1","0","-1","86225","123","86225","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113423","6113423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171983","1483172100","1483298824","1483171983","1","1","0","-1","126724","117","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113424","6113424","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171987","1483172100","1483291536","1483171987","1","1","0","-1","119436","113","119436","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113425","6113425","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171991","1483172100","1483286402","1483171991","1","1","0","-1","114302","109","114302","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113426","6113426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171993","1483172100","1483289810","1483171993","1","1","0","-1","117710","107","117710","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113427","6113427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171995","1483172100","1483268308","1483171995","1","1","0","-1","96208","105","96208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113428","6113428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171999","1483172100","1483312092","1483171999","1","1","0","-1","139992","101","139992","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113429","6113429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172000","1483172100","1483271960","1483172000","1","1","0","-1","99860","100","99860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113430","6113430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172003","1483172100","1483280400","1483172003","1","1","0","-1","108300","97","108300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113431","6113431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172006","1483172100","1483296273","1483172006","1","1","0","-1","124173","94","124173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113432","6113432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172010","1483172100","1483276939","1483172010","1","1","0","-1","104839","90","104839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113433","6113433","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172013","1483172223","1483286718","1483172013","1","1","0","-1","114495","210","114495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113434","6113434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172016","1483172223","1483259137","1483172016","1","1","0","-1","86914","207","86914","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113830","6113830","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200005","1483200053","1483296245","1483200005","1","1","0","-1","96192","48","96192","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113831","6113831","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200006","1483200053","1483298992","1483200006","1","1","0","-1","98939","47","98939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113832","6113832","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200007","1483200053","1483286337","1483200007","1","1","0","-1","86284","46","86284","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113833","6113833","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200011","1483200053","1483310003","1483200011","1","1","0","-1","109950","42","109950","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113834","6113834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200013","1483200053","1483296688","1483200013","1","1","0","-1","96635","40","96635","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113835","6113835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200017","1483200053","1483291976","1483200017","1","1","0","-1","91923","36","91923","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113836","6113836","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200018","1483200053","1483289913","1483200018","1","1","0","-1","89860","35","89860","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113849","6113849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200048","1483200175","1483287999","1483200048","1","1","0","-1","87824","127","87824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113850","6113850","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200050","1483200175","1483293078","1483200050","1","1","0","-1","92903","125","92903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113864","6113864","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200058","1483200175","1483309147","1483200058","1","1","0","-1","108972","117","108972","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113866","6113866","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200064","1483200175","1483281545","1483200064","1","1","0","-1","81370","111","81370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113868","6113868","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292528","1483200066","1","1","0","-1","92353","109","92353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113869","6113869","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314377","1483200066","1","1","0","-1","114202","109","114202","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113870","6113870","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483281716","1483200066","1","1","0","-1","81541","109","81541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113871","6113871","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289925","1483200066","1","1","0","-1","89750","109","89750","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113873","6113873","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314312","1483200066","1","1","0","-1","114137","109","114137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113874","6113874","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483285844","1483200066","1","1","0","-1","85669","109","85669","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113876","6113876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483315004","1483200066","1","1","0","-1","114829","109","114829","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113877","6113877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483310674","1483200066","1","1","0","-1","110499","109","110499","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113878","6113878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289097","1483200066","1","1","0","-1","88922","109","88922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113879","6113879","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483304947","1483200066","1","1","0","-1","104772","109","104772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113880","6113880","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292487","1483200066","1","1","0","-1","92312","109","92312","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113881","6113881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483298771","1483200066","1","1","0","-1","98474","231","98474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113883","6113883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483309627","1483200066","1","1","0","-1","109330","231","109330","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113885","6113885","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483313852","1483200066","1","1","0","-1","113555","231","113555","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113886","6113886","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483303395","1483200066","1","1","0","-1","103098","231","103098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6113887","6113887","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483284263","1483200066","1","1","0","-1","83966","231","83966","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114018","6114018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201086","1483201151","1483311521","1483201086","1","1","0","-1","110370","65","110370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114019","6114019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201089","1483201151","1483293195","1483201089","1","1","0","-1","92044","62","92044","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114021","6114021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201093","1483201151","1483286060","1483201093","1","1","0","-1","84909","58","84909","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114022","6114022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201095","1483201151","1483289923","1483201095","1","1","0","-1","88772","56","88772","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114023","6114023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201098","1483201151","1483289409","1483201098","1","1","0","-1","88258","53","88258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114024","6114024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201100","1483201151","1483303639","1483201100","1","1","0","-1","102488","51","102488","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114025","6114025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201104","1483201151","1483302425","1483201104","1","1","0","-1","101274","47","101274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114026","6114026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201107","1483201151","1483288723","1483201107","1","1","0","-1","87572","44","87572","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114027","6114027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201108","1483201151","1483297774","1483201108","1","1","0","-1","96623","43","96623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114029","6114029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201113","1483201151","1483302374","1483201113","1","1","0","-1","101223","38","101223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114030","6114030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201115","1483201151","1483304177","1483201115","1","1","0","-1","103026","36","103026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114031","6114031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201119","1483201151","1483304928","1483201119","1","1","0","-1","103777","32","103777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114037","6114037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483295032","1483201135","1","1","0","-1","93759","138","93759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114038","6114038","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483296629","1483201135","1","1","0","-1","95356","138","95356","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114040","6114040","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483286283","1483201135","1","1","0","-1","85010","138","85010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114041","6114041","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483288029","1483201135","1","1","0","-1","86756","138","86756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114042","6114042","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483279017","1483201135","1","1","0","-1","77744","138","77744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114043","6114043","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292728","1483201135","1","1","0","-1","91455","138","91455","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114044","6114044","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483310148","1483201135","1","1","0","-1","108875","138","108875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114045","6114045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483315060","1483201135","1","1","0","-1","113787","138","113787","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114046","6114046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483276183","1483201135","1","1","0","-1","74910","138","74910","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114047","6114047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292998","1483201135","1","1","0","-1","91725","138","91725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114048","6114048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201136","1483201273","1483298255","1483201136","1","1","0","-1","96982","137","96982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114050","6114050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201139","1483201273","1483314421","1483201139","1","1","0","-1","113148","134","113148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114052","6114052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201145","1483201273","1483304167","1483201145","1","1","0","-1","102894","128","102894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114053","6114053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201147","1483201273","1483282985","1483201147","1","1","0","-1","81712","126","81712","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114054","6114054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201148","1483201273","1483294052","1483201148","1","1","0","-1","92779","125","92779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114075","6114075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201163","1483201397","1483297708","1483201163","1","1","0","-1","96311","234","96311","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114076","6114076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483268423","1483201165","1","1","0","-1","67026","232","67026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114078","6114078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483295408","1483201165","1","1","0","-1","94011","232","94011","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114079","6114079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483279169","1483201165","1","1","0","-1","77772","232","77772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114080","6114080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483271283","1483201165","1","1","0","-1","69886","232","69886","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114081","6114081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483291388","1483201165","1","1","0","-1","89991","232","89991","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114088","6114088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483311920","1483201165","1","1","0","-1","110523","232","110523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114090","6114090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483276303","1483201165","1","1","0","-1","74906","232","74906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114449","6114449","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204151","1483204193","1483308118","1483204151","1","1","0","-1","103925","42","103925","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114450","6114450","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204156","1483204193","1483310364","1483204156","1","1","0","-1","106171","37","106171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114451","6114451","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204161","1483204193","1483298503","1483204161","1","1","0","-1","94310","32","94310","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114480","6114480","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204196","1483204314","1483287771","1483204196","1","1","0","-1","83457","118","83457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114481","6114481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204205","1483204314","1483312386","1483204205","1","1","0","-1","108072","109","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114482","6114482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204208","1483204314","1483291830","1483204208","1","1","0","-1","87516","106","87516","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114483","6114483","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483292696","1483204213","1","1","0","-1","88382","101","88382","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114484","6114484","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483291812","1483204213","1","1","0","-1","87498","101","87498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114485","6114485","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289916","1483204213","1","1","0","-1","85602","101","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114486","6114486","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289915","1483204213","1","1","0","-1","85601","101","85601","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114487","6114487","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483274136","1483204213","1","1","0","-1","69822","101","69822","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114488","6114488","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483303998","1483204213","1","1","0","-1","99684","101","99684","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114489","6114489","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483309919","1483204213","1","1","0","-1","105605","101","105605","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114490","6114490","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483306454","1483204213","1","1","0","-1","102140","101","102140","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114492","6114492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204215","1483204314","1483294235","1483204215","1","1","0","-1","89921","99","89921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114493","6114493","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204222","1483204314","1483310894","1483204222","1","1","0","-1","106580","92","106580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114494","6114494","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204225","1483204314","1483286158","1483204225","1","1","0","-1","81844","89","81844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114495","6114495","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204229","1483204314","1483289923","1483204229","1","1","0","-1","85609","85","85609","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114496","6114496","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204233","1483204314","1483289218","1483204233","1","1","0","-1","84904","81","84904","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114498","6114498","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204314","1483289916","1483204234","1","1","0","-1","85602","80","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114501","6114501","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483289927","1483204234","1","1","0","-1","85492","201","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114502","6114502","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483304933","1483204234","1","1","0","-1","100498","201","100498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114503","6114503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483285783","1483204234","1","1","0","-1","81348","201","81348","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114506","6114506","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483295366","1483204234","1","1","0","-1","90931","201","90931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114507","6114507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483293296","1483204234","1","1","0","-1","88861","201","88861","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114508","6114508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204237","1483204435","1483289927","1483204237","1","1","0","-1","85492","198","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114512","6114512","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204252","1483204435","1483299417","1483204252","1","1","0","-1","94982","183","94982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114513","6114513","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204255","1483204435","1483303675","1483204255","1","1","0","-1","99240","180","99240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114515","6114515","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204264","1483204435","1483293730","1483204264","1","1","0","-1","89295","171","89295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114834","6114834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206183","1483206254","1483297400","1483206183","1","1","0","-1","91146","71","91146","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114835","6114835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206186","1483206254","1483293310","1483206186","1","1","0","-1","87056","68","87056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114837","6114837","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206191","1483206254","1483306501","1483206191","1","1","0","-1","100247","63","100247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114838","6114838","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206193","1483206254","1483312905","1483206193","1","1","0","-1","106651","61","106651","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114839","6114839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206195","1483206254","1483313495","1483206195","1","1","0","-1","107241","59","107241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114840","6114840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206199","1483206254","1483308989","1483206199","1","1","0","-1","102735","55","102735","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114842","6114842","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206205","1483206254","1483312880","1483206205","1","1","0","-1","106626","49","106626","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114843","6114843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206208","1483206254","1483309979","1483206208","1","1","0","-1","103725","46","103725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114845","6114845","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206215","1483206254","1483311066","1483206215","1","1","0","-1","104812","39","104812","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114846","6114846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206218","1483206254","1483273868","1483206218","1","1","0","-1","67614","36","67614","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114876","6114876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206263","1483206375","1483306945","1483206263","1","1","0","-1","100570","112","100570","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114877","6114877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483295609","1483206270","1","1","0","-1","89234","105","89234","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114878","6114878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483283086","1483206270","1","1","0","-1","76711","105","76711","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114881","6114881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206286","1483206375","1483303608","1483206286","1","1","0","-1","97233","89","97233","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114882","6114882","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206287","1483206375","1483302011","1483206287","1","1","0","-1","95636","88","95636","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114883","6114883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206290","1483206375","1483298553","1483206290","1","1","0","-1","92178","85","92178","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114928","6114928","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207478","1483207590","1483302149","1483207478","1","1","0","-1","94559","112","94559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114929","6114929","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207484","1483207590","1483313429","1483207484","1","1","0","-1","105839","106","105839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114934","6114934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483312903","1483207487","1","1","0","-1","105313","103","105313","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114935","6114935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483298820","1483207487","1","1","0","-1","91230","103","91230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114936","6114936","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483303919","1483207487","1","1","0","-1","96329","103","96329","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114937","6114937","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483301878","1483207487","1","1","0","-1","94288","103","94288","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114940","6114940","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483302483","1483207487","1","1","0","-1","94893","103","94893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114943","6114943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483311321","1483207487","1","1","0","-1","103731","103","103731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114945","6114945","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483304393","1483207487","1","1","0","-1","96803","103","96803","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114946","6114946","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483295980","1483207487","1","1","0","-1","88390","103","88390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114948","6114948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483300743","1483207487","1","1","0","-1","93032","224","93032","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114951","6114951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483309082","1483207487","1","1","0","-1","101371","224","101371","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114952","6114952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483313051","1483207487","1","1","0","-1","105340","224","105340","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114953","6114953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483291993","1483207487","1","1","0","-1","84282","224","84282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114955","6114955","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207488","1483207711","1483301833","1483207488","1","1","0","-1","94122","223","94122","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114956","6114956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207491","1483207711","1483295375","1483207491","1","1","0","-1","87664","220","87664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114957","6114957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207494","1483207711","1483307072","1483207494","1","1","0","-1","99361","217","99361","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114960","6114960","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207500","1483207711","1483295229","1483207500","1","1","0","-1","87518","211","87518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114962","6114962","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207502","1483207711","1483313818","1483207502","1","1","0","-1","106107","209","106107","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114963","6114963","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207503","1483207711","1483303828","1483207503","1","1","0","-1","96117","208","96117","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114964","6114964","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207507","1483207711","1483285846","1483207507","1","1","0","-1","78135","204","78135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114972","6114972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208320","1483208439","1483306711","1483208320","1","1","0","-1","98272","119","98272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114975","6114975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208331","1483208439","1483306288","1483208331","1","1","0","-1","97849","108","97849","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114978","6114978","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208340","1483208439","1483303748","1483208340","1","1","0","-1","95309","99","95309","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114979","6114979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208342","1483208439","1483306661","1483208342","1","1","0","-1","98222","97","98222","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114981","6114981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208347","1483208439","1483303635","1483208347","1","1","0","-1","95196","92","95196","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114982","6114982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208351","1483208439","1483289936","1483208351","1","1","0","-1","81497","88","81497","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114983","6114983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208353","1483208439","1483288765","1483208353","1","1","0","-1","80326","86","80326","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114984","6114984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208357","1483208439","1483299953","1483208357","1","1","0","-1","91514","82","91514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114985","6114985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208359","1483208439","1483308874","1483208359","1","1","0","-1","100435","80","100435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114991","6114991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208381","1483208560","1483288374","1483208381","1","1","0","-1","79814","179","79814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114992","6114992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208387","1483208560","1483285114","1483208387","1","1","0","-1","76554","173","76554","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114993","6114993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208390","1483208560","1483299079","1483208390","1","1","0","-1","90519","170","90519","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114996","6114996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208401","1483208560","1483311766","1483208401","1","1","0","-1","103206","159","103206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6114997","6114997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208410","1483208560","1483287596","1483208410","1","1","0","-1","79036","150","79036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115000","6115000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208422","1483208560","1483304512","1483208422","1","1","0","-1","95952","138","95952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115002","6115002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208431","1483208560","1483285979","1483208431","1","1","0","-1","77419","129","77419","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115008","6115008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208452","1483208560","1483294406","1483208452","1","1","0","-1","85846","108","85846","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115009","6115009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208560","1483302388","1483208454","1","1","0","-1","93828","106","93828","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115010","6115010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483276469","1483208454","1","1","0","-1","67788","227","67788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115012","6115012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483307414","1483208454","1","1","0","-1","98733","227","98733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115013","6115013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483290458","1483208454","1","1","0","-1","81777","227","81777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115014","6115014","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483311060","1483208454","1","1","0","-1","102379","227","102379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115103","6115103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213480","1483213534","1483282058","1483213480","1","1","0","-1","68524","54","68524","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115106","6115106","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213489","1483213534","1483306835","1483213489","1","1","0","-1","93301","45","93301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115107","6115107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213492","1483213534","1483291252","1483213492","1","1","0","-1","77718","42","77718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115125","6115125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483292373","1483213550","1","1","0","-1","78718","105","78718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115128","6115128","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483289686","1483213550","1","1","0","-1","76031","105","76031","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115129","6115129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483294594","1483213550","1","1","0","-1","80939","105","80939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115132","6115132","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483281233","1483213550","1","1","0","-1","67578","105","67578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115133","6115133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483303422","1483213550","1","1","0","-1","89767","105","89767","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115134","6115134","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483307027","1483213550","1","1","0","-1","93372","105","93372","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115325","6115325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222533","1483222630","1483304685","1483222533","1","1","0","-1","82055","97","82055","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115326","6115326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222534","1483222630","1483289923","1483222534","1","1","0","-1","67293","96","67293","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115329","6115329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222540","1483222630","1483291327","1483222540","1","1","0","-1","68697","90","68697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115330","6115330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222541","1483222630","1483310687","1483222541","1","1","0","-1","88057","89","88057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115331","6115331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222542","1483222630","1483289282","1483222542","1","1","0","-1","66652","88","66652","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115337","6115337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222560","1483222630","1483311524","1483222560","1","1","0","-1","88894","70","88894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115338","6115338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222563","1483222630","1483314587","1483222563","1","1","0","-1","91957","67","91957","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115340","6115340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222574","1483222750","1483304020","1483222574","1","1","0","-1","81270","176","81270","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115341","6115341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222580","1483222750","1483301313","1483222580","1","1","0","-1","78563","170","78563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115344","6115344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222586","1483222750","1483307812","1483222586","1","1","0","-1","85062","164","85062","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115353","6115353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222606","1483222750","1483309483","1483222606","1","1","0","-1","86733","144","86733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115620","6115620","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231340","1483231467","1483298945","1483231340","1","1","0","-1","67478","127","67478","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115637","6115637","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231347","1483231467","1483302395","1483231347","1","1","0","-1","70928","120","70928","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115646","6115646","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231591","1483231710","1483313236","1483231591","1","1","0","-1","81526","119","81526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115647","6115647","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231592","1483231710","1483310917","1483231592","1","1","0","-1","79207","118","79207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115696","6115696","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231657","1483231953","1483311763","1483231657","1","1","0","-1","79810","296","79810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6115717","6115717","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231679","1483232075","1483311252","1483231679","1","1","0","-1","79177","396","79177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116369","6116369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483314600","1483243516","1","1","0","-1","70998","86","70998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6116373","6116373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483309681","1483243516","1","1","0","-1","66079","86","66079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6107586[30]","6107586","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[7]","6107594","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[8]","6107595","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[9]","6107596","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483279393","1483036371","1","1","0","-1","242924","98","242924","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[10]","6107597","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483275136","1483036371","1","1","0","-1","238667","98","238667","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[11]","6107598","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[12]","6107599","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[13]","6107600","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483270817","1483036371","1","1","0","-1","234348","98","234348","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[14]","6107601","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[15]","6107602","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[17]","6107604","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[18]","6107605","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[19]","6107606","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[20]","6107607","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483246881","1483036371","1","1","0","-1","210283","227","210283","0","1:0","FAILED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[21]","6107608","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483240052","1483036371","1","1","0","-1","203454","227","203454","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[22]","6107609","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[26]","6107613","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107586[27]","6107614","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[30]","6107820","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[13]","6107869","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[14]","6107870","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483254894","1483039080","1","1","0","-1","215685","131","215685","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[18]","6107874","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[19]","6107875","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[25]","6107901","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[26]","6107902","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107820[29]","6107906","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[30]","6108027","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046922","1483306143","1483046357","1","1","0","-1","259221","565","259221","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[20]","6108048","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483231734","1483046357","1","1","0","-1","185225","152","185225","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[21]","6108049","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[22]","6108050","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[23]","6108053","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483296209","1483046357","1","1","0","-1","249566","286","249566","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[24]","6108054","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[25]","6108055","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[26]","6108056","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108027[27]","6108063","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046778","1483272476","1483046357","1","1","0","-1","225698","421","225698","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108716[1]","6108723","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483229565","1483072475","1","1","0","-1","156978","112","156978","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108716[2]","6108724","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483270842","1483072475","1","1","0","-1","198255","112","198255","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6108800[1]","6108801","Robertson","UTC","","Lapwing","Screwdriver","curry","1483076091","1483076144","1483267927","1483076091","1","1","0","-1","191783","53","191783","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6109585[1]","6109587","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483271049","1483109379","1","1","0","-1","161616","56","161616","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6109585[2]","6109588","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483312425","1483109379","1","1","0","-1","202992","56","202992","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6111029[2]","6111031","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483125543","1483310202","1483125395","1","1","0","-1","184659","149","184659","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112885[16]","6112885","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148065","1483148185","1483297208","1483148066","1","1","0","-1","149023","120","149023","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112886[17]","6112886","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148290","1483148436","1483266206","1483148293","1","1","0","-1","117770","146","117770","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112887[20]","6112887","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148944","1483149064","1483255470","1483148944","1","1","0","-1","106406","120","106406","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6112904[23]","6112904","Robertson","UTC","","Lapwing","Screwdriver","curry","1483155055","1483155085","1483298241","1483155055","1","1","0","-1","143156","30","143156","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6107628","6107628","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037326","1483037758","1483296961","1483037326","1","8","0","-1","259203","432","2073624","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107630","6107630","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037377","1483037889","1483297112","1483037377","1","8","0","-1","259223","512","2073784","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107635","6107635","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037430","1483038146","1483297352","1483037430","1","8","0","-1","259206","716","2073648","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6107647","6107647","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037509","1483038280","1483297502","1483037509","1","8","0","-1","259222","771","2073776","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6108907","6108907","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079550","1483079610","1483308226","1483079550","1","8","0","-1","228616","60","1828928","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["6108910","6108910","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079655","1483079739","1483308222","1483079655","1","8","0","-1","228483","84","1827864","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"],["995647","995647","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144144","1483273604","1483144114","1","8","0","-1","129460","30","1035680","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995648","995648","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144145","1483283483","1483144114","1","8","0","-1","139338","31","1114704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995650","995650","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144147","1483274577","1483144114","1","8","0","-1","130430","33","1043440","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995652","995652","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144149","1483292769","1483144114","1","8","0","-1","148620","35","1188960","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995653","995653","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144150","1483274570","1483144114","1","8","0","-1","130420","36","1043360","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995654","995654","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483277818","1483144114","1","8","0","-1","133666","38","1069328","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995655","995655","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483286039","1483144114","1","8","0","-1","141887","38","1135096","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995656","995656","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144154","1483273511","1483144114","1","8","0","-1","129357","40","1034856","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995657","995657","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144155","1483280557","1483144115","1","8","0","-1","136402","40","1091216","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995658","995658","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483277112","1483144115","1","8","0","-1","132954","43","1063632","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["995659","995659","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483275125","1483144115","1","8","0","-1","130967","43","1047736","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["1016250","1016250","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483186506","1483186577","1483254650","1483186506","1","8","0","-1","68073","71","544584","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["1019924","1019924","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483239618","1483239703","1483306378","1483239618","1","8","0","-1","66675","85","533400","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6112942","6112942","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161215","1483161307","1483236730","1483161215","2","24","0","-1","75423","92","1810152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112943","6112943","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161224","1483161307","1483266720","1483161224","2","24","0","-1","105413","83","2529912","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112944","6112944","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161230","1483161307","1483272990","1483161230","2","24","0","-1","111683","77","2680392","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112945","6112945","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161240","1483161307","1483240755","1483161240","2","24","0","-1","79448","67","1906752","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6114330","6114330","Robertson","UTC","","Warbler, Sardinian","Screwdriver","derby","1483203444","1483203589","1483285437","1483203444","4","32","0","-1","81848","145","2619136","0","0:0","CANCELLED by 284857","32","2147486448Mn","259200","white","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"],["6108018","6108018","Robertson","UTC","","Duck, Ferruginous","Screwdriver","derby","1483045081","1483045193","1483297221","1483045081","5","60","0","-1","252028","112","15121680","0","0:0","COMPLETED","60","2147486448Mn","255000","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6111029[10]","6111232","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483127378","1483231867","1483125395","1","1","0","-1","104489","1984","104489","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["6110309","6110309","Robertson","UTC","","Thrush, Mistle","Screwdriver","curry","1483118113","1483120705","1483246965","1483118113","1","12","0","-1","126260","2592","1515120","0","1:0","FAILED","12","2147486448Mn","259200","white","Mathematical and Physical Sciences","Mathematical Sciences","Algebra and Number Theory"],["6110932","6110932","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122816","1483129199","1483260184","1483122816","1","1","0","-1","130985","6383","130985","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110934","6110934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122827","1483129199","1483241049","1483122827","1","1","0","-1","111850","6372","111850","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110935","6110935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122833","1483129199","1483243971","1483122833","1","1","0","-1","114772","6366","114772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110941","6110941","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122862","1483129199","1483279653","1483122862","1","1","0","-1","150454","6337","150454","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110943","6110943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122866","1483129199","1483253444","1483122866","1","1","0","-1","124245","6333","124245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110944","6110944","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122873","1483129199","1483239135","1483122873","1","1","0","-1","109936","6326","109936","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110948","6110948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122883","1483129199","1483250001","1483122883","1","1","0","-1","120802","6316","120802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110949","6110949","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122889","1483129199","1483269172","1483122889","1","1","0","-1","139973","6310","139973","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110951","6110951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122898","1483129199","1483257196","1483122898","1","1","0","-1","127997","6301","127997","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110952","6110952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122905","1483129199","1483270373","1483122905","1","1","0","-1","141174","6294","141174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110953","6110953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122914","1483129199","1483258374","1483122914","1","1","0","-1","129175","6285","129175","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110956","6110956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122927","1483130416","1483232571","1483122927","1","1","0","-1","102155","7489","102155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110957","6110957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122928","1483130416","1483269146","1483122928","1","1","0","-1","138730","7488","138730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110959","6110959","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122941","1483130416","1483247414","1483122941","1","1","0","-1","116998","7475","116998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110961","6110961","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122956","1483130416","1483281503","1483122956","1","1","0","-1","151087","7460","151087","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110965","6110965","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122986","1483130940","1483254090","1483122986","1","1","0","-1","123150","7954","123150","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110966","6110966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122991","1483130940","1483235921","1483122991","1","1","0","-1","104981","7949","104981","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110967","6110967","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122993","1483130940","1483244686","1483122993","1","1","0","-1","113746","7947","113746","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110969","6110969","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122999","1483140833","1483230389","1483122999","1","1","0","-1","89556","17834","89556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110970","6110970","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123006","1483140833","1483231508","1483123006","1","1","0","-1","90675","17827","90675","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110971","6110971","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123011","1483140833","1483243740","1483123011","1","1","0","-1","102907","17822","102907","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110972","6110972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123014","1483140833","1483246134","1483123014","1","1","0","-1","105301","17819","105301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110973","6110973","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123020","1483140833","1483249560","1483123020","1","1","0","-1","108727","17813","108727","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110974","6110974","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123028","1483140833","1483237007","1483123028","1","1","0","-1","96174","17805","96174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110975","6110975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123031","1483140833","1483232693","1483123031","1","1","0","-1","91860","17802","91860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110976","6110976","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123039","1483140833","1483265721","1483123039","1","1","0","-1","124888","17794","124888","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110979","6110979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123058","1483140833","1483259832","1483123058","1","1","0","-1","118999","17775","118999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110980","6110980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123059","1483140833","1483242584","1483123059","1","1","0","-1","101751","17774","101751","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110982","6110982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123062","1483140833","1483246293","1483123062","1","1","0","-1","105460","17771","105460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110983","6110983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123074","1483140833","1483254460","1483123074","1","1","0","-1","113627","17759","113627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110984","6110984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123081","1483140833","1483254648","1483123081","1","1","0","-1","113815","17752","113815","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6110986","6110986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123088","1483140833","1483249312","1483123088","1","1","0","-1","108479","17745","108479","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111667","6111667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130503","1483140958","1483273994","1483130503","1","1","0","-1","133036","10455","133036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111669","6111669","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130511","1483140958","1483261777","1483130511","1","1","0","-1","120819","10447","120819","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111670","6111670","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130519","1483140958","1483237534","1483130519","1","1","0","-1","96576","10439","96576","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111671","6111671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130527","1483140958","1483255977","1483130527","1","1","0","-1","115019","10431","115019","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111692","6111692","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130555","1483140958","1483255361","1483130555","1","1","0","-1","114403","10403","114403","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111693","6111693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130560","1483140958","1483230064","1483130560","1","1","0","-1","89106","10398","89106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111695","6111695","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130575","1483143765","1483230749","1483130575","1","1","0","-1","86984","13190","86984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111697","6111697","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130582","1483143765","1483258716","1483130582","1","1","0","-1","114951","13183","114951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111700","6111700","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130589","1483146922","1483268786","1483130589","1","1","0","-1","121864","16333","121864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111701","6111701","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130598","1483146922","1483242979","1483130598","1","1","0","-1","96057","16324","96057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111702","6111702","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130612","1483146922","1483287626","1483130612","1","1","0","-1","140704","16310","140704","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111029[22]","6111495","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483129193","1483303395","1483125395","1","1","0","-1","174202","3799","174202","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"],["964695","964695","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959827","1483244087","1482955559","1","16","0","-1","284260","4268","4548160","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964696","964696","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959922","1483241046","1482955559","1","16","0","-1","281124","4363","4497984","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964697","964697","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483244842","1482955560","1","16","0","-1","283623","5659","4537968","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964698","964698","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483243832","1482955560","1","16","0","-1","282613","5659","4521808","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964699","964699","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961261","1483252567","1482955560","1","16","0","-1","291306","5701","4660896","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964700","964700","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482963515","1483249666","1482955560","1","16","0","-1","286151","7955","4578416","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964701","964701","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482964505","1483248060","1482955560","1","16","0","-1","283555","8945","4536880","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964702","964702","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482966664","1483246450","1482955560","1","16","0","-1","279786","11104","4476576","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964703","964703","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482968430","1483254631","1482955560","1","16","0","-1","286201","12870","4579216","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964704","964704","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482969745","1483253462","1482955560","1","16","0","-1","283717","14185","4539472","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964705","964705","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482969934","1483255664","1482955561","1","16","0","-1","285730","14373","4571680","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["964706","964706","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482972508","1483258765","1482955561","1","16","0","-1","286257","16947","4580112","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["6112948","6112948","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161271","1483177476","1483287539","1483161271","2","16","0","-1","110063","16205","1761008","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112946","6112946","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161251","1483169402","1483254005","1483161251","2","24","0","-1","84603","8151","2030472","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112947","6112947","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161259","1483170757","1483266921","1483161259","2","24","0","-1","96164","9498","2307936","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6112949","6112949","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161281","1483178210","1483258133","1483161281","2","24","0","-1","79923","16929","1918152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6111703","6111703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130621","1483149447","1483259968","1483130621","1","1","0","-1","110521","18826","110521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111704","6111704","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130626","1483149447","1483259737","1483130626","1","1","0","-1","110290","18821","110290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111705","6111705","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130632","1483149447","1483243256","1483130632","1","1","0","-1","93809","18815","93809","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111706","6111706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130637","1483149447","1483262042","1483130637","1","1","0","-1","112595","18810","112595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111707","6111707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130644","1483149447","1483251123","1483130644","1","1","0","-1","101676","18803","101676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111708","6111708","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130651","1483149571","1483245286","1483130651","1","1","0","-1","95715","18920","95715","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111709","6111709","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483243917","1483130661","1","1","0","-1","94346","18910","94346","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111710","6111710","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483297967","1483130661","1","1","0","-1","148396","18910","148396","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111711","6111711","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130663","1483149571","1483262372","1483130663","1","1","0","-1","112801","18908","112801","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111731","6111731","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130683","1483149571","1483273166","1483130683","1","1","0","-1","123595","18888","123595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111732","6111732","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130695","1483149571","1483247653","1483130695","1","1","0","-1","98082","18876","98082","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111733","6111733","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130702","1483149697","1483291977","1483130702","1","1","0","-1","142280","18995","142280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111734","6111734","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130705","1483149697","1483267146","1483130705","1","1","0","-1","117449","18992","117449","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111735","6111735","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130713","1483149697","1483289923","1483130713","1","1","0","-1","140226","18984","140226","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111736","6111736","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130716","1483149697","1483273378","1483130716","1","1","0","-1","123681","18981","123681","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111737","6111737","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130723","1483149697","1483271994","1483130723","1","1","0","-1","122297","18974","122297","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111738","6111738","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130728","1483149697","1483233193","1483130728","1","1","0","-1","83496","18969","83496","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111739","6111739","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130742","1483149697","1483247179","1483130742","1","1","0","-1","97482","18955","97482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111741","6111741","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130745","1483149823","1483259432","1483130745","1","1","0","-1","109609","19078","109609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111742","6111742","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130747","1483149823","1483250848","1483130747","1","1","0","-1","101025","19076","101025","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111743","6111743","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130752","1483149823","1483264028","1483130752","1","1","0","-1","114205","19071","114205","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111744","6111744","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130755","1483150068","1483240027","1483130755","1","1","0","-1","89959","19313","89959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111748","6111748","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130786","1483150190","1483235543","1483130786","1","1","0","-1","85353","19404","85353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111749","6111749","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130795","1483150312","1483286368","1483130795","1","1","0","-1","136056","19517","136056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111770","6111770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130826","1483150312","1483254519","1483130826","1","1","0","-1","104207","19486","104207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111771","6111771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130836","1483150312","1483260043","1483130836","1","1","0","-1","109731","19476","109731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111772","6111772","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130843","1483150312","1483261777","1483130843","1","1","0","-1","111465","19469","111465","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111773","6111773","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130848","1483150312","1483236580","1483130848","1","1","0","-1","86268","19464","86268","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111774","6111774","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130853","1483150312","1483240561","1483130853","1","1","0","-1","90249","19459","90249","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6111775","6111775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130859","1483150434","1483289924","1483130859","1","1","0","-1","139490","19575","139490","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"],["6108176","6108176","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483049788","1483075619","1483248447","1483049788","1","12","0","-1","172828","25831","2073936","0","1:0","TIMEOUT","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109583","6109583","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109304","1483130147","1483256250","1483109304","1","12","0","-1","126103","20843","1513236","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109608","6109608","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109465","1483130016","1483257008","1483109465","1","12","0","-1","126992","20551","1523904","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["6109610","6109610","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109484","1483130147","1483229691","1483109484","1","12","0","-1","99544","20663","1194528","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"],["964707","964707","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482974294","1483257177","1482955561","1","16","0","-1","282883","18733","4526128","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"],["6112950","6112950","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161291","1483179921","1483263236","1483161291","2","24","0","-1","83315","18630","1999560","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"],["6108913","6108913","Robertson","UTC","","Peregrine","Screwdriver","derby","1483079747","1483130147","1483238294","1483079747","5","60","0","-1","108147","50400","6488820","0","0:0","COMPLETED","60","2147486448Mn","110400","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"],["6071470","6071470","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916662","1483044536","1483271836","1483044426","1","8","0","-1","227300","1127874","1818400","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071484","6071484","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916957","1483044536","1483298941","1483044426","1","8","0","-1","254405","1127579","2035240","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071502","6071502","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481917808","1483085948","1483273485","1483064965","1","8","0","-1","187537","1168140","1500296","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071518","6071518","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918137","1483184680","1483294800","1483184668","1","8","0","-1","110120","1266543","880960","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071523","6071523","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918281","1483184680","1483305127","1483184668","1","8","0","-1","120447","1266399","963576","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071529","6071529","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918529","1483184680","1483292468","1483184668","1","8","0","-1","107788","1266151","862304","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["6071533","6071533","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918630","1483184680","1483309102","1483184660","1","8","0","-1","124422","1266050","995376","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"],["995282","995282","Posidriv","UTC","","Ovenbird","Screwdriver","bavarian-cream","1482865454","1483205093","1483312407","1482865454","1","16","0","-1","107314","339639","1717024","0","0:0","COMPLETED","16","125Gn","345600","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"],["6101316","6101316","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784833","1482973835","1483233058","1482784833","8","96","0","-1","259223","189002","24885408","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101317","6101317","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784877","1482974692","1483233932","1482784877","8","96","0","-1","259240","189815","24887040","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101752","6101752","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811393","1482974692","1483233933","1482811393","8","96","0","-1","259241","163299","24887136","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101753","6101753","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811463","1482974940","1483234228","1482811463","8","96","0","-1","259288","163477","24891648","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101754","6101754","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811513","1482977031","1483236242","1482811513","8","96","0","-1","259211","165518","24884256","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101755","6101755","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811582","1482977031","1483236244","1482811582","8","96","0","-1","259213","165449","24884448","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"],["6101756","6101756","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811640","1482978251","1483237480","1482811640","8","96","0","-1","259229","166611","24885984","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"]]}